@telegraph/tag 0.0.30 → 0.0.31
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/CHANGELOG.md +12 -0
- package/dist/cjs/index.js +44 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.mjs +2393 -517
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/esm/index.mjs
CHANGED
|
@@ -1,445 +1,2321 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Button as
|
|
3
|
-
import { Lucide as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
1
|
+
import { jsx as q, jsxs as Kl } from "react/jsx-runtime";
|
|
2
|
+
import { Button as X } from "@telegraph/button";
|
|
3
|
+
import { Lucide as J, Icon as Zl } from "@telegraph/icon";
|
|
4
|
+
import E from "react";
|
|
5
|
+
import Rl, { clsx as ll } from "clsx";
|
|
6
|
+
import { Tooltip as ls } from "@telegraph/tooltip";
|
|
7
|
+
import { Text as ss } from "@telegraph/typography";
|
|
8
|
+
import { AnimatePresence as ts, motion as ml } from "framer-motion";
|
|
9
|
+
var rl = {}, gs = (s) => {
|
|
10
|
+
var {
|
|
11
|
+
fileScope: l,
|
|
12
|
+
css: t
|
|
13
|
+
} = s, g = l.packageName ? [l.packageName, l.filePath].join("/") : l.filePath, h = rl[g];
|
|
14
|
+
if (!h) {
|
|
15
|
+
var p = document.createElement("style");
|
|
16
|
+
l.packageName && p.setAttribute("data-package", l.packageName), p.setAttribute("data-file", l.filePath), p.setAttribute("type", "text/css"), h = rl[g] = p, document.head.appendChild(p);
|
|
17
|
+
}
|
|
18
|
+
h.innerHTML = t;
|
|
19
|
+
};
|
|
20
|
+
function ps(s) {
|
|
21
|
+
var l = s.match(/^var\((.*)\)$/);
|
|
22
|
+
return l ? l[1] : s;
|
|
23
|
+
}
|
|
24
|
+
function hs(s) {
|
|
25
|
+
return s && s.__esModule && Object.prototype.hasOwnProperty.call(s, "default") ? s.default : s;
|
|
26
|
+
}
|
|
27
|
+
/*! https://mths.be/cssesc v3.0.0 by @mathias */
|
|
28
|
+
var zs = {}, es = zs.hasOwnProperty, ns = function(s, l) {
|
|
29
|
+
if (!s)
|
|
30
|
+
return l;
|
|
31
|
+
var t = {};
|
|
32
|
+
for (var g in l)
|
|
33
|
+
t[g] = es.call(s, g) ? s[g] : l[g];
|
|
34
|
+
return t;
|
|
35
|
+
}, os = /[ -,\.\/:-@\[-\^`\{-~]/, as = /[ -,\.\/:-@\[\]\^`\{-~]/, ds = /(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g, ol = function s(l, t) {
|
|
36
|
+
t = ns(t, s.options), t.quotes != "single" && t.quotes != "double" && (t.quotes = "single");
|
|
37
|
+
for (var g = t.quotes == "double" ? '"' : "'", h = t.isIdentifier, p = l.charAt(0), e = "", z = 0, n = l.length; z < n; ) {
|
|
38
|
+
var o = l.charAt(z++), a = o.charCodeAt(), i = void 0;
|
|
39
|
+
if (a < 32 || a > 126) {
|
|
40
|
+
if (a >= 55296 && a <= 56319 && z < n) {
|
|
41
|
+
var u = l.charCodeAt(z++);
|
|
42
|
+
(u & 64512) == 56320 ? a = ((a & 1023) << 10) + (u & 1023) + 65536 : z--;
|
|
43
|
+
}
|
|
44
|
+
i = "\\" + a.toString(16).toUpperCase() + " ";
|
|
45
|
+
} else
|
|
46
|
+
t.escapeEverything ? os.test(o) ? i = "\\" + o : i = "\\" + a.toString(16).toUpperCase() + " " : /[\t\n\f\r\x0B]/.test(o) ? i = "\\" + a.toString(16).toUpperCase() + " " : o == "\\" || !h && (o == '"' && g == o || o == "'" && g == o) || h && as.test(o) ? i = "\\" + o : i = o;
|
|
47
|
+
e += i;
|
|
48
|
+
}
|
|
49
|
+
return h && (/^-[-\d]/.test(e) ? e = "\\-" + e.slice(1) : /\d/.test(p) && (e = "\\3" + p + " " + e.slice(1))), e = e.replace(ds, function(r, m, d) {
|
|
50
|
+
return m && m.length % 2 ? r : (m || "") + d;
|
|
51
|
+
}), !h && t.wrap ? g + e + g : e;
|
|
52
|
+
};
|
|
53
|
+
ol.options = {
|
|
54
|
+
escapeEverything: !1,
|
|
55
|
+
isIdentifier: !1,
|
|
56
|
+
quotes: "single",
|
|
57
|
+
wrap: !1
|
|
58
|
+
};
|
|
59
|
+
ol.version = "3.0.0";
|
|
60
|
+
var is = ol;
|
|
61
|
+
const Sl = /* @__PURE__ */ hs(is);
|
|
62
|
+
class ms {
|
|
63
|
+
constructor(l) {
|
|
64
|
+
const { failure: t, gotoFn: g, output: h } = this._buildTables(l);
|
|
65
|
+
this.gotoFn = g, this.output = h, this.failure = t;
|
|
66
|
+
}
|
|
67
|
+
_buildTables(l) {
|
|
68
|
+
const t = {
|
|
69
|
+
0: {}
|
|
70
|
+
}, g = {};
|
|
71
|
+
let h = 0;
|
|
72
|
+
for (const z of l) {
|
|
73
|
+
let n = 0;
|
|
74
|
+
for (const o of z)
|
|
75
|
+
t[n] && o in t[n] ? n = t[n][o] : (h++, t[n][o] = h, t[h] = {}, n = h, g[h] = []);
|
|
76
|
+
g[n].push(z);
|
|
77
|
+
}
|
|
78
|
+
const p = {}, e = [];
|
|
79
|
+
for (const z in t[0]) {
|
|
80
|
+
const n = t[0][z];
|
|
81
|
+
p[n] = 0, e.push(n);
|
|
82
|
+
}
|
|
83
|
+
for (; e.length > 0; ) {
|
|
84
|
+
const z = e.shift();
|
|
85
|
+
if (z !== void 0)
|
|
86
|
+
for (const n in t[z]) {
|
|
87
|
+
const o = t[z][n];
|
|
88
|
+
e.push(o);
|
|
89
|
+
let a = p[z];
|
|
90
|
+
for (; a > 0 && !(n in t[a]); )
|
|
91
|
+
a = p[a];
|
|
92
|
+
if (n in t[a]) {
|
|
93
|
+
const i = t[a][n];
|
|
94
|
+
p[o] = i, g[o] = [...g[o], ...g[i]];
|
|
95
|
+
} else
|
|
96
|
+
p[o] = 0;
|
|
25
97
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
98
|
+
}
|
|
99
|
+
return {
|
|
100
|
+
gotoFn: t,
|
|
101
|
+
output: g,
|
|
102
|
+
failure: p
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
search(l) {
|
|
106
|
+
let t = 0;
|
|
107
|
+
const g = [];
|
|
108
|
+
for (let h = 0; h < l.length; h++) {
|
|
109
|
+
const p = l[h];
|
|
110
|
+
for (; t > 0 && !(p in this.gotoFn[t]); )
|
|
111
|
+
t = this.failure[t];
|
|
112
|
+
if (p in this.gotoFn[t] && (t = this.gotoFn[t][p], this.output[t].length > 0)) {
|
|
113
|
+
const e = this.output[t];
|
|
114
|
+
g.push([h, e]);
|
|
30
115
|
}
|
|
31
116
|
}
|
|
117
|
+
return g;
|
|
32
118
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
prop: t
|
|
37
|
-
}) => {
|
|
38
|
-
if (!o) return "";
|
|
39
|
-
if (t.valueType === "static")
|
|
40
|
-
return o.toString();
|
|
41
|
-
const e = t.type === "color" ? "" : `-${t.type}`;
|
|
42
|
-
return o === !0 ? `var(--tgph${e}-${t.default})` : `var(--tgph${e}-${o})`;
|
|
43
|
-
}, b = {
|
|
44
|
-
top: 0,
|
|
45
|
-
right: 1,
|
|
46
|
-
bottom: 2,
|
|
47
|
-
left: 3
|
|
48
|
-
}, s = {
|
|
49
|
-
topLeft: 0,
|
|
50
|
-
topRight: 1,
|
|
51
|
-
bottomRight: 2,
|
|
52
|
-
bottomLeft: 3
|
|
53
|
-
}, W = ({
|
|
54
|
-
cssVariables: o,
|
|
55
|
-
value: t,
|
|
56
|
-
prop: e,
|
|
57
|
-
direction: r = "all"
|
|
58
|
-
}) => {
|
|
59
|
-
const n = o[`--tgph-${e.rule}`] || "", l = n ? n.split(" ") : [], i = [
|
|
60
|
-
(l == null ? void 0 : l[0]) || 0,
|
|
61
|
-
(l == null ? void 0 : l[1]) || 0,
|
|
62
|
-
(l == null ? void 0 : l[2]) || 0,
|
|
63
|
-
(l == null ? void 0 : l[3]) || 0
|
|
64
|
-
];
|
|
65
|
-
return r === "all" ? p({ value: t, prop: e }) : (e.ordering === "clockwise" ? (r === "top" && (i[s.topLeft] = p({
|
|
66
|
-
value: t,
|
|
67
|
-
prop: e
|
|
68
|
-
}), i[s.topRight] = p({
|
|
69
|
-
value: t,
|
|
70
|
-
prop: e
|
|
71
|
-
})), r === "right" && (i[s.topRight] = p({
|
|
72
|
-
value: t,
|
|
73
|
-
prop: e
|
|
74
|
-
}), i[s.bottomRight] = p({
|
|
75
|
-
value: t,
|
|
76
|
-
prop: e
|
|
77
|
-
})), r === "bottom" && (i[s.bottomRight] = p({
|
|
78
|
-
value: t,
|
|
79
|
-
prop: e
|
|
80
|
-
}), i[s.bottomLeft] = p({
|
|
81
|
-
value: t,
|
|
82
|
-
prop: e
|
|
83
|
-
})), r === "left" && (i[s.bottomLeft] = p({
|
|
84
|
-
value: t,
|
|
85
|
-
prop: e
|
|
86
|
-
}), i[s.topLeft] = p({
|
|
87
|
-
value: t,
|
|
88
|
-
prop: e
|
|
89
|
-
})), (r === "topLeft" || r === "topRight" || r === "bottomRight" || r === "bottomLeft") && (i[s[r]] = p({
|
|
90
|
-
value: t,
|
|
91
|
-
prop: e
|
|
92
|
-
}))) : (r === "x" && (i[b.left] = p({
|
|
93
|
-
value: t,
|
|
94
|
-
prop: e
|
|
95
|
-
}), i[b.right] = p({
|
|
96
|
-
value: t,
|
|
97
|
-
prop: e
|
|
98
|
-
})), r === "y" && (i[b.top] = p({
|
|
99
|
-
value: t,
|
|
100
|
-
prop: e
|
|
101
|
-
}), i[b.bottom] = p({
|
|
102
|
-
value: t,
|
|
103
|
-
prop: e
|
|
104
|
-
})), (r === "top" || r === "bottom" || r === "left" || r === "right") && (i[b[r]] = p({
|
|
105
|
-
value: t,
|
|
106
|
-
prop: e
|
|
107
|
-
}))), i.join(" "));
|
|
108
|
-
}, T = ({
|
|
109
|
-
prop: o,
|
|
110
|
-
value: t,
|
|
111
|
-
cssVariables: e
|
|
112
|
-
}) => o.direction ? W({
|
|
113
|
-
cssVariables: e,
|
|
114
|
-
prop: o,
|
|
115
|
-
value: t,
|
|
116
|
-
direction: o.direction,
|
|
117
|
-
type: o.type
|
|
118
|
-
}) : p({ value: t, prop: o }), B = ({
|
|
119
|
-
props: o,
|
|
120
|
-
ref: t,
|
|
121
|
-
propsMap: e
|
|
122
|
-
}) => {
|
|
123
|
-
if (!t.current) return;
|
|
124
|
-
const r = {};
|
|
125
|
-
Object.entries(o).forEach(([n, l]) => {
|
|
126
|
-
const i = e[n];
|
|
127
|
-
i && (typeof l == "string" || typeof l == "boolean" ? r[`--tgph-${i.rule}`] = T({
|
|
128
|
-
prop: i,
|
|
129
|
-
key: n,
|
|
130
|
-
value: l,
|
|
131
|
-
cssVariables: r
|
|
132
|
-
}) : H(l) && G(l).forEach((a, u) => {
|
|
133
|
-
a && (r[`--tgph-${i.rule}-${g[u]}`] = T({
|
|
134
|
-
prop: i,
|
|
135
|
-
key: n,
|
|
136
|
-
value: a,
|
|
137
|
-
cssVariables: r
|
|
138
|
-
}));
|
|
139
|
-
})), Object.entries(r).forEach(([a, u]) => {
|
|
140
|
-
t.current && t.current.style.setProperty(a, u);
|
|
141
|
-
});
|
|
142
|
-
});
|
|
143
|
-
}, k = {
|
|
144
|
-
display: {
|
|
145
|
-
rule: "display",
|
|
146
|
-
type: "block-display",
|
|
147
|
-
valueType: "static"
|
|
148
|
-
},
|
|
149
|
-
h: {
|
|
150
|
-
rule: "height",
|
|
151
|
-
type: "spacing"
|
|
152
|
-
},
|
|
153
|
-
w: {
|
|
154
|
-
rule: "width",
|
|
155
|
-
type: "spacing"
|
|
119
|
+
}
|
|
120
|
+
var rs = {
|
|
121
|
+
appendCss: () => {
|
|
156
122
|
},
|
|
157
|
-
|
|
158
|
-
rule: "max-height",
|
|
159
|
-
type: "spacing"
|
|
123
|
+
registerClassName: () => {
|
|
160
124
|
},
|
|
161
|
-
|
|
162
|
-
rule: "max-width",
|
|
163
|
-
type: "spacing"
|
|
125
|
+
onEndFileScope: () => {
|
|
164
126
|
},
|
|
165
|
-
|
|
166
|
-
rule: "padding",
|
|
167
|
-
type: "spacing",
|
|
168
|
-
direction: "all"
|
|
127
|
+
registerComposition: () => {
|
|
169
128
|
},
|
|
170
|
-
|
|
171
|
-
rule: "margin",
|
|
172
|
-
type: "spacing",
|
|
173
|
-
direction: "all"
|
|
129
|
+
markCompositionUsed: () => {
|
|
174
130
|
},
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
rule: "margin",
|
|
232
|
-
type: "spacing",
|
|
233
|
-
direction: "y"
|
|
234
|
-
},
|
|
235
|
-
bg: {
|
|
236
|
-
rule: "background-color",
|
|
237
|
-
type: "color"
|
|
238
|
-
},
|
|
239
|
-
rounded: {
|
|
240
|
-
rule: "border-radius",
|
|
241
|
-
type: "rounded",
|
|
242
|
-
direction: "all"
|
|
243
|
-
},
|
|
244
|
-
roundedTopLeft: {
|
|
245
|
-
rule: "border-radius",
|
|
246
|
-
type: "rounded",
|
|
247
|
-
direction: "topLeft",
|
|
248
|
-
ordering: "clockwise"
|
|
249
|
-
},
|
|
250
|
-
roundedBottomLeft: {
|
|
251
|
-
rule: "border-radius",
|
|
252
|
-
type: "rounded",
|
|
253
|
-
direction: "bottomLeft",
|
|
254
|
-
ordering: "clockwise"
|
|
255
|
-
},
|
|
256
|
-
roundedBottomRight: {
|
|
257
|
-
rule: "border-radius",
|
|
258
|
-
type: "rounded",
|
|
259
|
-
direction: "bottomRight",
|
|
260
|
-
ordering: "clockwise"
|
|
261
|
-
},
|
|
262
|
-
roundedTopRight: {
|
|
263
|
-
rule: "border-radius",
|
|
264
|
-
type: "rounded",
|
|
265
|
-
direction: "topRight",
|
|
266
|
-
ordering: "clockwise"
|
|
267
|
-
},
|
|
268
|
-
roundedTop: {
|
|
269
|
-
rule: "border-radius",
|
|
270
|
-
type: "rounded",
|
|
271
|
-
direction: "top",
|
|
272
|
-
ordering: "clockwise"
|
|
273
|
-
},
|
|
274
|
-
roundedBottom: {
|
|
275
|
-
rule: "border-radius",
|
|
276
|
-
type: "rounded",
|
|
277
|
-
direction: "bottom",
|
|
278
|
-
ordering: "clockwise"
|
|
279
|
-
},
|
|
280
|
-
roundedLeft: {
|
|
281
|
-
rule: "border-radius",
|
|
282
|
-
type: "rounded",
|
|
283
|
-
direction: "left",
|
|
284
|
-
ordering: "clockwise"
|
|
285
|
-
},
|
|
286
|
-
roundedRight: {
|
|
287
|
-
rule: "border-radius",
|
|
288
|
-
type: "rounded",
|
|
289
|
-
direction: "right",
|
|
290
|
-
ordering: "clockwise"
|
|
291
|
-
},
|
|
292
|
-
border: {
|
|
293
|
-
rule: "border-width",
|
|
294
|
-
type: "spacing",
|
|
295
|
-
direction: "all",
|
|
296
|
-
default: "px"
|
|
297
|
-
},
|
|
298
|
-
borderTop: {
|
|
299
|
-
rule: "border-width",
|
|
300
|
-
type: "spacing",
|
|
301
|
-
direction: "top",
|
|
302
|
-
default: "px"
|
|
303
|
-
},
|
|
304
|
-
borderLeft: {
|
|
305
|
-
rule: "border-width",
|
|
306
|
-
type: "spacing",
|
|
307
|
-
direction: "left",
|
|
308
|
-
default: "px"
|
|
309
|
-
},
|
|
310
|
-
borderBottom: {
|
|
311
|
-
rule: "border-width",
|
|
312
|
-
type: "spacing",
|
|
313
|
-
direction: "bottom",
|
|
314
|
-
default: "px"
|
|
315
|
-
},
|
|
316
|
-
borderRight: {
|
|
317
|
-
rule: "border-width",
|
|
318
|
-
type: "spacing",
|
|
319
|
-
direction: "right",
|
|
320
|
-
default: "px"
|
|
321
|
-
},
|
|
322
|
-
borderX: {
|
|
323
|
-
rule: "border-width",
|
|
324
|
-
type: "spacing",
|
|
325
|
-
direction: "x",
|
|
326
|
-
default: "px"
|
|
327
|
-
},
|
|
328
|
-
borderY: {
|
|
329
|
-
rule: "border-width",
|
|
330
|
-
type: "spacing",
|
|
331
|
-
direction: "y",
|
|
332
|
-
default: "px"
|
|
333
|
-
},
|
|
334
|
-
borderColor: {
|
|
335
|
-
rule: "border-color",
|
|
336
|
-
type: "color",
|
|
337
|
-
default: "gray-4"
|
|
338
|
-
},
|
|
339
|
-
borderStyle: {
|
|
340
|
-
rule: "border-style",
|
|
341
|
-
type: "border-style",
|
|
342
|
-
default: "solid"
|
|
343
|
-
},
|
|
344
|
-
shadow: {
|
|
345
|
-
rule: "box-shadow",
|
|
346
|
-
type: "shadow"
|
|
347
|
-
},
|
|
348
|
-
zIndex: {
|
|
349
|
-
rule: "z-index",
|
|
350
|
-
type: "zIndex"
|
|
131
|
+
getIdentOption: () => process.env.NODE_ENV === "production" ? "short" : "debug"
|
|
132
|
+
}, Y = [rs], us = () => {
|
|
133
|
+
if (Y.length < 1)
|
|
134
|
+
throw new Error("No adapter configured");
|
|
135
|
+
return Y[Y.length - 1];
|
|
136
|
+
}, Pl = !1, cs = (s) => {
|
|
137
|
+
Pl || xs(s);
|
|
138
|
+
}, xs = (s) => {
|
|
139
|
+
if (!s)
|
|
140
|
+
throw new Error('No adapter provided when calling "setAdapter"');
|
|
141
|
+
Pl = !0, Y.push(s);
|
|
142
|
+
}, fs = function() {
|
|
143
|
+
return us().markCompositionUsed(...arguments);
|
|
144
|
+
};
|
|
145
|
+
function Tl(s, l) {
|
|
146
|
+
return l || (l = s.slice(0)), Object.freeze(Object.defineProperties(s, {
|
|
147
|
+
raw: {
|
|
148
|
+
value: Object.freeze(l)
|
|
149
|
+
}
|
|
150
|
+
}));
|
|
151
|
+
}
|
|
152
|
+
var C;
|
|
153
|
+
(function(s) {
|
|
154
|
+
s.Attribute = "attribute", s.Pseudo = "pseudo", s.PseudoElement = "pseudo-element", s.Tag = "tag", s.Universal = "universal", s.Adjacent = "adjacent", s.Child = "child", s.Descendant = "descendant", s.Parent = "parent", s.Sibling = "sibling", s.ColumnCombinator = "column-combinator";
|
|
155
|
+
})(C || (C = {}));
|
|
156
|
+
var O;
|
|
157
|
+
(function(s) {
|
|
158
|
+
s.Any = "any", s.Element = "element", s.End = "end", s.Equals = "equals", s.Exists = "exists", s.Hyphen = "hyphen", s.Not = "not", s.Start = "start";
|
|
159
|
+
})(O || (O = {}));
|
|
160
|
+
const ul = /^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/, Cs = /\\([\da-f]{1,6}\s?|(\s)|.)/gi, vs = /* @__PURE__ */ new Map([
|
|
161
|
+
[126, O.Element],
|
|
162
|
+
[94, O.Start],
|
|
163
|
+
[36, O.End],
|
|
164
|
+
[42, O.Any],
|
|
165
|
+
[33, O.Not],
|
|
166
|
+
[124, O.Hyphen]
|
|
167
|
+
]), ys = /* @__PURE__ */ new Set([
|
|
168
|
+
"has",
|
|
169
|
+
"not",
|
|
170
|
+
"matches",
|
|
171
|
+
"is",
|
|
172
|
+
"where",
|
|
173
|
+
"host",
|
|
174
|
+
"host-context"
|
|
175
|
+
]);
|
|
176
|
+
function ks(s) {
|
|
177
|
+
switch (s.type) {
|
|
178
|
+
case C.Adjacent:
|
|
179
|
+
case C.Child:
|
|
180
|
+
case C.Descendant:
|
|
181
|
+
case C.Parent:
|
|
182
|
+
case C.Sibling:
|
|
183
|
+
case C.ColumnCombinator:
|
|
184
|
+
return !0;
|
|
185
|
+
default:
|
|
186
|
+
return !1;
|
|
351
187
|
}
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
return
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
188
|
+
}
|
|
189
|
+
const bs = /* @__PURE__ */ new Set(["contains", "icontains"]);
|
|
190
|
+
function ws(s, l, t) {
|
|
191
|
+
const g = parseInt(l, 16) - 65536;
|
|
192
|
+
return g !== g || t ? l : g < 0 ? (
|
|
193
|
+
// BMP codepoint
|
|
194
|
+
String.fromCharCode(g + 65536)
|
|
195
|
+
) : (
|
|
196
|
+
// Supplemental Plane codepoint (surrogate pair)
|
|
197
|
+
String.fromCharCode(g >> 10 | 55296, g & 1023 | 56320)
|
|
198
|
+
);
|
|
199
|
+
}
|
|
200
|
+
function W(s) {
|
|
201
|
+
return s.replace(Cs, ws);
|
|
202
|
+
}
|
|
203
|
+
function pl(s) {
|
|
204
|
+
return s === 39 || s === 34;
|
|
205
|
+
}
|
|
206
|
+
function cl(s) {
|
|
207
|
+
return s === 32 || s === 9 || s === 10 || s === 12 || s === 13;
|
|
208
|
+
}
|
|
209
|
+
function js(s) {
|
|
210
|
+
const l = [], t = Ll(l, `${s}`, 0);
|
|
211
|
+
if (t < s.length)
|
|
212
|
+
throw new Error(`Unmatched selector: ${s.slice(t)}`);
|
|
213
|
+
return l;
|
|
214
|
+
}
|
|
215
|
+
function Ll(s, l, t) {
|
|
216
|
+
let g = [];
|
|
217
|
+
function h(u) {
|
|
218
|
+
const r = l.slice(t + u).match(ul);
|
|
219
|
+
if (!r)
|
|
220
|
+
throw new Error(`Expected name, found ${l.slice(t)}`);
|
|
221
|
+
const [m] = r;
|
|
222
|
+
return t += u + m.length, W(m);
|
|
223
|
+
}
|
|
224
|
+
function p(u) {
|
|
225
|
+
for (t += u; t < l.length && cl(l.charCodeAt(t)); )
|
|
226
|
+
t++;
|
|
227
|
+
}
|
|
228
|
+
function e() {
|
|
229
|
+
t += 1;
|
|
230
|
+
const u = t;
|
|
231
|
+
let r = 1;
|
|
232
|
+
for (; r > 0 && t < l.length; t++)
|
|
233
|
+
l.charCodeAt(t) === 40 && !z(t) ? r++ : l.charCodeAt(t) === 41 && !z(t) && r--;
|
|
234
|
+
if (r)
|
|
235
|
+
throw new Error("Parenthesis not matched");
|
|
236
|
+
return W(l.slice(u, t - 1));
|
|
237
|
+
}
|
|
238
|
+
function z(u) {
|
|
239
|
+
let r = 0;
|
|
240
|
+
for (; l.charCodeAt(--u) === 92; )
|
|
241
|
+
r++;
|
|
242
|
+
return (r & 1) === 1;
|
|
243
|
+
}
|
|
244
|
+
function n() {
|
|
245
|
+
if (g.length > 0 && ks(g[g.length - 1]))
|
|
246
|
+
throw new Error("Did not expect successive traversals.");
|
|
247
|
+
}
|
|
248
|
+
function o(u) {
|
|
249
|
+
if (g.length > 0 && g[g.length - 1].type === C.Descendant) {
|
|
250
|
+
g[g.length - 1].type = u;
|
|
251
|
+
return;
|
|
252
|
+
}
|
|
253
|
+
n(), g.push({ type: u });
|
|
254
|
+
}
|
|
255
|
+
function a(u, r) {
|
|
256
|
+
g.push({
|
|
257
|
+
type: C.Attribute,
|
|
258
|
+
name: u,
|
|
259
|
+
action: r,
|
|
260
|
+
value: h(1),
|
|
261
|
+
namespace: null,
|
|
262
|
+
ignoreCase: "quirks"
|
|
370
263
|
});
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
264
|
+
}
|
|
265
|
+
function i() {
|
|
266
|
+
if (g.length && g[g.length - 1].type === C.Descendant && g.pop(), g.length === 0)
|
|
267
|
+
throw new Error("Empty sub-selector");
|
|
268
|
+
s.push(g);
|
|
269
|
+
}
|
|
270
|
+
if (p(0), l.length === t)
|
|
271
|
+
return t;
|
|
272
|
+
l: for (; t < l.length; ) {
|
|
273
|
+
const u = l.charCodeAt(t);
|
|
274
|
+
switch (u) {
|
|
275
|
+
case 32:
|
|
276
|
+
case 9:
|
|
277
|
+
case 10:
|
|
278
|
+
case 12:
|
|
279
|
+
case 13: {
|
|
280
|
+
(g.length === 0 || g[0].type !== C.Descendant) && (n(), g.push({ type: C.Descendant })), p(1);
|
|
281
|
+
break;
|
|
282
|
+
}
|
|
283
|
+
case 62: {
|
|
284
|
+
o(C.Child), p(1);
|
|
285
|
+
break;
|
|
286
|
+
}
|
|
287
|
+
case 60: {
|
|
288
|
+
o(C.Parent), p(1);
|
|
289
|
+
break;
|
|
290
|
+
}
|
|
291
|
+
case 126: {
|
|
292
|
+
o(C.Sibling), p(1);
|
|
293
|
+
break;
|
|
294
|
+
}
|
|
295
|
+
case 43: {
|
|
296
|
+
o(C.Adjacent), p(1);
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
case 46: {
|
|
300
|
+
a("class", O.Element);
|
|
301
|
+
break;
|
|
302
|
+
}
|
|
303
|
+
case 35: {
|
|
304
|
+
a("id", O.Equals);
|
|
305
|
+
break;
|
|
306
|
+
}
|
|
307
|
+
case 91: {
|
|
308
|
+
p(1);
|
|
309
|
+
let r, m = null;
|
|
310
|
+
l.charCodeAt(t) === 124 ? r = h(1) : l.startsWith("*|", t) ? (m = "*", r = h(2)) : (r = h(0), l.charCodeAt(t) === 124 && l.charCodeAt(t + 1) !== 61 && (m = r, r = h(1))), p(0);
|
|
311
|
+
let d = O.Exists;
|
|
312
|
+
const b = vs.get(l.charCodeAt(t));
|
|
313
|
+
if (b) {
|
|
314
|
+
if (d = b, l.charCodeAt(t + 1) !== 61)
|
|
315
|
+
throw new Error("Expected `=`");
|
|
316
|
+
p(2);
|
|
317
|
+
} else l.charCodeAt(t) === 61 && (d = O.Equals, p(1));
|
|
318
|
+
let v = "", y = null;
|
|
319
|
+
if (d !== "exists") {
|
|
320
|
+
if (pl(l.charCodeAt(t))) {
|
|
321
|
+
const c = l.charCodeAt(t);
|
|
322
|
+
let w = t + 1;
|
|
323
|
+
for (; w < l.length && (l.charCodeAt(w) !== c || z(w)); )
|
|
324
|
+
w += 1;
|
|
325
|
+
if (l.charCodeAt(w) !== c)
|
|
326
|
+
throw new Error("Attribute value didn't end");
|
|
327
|
+
v = W(l.slice(t + 1, w)), t = w + 1;
|
|
328
|
+
} else {
|
|
329
|
+
const c = t;
|
|
330
|
+
for (; t < l.length && (!cl(l.charCodeAt(t)) && l.charCodeAt(t) !== 93 || z(t)); )
|
|
331
|
+
t += 1;
|
|
332
|
+
v = W(l.slice(c, t));
|
|
333
|
+
}
|
|
334
|
+
p(0);
|
|
335
|
+
const x = l.charCodeAt(t) | 32;
|
|
336
|
+
x === 115 ? (y = !1, p(1)) : x === 105 && (y = !0, p(1));
|
|
337
|
+
}
|
|
338
|
+
if (l.charCodeAt(t) !== 93)
|
|
339
|
+
throw new Error("Attribute selector didn't terminate");
|
|
340
|
+
t += 1;
|
|
341
|
+
const f = {
|
|
342
|
+
type: C.Attribute,
|
|
343
|
+
name: r,
|
|
344
|
+
action: d,
|
|
345
|
+
value: v,
|
|
346
|
+
namespace: m,
|
|
347
|
+
ignoreCase: y
|
|
348
|
+
};
|
|
349
|
+
g.push(f);
|
|
350
|
+
break;
|
|
351
|
+
}
|
|
352
|
+
case 58: {
|
|
353
|
+
if (l.charCodeAt(t + 1) === 58) {
|
|
354
|
+
g.push({
|
|
355
|
+
type: C.PseudoElement,
|
|
356
|
+
name: h(2).toLowerCase(),
|
|
357
|
+
data: l.charCodeAt(t) === 40 ? e() : null
|
|
358
|
+
});
|
|
359
|
+
continue;
|
|
360
|
+
}
|
|
361
|
+
const r = h(1).toLowerCase();
|
|
362
|
+
let m = null;
|
|
363
|
+
if (l.charCodeAt(t) === 40)
|
|
364
|
+
if (ys.has(r)) {
|
|
365
|
+
if (pl(l.charCodeAt(t + 1)))
|
|
366
|
+
throw new Error(`Pseudo-selector ${r} cannot be quoted`);
|
|
367
|
+
if (m = [], t = Ll(m, l, t + 1), l.charCodeAt(t) !== 41)
|
|
368
|
+
throw new Error(`Missing closing parenthesis in :${r} (${l})`);
|
|
369
|
+
t += 1;
|
|
370
|
+
} else {
|
|
371
|
+
if (m = e(), bs.has(r)) {
|
|
372
|
+
const d = m.charCodeAt(0);
|
|
373
|
+
d === m.charCodeAt(m.length - 1) && pl(d) && (m = m.slice(1, -1));
|
|
374
|
+
}
|
|
375
|
+
m = W(m);
|
|
376
|
+
}
|
|
377
|
+
g.push({ type: C.Pseudo, name: r, data: m });
|
|
378
|
+
break;
|
|
379
|
+
}
|
|
380
|
+
case 44: {
|
|
381
|
+
i(), g = [], p(1);
|
|
382
|
+
break;
|
|
383
|
+
}
|
|
384
|
+
default: {
|
|
385
|
+
if (l.startsWith("/*", t)) {
|
|
386
|
+
const d = l.indexOf("*/", t + 2);
|
|
387
|
+
if (d < 0)
|
|
388
|
+
throw new Error("Comment was not terminated");
|
|
389
|
+
t = d + 2, g.length === 0 && p(0);
|
|
390
|
+
break;
|
|
391
|
+
}
|
|
392
|
+
let r = null, m;
|
|
393
|
+
if (u === 42)
|
|
394
|
+
t += 1, m = "*";
|
|
395
|
+
else if (u === 124) {
|
|
396
|
+
if (m = "", l.charCodeAt(t + 1) === 124) {
|
|
397
|
+
o(C.ColumnCombinator), p(2);
|
|
398
|
+
break;
|
|
399
|
+
}
|
|
400
|
+
} else if (ul.test(l.slice(t)))
|
|
401
|
+
m = h(0);
|
|
402
|
+
else
|
|
403
|
+
break l;
|
|
404
|
+
l.charCodeAt(t) === 124 && l.charCodeAt(t + 1) !== 124 && (r = m, l.charCodeAt(t + 1) === 42 ? (m = "*", t += 2) : m = h(1)), g.push(m === "*" ? { type: C.Universal, namespace: r } : { type: C.Tag, name: m, namespace: r });
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
407
|
+
}
|
|
408
|
+
return i(), t;
|
|
409
|
+
}
|
|
410
|
+
function xl(s, l) {
|
|
411
|
+
var t = Object.keys(s);
|
|
412
|
+
if (Object.getOwnPropertySymbols) {
|
|
413
|
+
var g = Object.getOwnPropertySymbols(s);
|
|
414
|
+
l && (g = g.filter(function(h) {
|
|
415
|
+
return Object.getOwnPropertyDescriptor(s, h).enumerable;
|
|
416
|
+
})), t.push.apply(t, g);
|
|
417
|
+
}
|
|
418
|
+
return t;
|
|
419
|
+
}
|
|
420
|
+
function fl(s) {
|
|
421
|
+
for (var l = 1; l < arguments.length; l++) {
|
|
422
|
+
var t = arguments[l] != null ? arguments[l] : {};
|
|
423
|
+
l % 2 ? xl(Object(t), !0).forEach(function(g) {
|
|
424
|
+
qs(s, g, t[g]);
|
|
425
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(s, Object.getOwnPropertyDescriptors(t)) : xl(Object(t)).forEach(function(g) {
|
|
426
|
+
Object.defineProperty(s, g, Object.getOwnPropertyDescriptor(t, g));
|
|
427
|
+
});
|
|
428
|
+
}
|
|
429
|
+
return s;
|
|
430
|
+
}
|
|
431
|
+
function qs(s, l, t) {
|
|
432
|
+
return l = As(l), l in s ? Object.defineProperty(s, l, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : s[l] = t, s;
|
|
433
|
+
}
|
|
434
|
+
function As(s) {
|
|
435
|
+
var l = Os(s, "string");
|
|
436
|
+
return typeof l == "symbol" ? l : String(l);
|
|
437
|
+
}
|
|
438
|
+
function Os(s, l) {
|
|
439
|
+
if (typeof s != "object" || s === null) return s;
|
|
440
|
+
var t = s[Symbol.toPrimitive];
|
|
441
|
+
if (t !== void 0) {
|
|
442
|
+
var g = t.call(s, l || "default");
|
|
443
|
+
if (typeof g != "object") return g;
|
|
444
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
445
|
+
}
|
|
446
|
+
return (l === "string" ? String : Number)(s);
|
|
447
|
+
}
|
|
448
|
+
const Il = Nl({});
|
|
449
|
+
function Nl(s) {
|
|
450
|
+
return l.withOptions = (t) => Nl(fl(fl({}, s), t)), l;
|
|
451
|
+
function l(t, ...g) {
|
|
452
|
+
const h = typeof t == "string" ? [t] : t.raw, {
|
|
453
|
+
escapeSpecialCharacters: p = Array.isArray(t)
|
|
454
|
+
} = s;
|
|
455
|
+
let e = "";
|
|
456
|
+
for (let o = 0; o < h.length; o++) {
|
|
457
|
+
let a = h[o];
|
|
458
|
+
p && (a = a.replace(/\\\n[ \t]*/g, "").replace(/\\`/g, "`").replace(/\\\$/g, "$").replace(/\\\{/g, "{")), e += a, o < g.length && (e += g[o]);
|
|
459
|
+
}
|
|
460
|
+
const z = e.split(`
|
|
461
|
+
`);
|
|
462
|
+
let n = null;
|
|
463
|
+
for (const o of z) {
|
|
464
|
+
const a = o.match(/^(\s+)\S+/);
|
|
465
|
+
if (a) {
|
|
466
|
+
const i = a[1].length;
|
|
467
|
+
n ? n = Math.min(n, i) : n = i;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
if (n !== null) {
|
|
471
|
+
const o = n;
|
|
472
|
+
e = z.map((a) => a[0] === " " || a[0] === " " ? a.slice(o) : a).join(`
|
|
473
|
+
`);
|
|
474
|
+
}
|
|
475
|
+
return e = e.trim(), p && (e = e.replace(/\\n/g, `
|
|
476
|
+
`)), e;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
/*! @license MediaQueryParser - MIT License - Tom Golden (github@tbjgolden.com) */
|
|
480
|
+
/*! *****************************************************************************
|
|
481
|
+
Copyright (c) Microsoft Corporation.
|
|
482
|
+
|
|
483
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
484
|
+
purpose with or without fee is hereby granted.
|
|
485
|
+
|
|
486
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
487
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
488
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
489
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
490
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
491
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
492
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
493
|
+
***************************************************************************** */
|
|
494
|
+
var K = function() {
|
|
495
|
+
return K = Object.assign || function(s) {
|
|
496
|
+
for (var l, t = 1, g = arguments.length; t < g; t++) {
|
|
497
|
+
l = arguments[t];
|
|
498
|
+
for (var h in l) Object.prototype.hasOwnProperty.call(l, h) && (s[h] = l[h]);
|
|
499
|
+
}
|
|
500
|
+
return s;
|
|
501
|
+
}, K.apply(this, arguments);
|
|
502
|
+
};
|
|
503
|
+
function nl(s, l) {
|
|
504
|
+
var t = {};
|
|
505
|
+
for (var g in s) Object.prototype.hasOwnProperty.call(s, g) && l.indexOf(g) < 0 && (t[g] = s[g]);
|
|
506
|
+
if (s != null && typeof Object.getOwnPropertySymbols == "function")
|
|
507
|
+
for (var h = 0, g = Object.getOwnPropertySymbols(s); h < g.length; h++)
|
|
508
|
+
l.indexOf(g[h]) < 0 && Object.prototype.propertyIsEnumerable.call(s, g[h]) && (t[g[h]] = s[g[h]]);
|
|
509
|
+
return t;
|
|
510
|
+
}
|
|
511
|
+
function Es(s) {
|
|
512
|
+
var l = typeof Symbol == "function" && Symbol.iterator, t = l && s[l], g = 0;
|
|
513
|
+
if (t) return t.call(s);
|
|
514
|
+
if (s && typeof s.length == "number") return {
|
|
515
|
+
next: function() {
|
|
516
|
+
return s && g >= s.length && (s = void 0), { value: s && s[g++], done: !s };
|
|
517
|
+
}
|
|
518
|
+
};
|
|
519
|
+
throw new TypeError(l ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
520
|
+
}
|
|
521
|
+
function k(s, l) {
|
|
522
|
+
var t = typeof Symbol == "function" && s[Symbol.iterator];
|
|
523
|
+
if (!t) return s;
|
|
524
|
+
var g = t.call(s), h, p = [], e;
|
|
525
|
+
try {
|
|
526
|
+
for (; (l === void 0 || l-- > 0) && !(h = g.next()).done; ) p.push(h.value);
|
|
527
|
+
} catch (z) {
|
|
528
|
+
e = { error: z };
|
|
529
|
+
} finally {
|
|
530
|
+
try {
|
|
531
|
+
h && !h.done && (t = g.return) && t.call(g);
|
|
532
|
+
} finally {
|
|
533
|
+
if (e) throw e.error;
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
return p;
|
|
537
|
+
}
|
|
538
|
+
var Rs = /(\u000D|\u000C|\u000D\u000A)/g, Ss = /[\u0000\uD800-\uDFFF]/g, Ps = /(\/\*)[\s\S]*?(\*\/)/g, Ts = function(s, l) {
|
|
539
|
+
l === void 0 && (l = 0), s = s.replace(Rs, `
|
|
540
|
+
`).replace(Ss, "�"), s = s.replace(Ps, "");
|
|
541
|
+
for (var t = []; l < s.length; l += 1) {
|
|
542
|
+
var g = s.charCodeAt(l);
|
|
543
|
+
if (g === 9 || g === 32 || g === 10) {
|
|
544
|
+
for (var h = s.charCodeAt(++l); h === 9 || h === 32 || h === 10; )
|
|
545
|
+
h = s.charCodeAt(++l);
|
|
546
|
+
l -= 1, t.push({
|
|
547
|
+
type: "<whitespace-token>"
|
|
548
|
+
});
|
|
549
|
+
} else if (g === 34) {
|
|
550
|
+
var p = Cl(s, l);
|
|
551
|
+
if (p === null)
|
|
552
|
+
return null;
|
|
553
|
+
var e = k(p, 2), z = e[0], n = e[1];
|
|
554
|
+
t.push({
|
|
555
|
+
type: "<string-token>",
|
|
556
|
+
value: n
|
|
557
|
+
}), l = z;
|
|
558
|
+
} else if (g === 35) {
|
|
559
|
+
if (l + 1 < s.length) {
|
|
560
|
+
var o = s.charCodeAt(l + 1);
|
|
561
|
+
if (o === 95 || o >= 65 && o <= 90 || o >= 97 && o <= 122 || o >= 128 || o >= 48 && o <= 57 || o === 92 && l + 2 < s.length && s.charCodeAt(l + 2) !== 10) {
|
|
562
|
+
var a = Bl(s, l + 1) ? "id" : "unrestricted", p = Is(s, l + 1);
|
|
563
|
+
if (p !== null) {
|
|
564
|
+
var i = k(p, 2), z = i[0], n = i[1];
|
|
565
|
+
t.push({
|
|
566
|
+
type: "<hash-token>",
|
|
567
|
+
value: n.toLowerCase(),
|
|
568
|
+
flag: a
|
|
569
|
+
}), l = z;
|
|
570
|
+
continue;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
t.push({
|
|
575
|
+
type: "<delim-token>",
|
|
576
|
+
value: g
|
|
577
|
+
});
|
|
578
|
+
} else if (g === 39) {
|
|
579
|
+
var p = Cl(s, l);
|
|
580
|
+
if (p === null)
|
|
581
|
+
return null;
|
|
582
|
+
var u = k(p, 2), z = u[0], n = u[1];
|
|
583
|
+
t.push({
|
|
584
|
+
type: "<string-token>",
|
|
585
|
+
value: n
|
|
586
|
+
}), l = z;
|
|
587
|
+
} else if (g === 40)
|
|
588
|
+
t.push({
|
|
589
|
+
type: "<(-token>"
|
|
590
|
+
});
|
|
591
|
+
else if (g === 41)
|
|
592
|
+
t.push({
|
|
593
|
+
type: "<)-token>"
|
|
594
|
+
});
|
|
595
|
+
else if (g === 43) {
|
|
596
|
+
var r = Q(s, l);
|
|
597
|
+
if (r === null)
|
|
598
|
+
t.push({
|
|
599
|
+
type: "<delim-token>",
|
|
600
|
+
value: g
|
|
601
|
+
});
|
|
602
|
+
else {
|
|
603
|
+
var m = k(r, 2), z = m[0], d = m[1];
|
|
604
|
+
d[0] === "<dimension-token>" ? t.push({
|
|
605
|
+
type: "<dimension-token>",
|
|
606
|
+
value: d[1],
|
|
607
|
+
unit: d[2].toLowerCase(),
|
|
608
|
+
flag: "number"
|
|
609
|
+
}) : d[0] === "<number-token>" ? t.push({
|
|
610
|
+
type: d[0],
|
|
611
|
+
value: d[1],
|
|
612
|
+
flag: d[2]
|
|
613
|
+
}) : t.push({
|
|
614
|
+
type: d[0],
|
|
615
|
+
value: d[1],
|
|
616
|
+
flag: "number"
|
|
617
|
+
}), l = z;
|
|
618
|
+
}
|
|
619
|
+
} else if (g === 44)
|
|
620
|
+
t.push({
|
|
621
|
+
type: "<comma-token>"
|
|
622
|
+
});
|
|
623
|
+
else if (g === 45) {
|
|
624
|
+
var b = Q(s, l);
|
|
625
|
+
if (b !== null) {
|
|
626
|
+
var v = k(b, 2), z = v[0], d = v[1];
|
|
627
|
+
d[0] === "<dimension-token>" ? t.push({
|
|
628
|
+
type: "<dimension-token>",
|
|
629
|
+
value: d[1],
|
|
630
|
+
unit: d[2].toLowerCase(),
|
|
631
|
+
flag: "number"
|
|
632
|
+
}) : d[0] === "<number-token>" ? t.push({
|
|
633
|
+
type: d[0],
|
|
634
|
+
value: d[1],
|
|
635
|
+
flag: d[2]
|
|
636
|
+
}) : t.push({
|
|
637
|
+
type: d[0],
|
|
638
|
+
value: d[1],
|
|
639
|
+
flag: "number"
|
|
640
|
+
}), l = z;
|
|
641
|
+
continue;
|
|
642
|
+
}
|
|
643
|
+
if (l + 2 < s.length) {
|
|
644
|
+
var o = s.charCodeAt(l + 1), y = s.charCodeAt(l + 2);
|
|
645
|
+
if (o === 45 && y === 62) {
|
|
646
|
+
t.push({
|
|
647
|
+
type: "<CDC-token>"
|
|
648
|
+
}), l += 2;
|
|
649
|
+
continue;
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
var p = vl(s, l);
|
|
653
|
+
if (p !== null) {
|
|
654
|
+
var f = k(p, 3), z = f[0], n = f[1], x = f[2];
|
|
655
|
+
t.push({
|
|
656
|
+
type: x,
|
|
657
|
+
value: n
|
|
658
|
+
}), l = z;
|
|
659
|
+
continue;
|
|
660
|
+
}
|
|
661
|
+
t.push({
|
|
662
|
+
type: "<delim-token>",
|
|
663
|
+
value: g
|
|
664
|
+
});
|
|
665
|
+
} else if (g === 46) {
|
|
666
|
+
var b = Q(s, l);
|
|
667
|
+
if (b === null)
|
|
668
|
+
t.push({
|
|
669
|
+
type: "<delim-token>",
|
|
670
|
+
value: g
|
|
671
|
+
});
|
|
672
|
+
else {
|
|
673
|
+
var c = k(b, 2), z = c[0], d = c[1];
|
|
674
|
+
d[0] === "<dimension-token>" ? t.push({
|
|
675
|
+
type: "<dimension-token>",
|
|
676
|
+
value: d[1],
|
|
677
|
+
unit: d[2].toLowerCase(),
|
|
678
|
+
flag: "number"
|
|
679
|
+
}) : d[0] === "<number-token>" ? t.push({
|
|
680
|
+
type: d[0],
|
|
681
|
+
value: d[1],
|
|
682
|
+
flag: d[2]
|
|
683
|
+
}) : t.push({
|
|
684
|
+
type: d[0],
|
|
685
|
+
value: d[1],
|
|
686
|
+
flag: "number"
|
|
687
|
+
}), l = z;
|
|
688
|
+
continue;
|
|
689
|
+
}
|
|
690
|
+
} else if (g === 58)
|
|
691
|
+
t.push({
|
|
692
|
+
type: "<colon-token>"
|
|
693
|
+
});
|
|
694
|
+
else if (g === 59)
|
|
695
|
+
t.push({
|
|
696
|
+
type: "<semicolon-token>"
|
|
697
|
+
});
|
|
698
|
+
else if (g === 60) {
|
|
699
|
+
if (l + 3 < s.length) {
|
|
700
|
+
var o = s.charCodeAt(l + 1), y = s.charCodeAt(l + 2), w = s.charCodeAt(l + 3);
|
|
701
|
+
if (o === 33 && y === 45 && w === 45) {
|
|
702
|
+
t.push({
|
|
703
|
+
type: "<CDO-token>"
|
|
704
|
+
}), l += 3;
|
|
705
|
+
continue;
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
t.push({
|
|
709
|
+
type: "<delim-token>",
|
|
710
|
+
value: g
|
|
711
|
+
});
|
|
712
|
+
} else if (g === 64) {
|
|
713
|
+
var p = al(s, l + 1);
|
|
714
|
+
if (p !== null) {
|
|
715
|
+
var j = k(p, 2), z = j[0], n = j[1];
|
|
716
|
+
t.push({
|
|
717
|
+
type: "<at-keyword-token>",
|
|
718
|
+
value: n.toLowerCase()
|
|
719
|
+
}), l = z;
|
|
720
|
+
continue;
|
|
721
|
+
}
|
|
722
|
+
t.push({
|
|
723
|
+
type: "<delim-token>",
|
|
724
|
+
value: g
|
|
725
|
+
});
|
|
726
|
+
} else if (g === 91)
|
|
727
|
+
t.push({
|
|
728
|
+
type: "<[-token>"
|
|
729
|
+
});
|
|
730
|
+
else if (g === 92) {
|
|
731
|
+
var p = V(s, l);
|
|
732
|
+
if (p === null)
|
|
733
|
+
return null;
|
|
734
|
+
var R = k(p, 2), z = R[0], n = R[1];
|
|
735
|
+
s = s.slice(0, l) + n + s.slice(z + 1), l -= 1;
|
|
736
|
+
} else if (g === 93)
|
|
737
|
+
t.push({
|
|
738
|
+
type: "<]-token>"
|
|
739
|
+
});
|
|
740
|
+
else if (g === 123)
|
|
741
|
+
t.push({
|
|
742
|
+
type: "<{-token>"
|
|
743
|
+
});
|
|
744
|
+
else if (g === 125)
|
|
745
|
+
t.push({
|
|
746
|
+
type: "<}-token>"
|
|
747
|
+
});
|
|
748
|
+
else if (g >= 48 && g <= 57) {
|
|
749
|
+
var p = Q(s, l), L = k(p, 2), z = L[0], d = L[1];
|
|
750
|
+
d[0] === "<dimension-token>" ? t.push({
|
|
751
|
+
type: "<dimension-token>",
|
|
752
|
+
value: d[1],
|
|
753
|
+
unit: d[2].toLowerCase(),
|
|
754
|
+
flag: "number"
|
|
755
|
+
}) : d[0] === "<number-token>" ? t.push({
|
|
756
|
+
type: d[0],
|
|
757
|
+
value: d[1],
|
|
758
|
+
flag: d[2]
|
|
759
|
+
}) : t.push({
|
|
760
|
+
type: d[0],
|
|
761
|
+
value: d[1],
|
|
762
|
+
flag: "number"
|
|
763
|
+
}), l = z;
|
|
764
|
+
} else if (g === 95 || g >= 65 && g <= 90 || g >= 97 && g <= 122 || g >= 128) {
|
|
765
|
+
var p = vl(s, l);
|
|
766
|
+
if (p === null)
|
|
767
|
+
return null;
|
|
768
|
+
var S = k(p, 3), z = S[0], n = S[1], x = S[2];
|
|
769
|
+
t.push({
|
|
770
|
+
type: x,
|
|
771
|
+
value: n
|
|
772
|
+
}), l = z;
|
|
773
|
+
} else
|
|
774
|
+
t.push({
|
|
775
|
+
type: "<delim-token>",
|
|
776
|
+
value: g
|
|
777
|
+
});
|
|
778
|
+
}
|
|
779
|
+
return t.push({
|
|
780
|
+
type: "<EOF-token>"
|
|
781
|
+
}), t;
|
|
782
|
+
}, Cl = function(s, l) {
|
|
783
|
+
if (s.length <= l + 1) return null;
|
|
784
|
+
for (var t = s.charCodeAt(l), g = [], h = l + 1; h < s.length; h += 1) {
|
|
785
|
+
var p = s.charCodeAt(h);
|
|
786
|
+
if (p === t)
|
|
787
|
+
return [h, String.fromCharCode.apply(null, g)];
|
|
788
|
+
if (p === 92) {
|
|
789
|
+
var e = V(s, h);
|
|
790
|
+
if (e === null) return null;
|
|
791
|
+
var z = k(e, 2), n = z[0], o = z[1];
|
|
792
|
+
g.push(o), h = n;
|
|
793
|
+
} else {
|
|
794
|
+
if (p === 10)
|
|
795
|
+
return null;
|
|
796
|
+
g.push(p);
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
return null;
|
|
800
|
+
}, Bl = function(s, l) {
|
|
801
|
+
if (s.length <= l) return !1;
|
|
802
|
+
var t = s.charCodeAt(l);
|
|
803
|
+
if (t === 45) {
|
|
804
|
+
if (s.length <= l + 1) return !1;
|
|
805
|
+
var g = s.charCodeAt(l + 1);
|
|
806
|
+
if (g === 45 || g === 95 || g >= 65 && g <= 90 || g >= 97 && g <= 122 || g >= 128)
|
|
807
|
+
return !0;
|
|
808
|
+
if (g === 92) {
|
|
809
|
+
if (s.length <= l + 2) return !1;
|
|
810
|
+
var h = s.charCodeAt(l + 2);
|
|
811
|
+
return h !== 10;
|
|
812
|
+
} else
|
|
813
|
+
return !1;
|
|
814
|
+
} else {
|
|
815
|
+
if (t === 95 || t >= 65 && t <= 90 || t >= 97 && t <= 122 || t >= 128)
|
|
816
|
+
return !0;
|
|
817
|
+
if (t === 92) {
|
|
818
|
+
if (s.length <= l + 1) return !1;
|
|
819
|
+
var g = s.charCodeAt(l + 1);
|
|
820
|
+
return g !== 10;
|
|
821
|
+
} else
|
|
822
|
+
return !1;
|
|
823
|
+
}
|
|
824
|
+
}, V = function(s, l) {
|
|
825
|
+
if (s.length <= l + 1 || s.charCodeAt(l) !== 92) return null;
|
|
826
|
+
var t = s.charCodeAt(l + 1);
|
|
827
|
+
if (t === 10)
|
|
828
|
+
return null;
|
|
829
|
+
if (t >= 48 && t <= 57 || t >= 65 && t <= 70 || t >= 97 && t <= 102) {
|
|
830
|
+
for (var g = [t], h = Math.min(l + 7, s.length), p = l + 2; p < h; p += 1) {
|
|
831
|
+
var e = s.charCodeAt(p);
|
|
832
|
+
if (e >= 48 && e <= 57 || e >= 65 && e <= 70 || e >= 97 && e <= 102)
|
|
833
|
+
g.push(e);
|
|
834
|
+
else
|
|
835
|
+
break;
|
|
836
|
+
}
|
|
837
|
+
if (p < s.length) {
|
|
838
|
+
var z = s.charCodeAt(p);
|
|
839
|
+
(z === 9 || z === 32 || z === 10) && (p += 1);
|
|
840
|
+
}
|
|
841
|
+
return [p - 1, parseInt(String.fromCharCode.apply(null, g), 16)];
|
|
842
|
+
} else
|
|
843
|
+
return [l + 1, t];
|
|
844
|
+
}, Q = function(s, l) {
|
|
845
|
+
var t = Ls(s, l);
|
|
846
|
+
if (t === null) return null;
|
|
847
|
+
var g = k(t, 3), h = g[0], p = g[1], e = g[2], z = al(s, h + 1);
|
|
848
|
+
if (z !== null) {
|
|
849
|
+
var n = k(z, 2), o = n[0], a = n[1];
|
|
850
|
+
return [o, ["<dimension-token>", p, a]];
|
|
851
|
+
}
|
|
852
|
+
return h + 1 < s.length && s.charCodeAt(h + 1) === 37 ? [h + 1, ["<percentage-token>", p]] : [h, ["<number-token>", p, e]];
|
|
853
|
+
}, Ls = function(s, l) {
|
|
854
|
+
if (s.length <= l) return null;
|
|
855
|
+
var t = "integer", g = [], h = s.charCodeAt(l);
|
|
856
|
+
for ((h === 43 || h === 45) && (l += 1, h === 45 && g.push(45)); l < s.length; ) {
|
|
857
|
+
var p = s.charCodeAt(l);
|
|
858
|
+
if (p >= 48 && p <= 57)
|
|
859
|
+
g.push(p), l += 1;
|
|
860
|
+
else
|
|
861
|
+
break;
|
|
862
|
+
}
|
|
863
|
+
if (l + 1 < s.length) {
|
|
864
|
+
var e = s.charCodeAt(l), z = s.charCodeAt(l + 1);
|
|
865
|
+
if (e === 46 && z >= 48 && z <= 57)
|
|
866
|
+
for (g.push(e, z), t = "number", l += 2; l < s.length; ) {
|
|
867
|
+
var p = s.charCodeAt(l);
|
|
868
|
+
if (p >= 48 && p <= 57)
|
|
869
|
+
g.push(p), l += 1;
|
|
870
|
+
else
|
|
871
|
+
break;
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
if (l + 1 < s.length) {
|
|
875
|
+
var e = s.charCodeAt(l), z = s.charCodeAt(l + 1), n = s.charCodeAt(l + 2);
|
|
876
|
+
if (e === 69 || e === 101) {
|
|
877
|
+
var o = z >= 48 && z <= 57;
|
|
878
|
+
if (o || (z === 43 || z === 45) && n >= 48 && n <= 57)
|
|
879
|
+
for (t = "number", o ? (g.push(69, z), l += 2) : z === 45 ? (g.push(69, 45, n), l += 3) : (g.push(69, n), l += 3); l < s.length; ) {
|
|
880
|
+
var p = s.charCodeAt(l);
|
|
881
|
+
if (p >= 48 && p <= 57)
|
|
882
|
+
g.push(p), l += 1;
|
|
883
|
+
else
|
|
884
|
+
break;
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
var a = String.fromCharCode.apply(null, g), i = t === "number" ? parseFloat(a) : parseInt(a);
|
|
889
|
+
return i === -0 && (i = 0), Number.isNaN(i) ? null : [l - 1, i, t];
|
|
890
|
+
}, Is = function(s, l) {
|
|
891
|
+
if (s.length <= l)
|
|
892
|
+
return null;
|
|
893
|
+
for (var t = [], g = s.charCodeAt(l); l < s.length; g = s.charCodeAt(++l)) {
|
|
894
|
+
if (g === 45 || g === 95 || g >= 65 && g <= 90 || g >= 97 && g <= 122 || g >= 128 || g >= 48 && g <= 57) {
|
|
895
|
+
t.push(g);
|
|
896
|
+
continue;
|
|
897
|
+
} else {
|
|
898
|
+
var h = V(s, l);
|
|
899
|
+
if (h !== null) {
|
|
900
|
+
var p = k(h, 2), e = p[0], z = p[1];
|
|
901
|
+
t.push(z), l = e;
|
|
902
|
+
continue;
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
break;
|
|
906
|
+
}
|
|
907
|
+
return l === 0 ? null : [l - 1, String.fromCharCode.apply(null, t)];
|
|
908
|
+
}, al = function(s, l) {
|
|
909
|
+
if (s.length <= l || !Bl(s, l))
|
|
910
|
+
return null;
|
|
911
|
+
for (var t = [], g = s.charCodeAt(l); l < s.length; g = s.charCodeAt(++l)) {
|
|
912
|
+
if (g === 45 || g === 95 || g >= 65 && g <= 90 || g >= 97 && g <= 122 || g >= 128 || g >= 48 && g <= 57) {
|
|
913
|
+
t.push(g);
|
|
914
|
+
continue;
|
|
915
|
+
} else {
|
|
916
|
+
var h = V(s, l);
|
|
917
|
+
if (h !== null) {
|
|
918
|
+
var p = k(h, 2), e = p[0], z = p[1];
|
|
919
|
+
t.push(z), l = e;
|
|
920
|
+
continue;
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
break;
|
|
924
|
+
}
|
|
925
|
+
return [l - 1, String.fromCharCode.apply(null, t)];
|
|
926
|
+
}, Ns = function(s, l) {
|
|
927
|
+
for (var t = s.charCodeAt(l); t === 9 || t === 32 || t === 10; )
|
|
928
|
+
t = s.charCodeAt(++l);
|
|
929
|
+
for (var g = [], h = !1; l < s.length; ) {
|
|
930
|
+
if (t === 41)
|
|
931
|
+
return [l, String.fromCharCode.apply(null, g)];
|
|
932
|
+
if (t === 34 || t === 39 || t === 40)
|
|
933
|
+
return null;
|
|
934
|
+
if (t === 9 || t === 32 || t === 10)
|
|
935
|
+
!h && g.length !== 0 && (h = !0);
|
|
936
|
+
else if (t === 92) {
|
|
937
|
+
var p = V(s, l);
|
|
938
|
+
if (p === null || h) return null;
|
|
939
|
+
var e = k(p, 2), z = e[0], n = e[1];
|
|
940
|
+
g.push(n), l = z;
|
|
941
|
+
} else {
|
|
942
|
+
if (h) return null;
|
|
943
|
+
g.push(t);
|
|
944
|
+
}
|
|
945
|
+
t = s.charCodeAt(++l);
|
|
946
|
+
}
|
|
947
|
+
return null;
|
|
948
|
+
}, vl = function(s, l) {
|
|
949
|
+
var t = al(s, l);
|
|
950
|
+
if (t === null) return null;
|
|
951
|
+
var g = k(t, 2), h = g[0], p = g[1];
|
|
952
|
+
if (p.toLowerCase() === "url") {
|
|
953
|
+
if (s.length > h + 1) {
|
|
954
|
+
var e = s.charCodeAt(h + 1);
|
|
955
|
+
if (e === 40) {
|
|
956
|
+
for (var z = 2; h + z < s.length; z += 1) {
|
|
957
|
+
var n = s.charCodeAt(h + z);
|
|
958
|
+
if (n === 34 || n === 39)
|
|
959
|
+
return [h + 1, p.toLowerCase(), "<function-token>"];
|
|
960
|
+
if (n !== 9 && n !== 32 && n !== 10) {
|
|
961
|
+
var o = Ns(s, h + z);
|
|
962
|
+
if (o === null) return null;
|
|
963
|
+
var a = k(o, 2), i = a[0], u = a[1];
|
|
964
|
+
return [i, u, "<url-token>"];
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
return [h + 1, p.toLowerCase(), "<function-token>"];
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
} else if (s.length > h + 1) {
|
|
971
|
+
var e = s.charCodeAt(h + 1);
|
|
972
|
+
if (e === 40)
|
|
973
|
+
return [h + 1, p.toLowerCase(), "<function-token>"];
|
|
974
|
+
}
|
|
975
|
+
return [h, p.toLowerCase(), "<ident-token>"];
|
|
976
|
+
}, Bs = function(s) {
|
|
977
|
+
for (var l = s.length - 1; l >= 0; l--)
|
|
978
|
+
s[l] = Ds(s[l]);
|
|
979
|
+
return s;
|
|
980
|
+
}, Ds = function(s) {
|
|
981
|
+
if (s.mediaCondition === null) return s;
|
|
982
|
+
var l = Ms(s.mediaCondition);
|
|
983
|
+
return l.operator === null && l.children.length === 1 && "children" in l.children[0] && (l = l.children[0]), {
|
|
984
|
+
mediaPrefix: s.mediaPrefix,
|
|
985
|
+
mediaType: s.mediaType,
|
|
986
|
+
mediaCondition: l
|
|
987
|
+
};
|
|
988
|
+
}, Ms = function s(l) {
|
|
989
|
+
for (var t = l.children.length - 1; t >= 0; t--) {
|
|
990
|
+
var g = l.children[t];
|
|
991
|
+
if (!("context" in g)) {
|
|
992
|
+
var h = s(g);
|
|
993
|
+
if (h.operator === null && h.children.length === 1)
|
|
994
|
+
l.children[t] = h.children[0];
|
|
995
|
+
else if (h.operator === l.operator && (h.operator === "and" || h.operator === "or")) {
|
|
996
|
+
for (var p = [t, 1], e = 0; e < h.children.length; e++)
|
|
997
|
+
p.push(h.children[e]);
|
|
998
|
+
l.children.splice.apply(l.children, p);
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
return l;
|
|
1003
|
+
}, A = function(s, l) {
|
|
1004
|
+
return l instanceof Error ? new Error("".concat(l.message.trim(), `
|
|
1005
|
+
`).concat(s.trim())) : new Error(s.trim());
|
|
1006
|
+
}, Ws = function(s) {
|
|
1007
|
+
return Bs($s(s));
|
|
1008
|
+
}, $s = function(s) {
|
|
1009
|
+
var l = Ts(s.trim());
|
|
1010
|
+
if (l === null)
|
|
1011
|
+
throw A("Failed tokenizing");
|
|
1012
|
+
var t = 0, g = l.length - 1;
|
|
1013
|
+
if (l[0].type === "<at-keyword-token>" && l[0].value === "media") {
|
|
1014
|
+
if (l[1].type !== "<whitespace-token>")
|
|
1015
|
+
throw A("Expected whitespace after media");
|
|
1016
|
+
t = 2;
|
|
1017
|
+
for (var h = 2; h < l.length - 1; h++) {
|
|
1018
|
+
var p = l[h];
|
|
1019
|
+
if (p.type === "<{-token>") {
|
|
1020
|
+
g = h;
|
|
1021
|
+
break;
|
|
1022
|
+
} else if (p.type === "<semicolon-token>")
|
|
1023
|
+
throw A("Expected '{' in media query but found ';'");
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
return l = l.slice(t, g), _s(l);
|
|
1027
|
+
}, Fs = function(s) {
|
|
1028
|
+
for (var l = [], t = !1, g = 0; g < s.length; g++)
|
|
1029
|
+
s[g].type === "<whitespace-token>" ? (t = !0, l.length > 0 && (l[l.length - 1].wsAfter = !0)) : (l.push(K(K({}, s[g]), {
|
|
1030
|
+
wsBefore: t,
|
|
1031
|
+
wsAfter: !1
|
|
1032
|
+
})), t = !1);
|
|
1033
|
+
return l;
|
|
1034
|
+
}, _s = function(s) {
|
|
1035
|
+
for (var l, t, g = [[]], h = 0; h < s.length; h++) {
|
|
1036
|
+
var p = s[h];
|
|
1037
|
+
p.type === "<comma-token>" ? g.push([]) : g[g.length - 1].push(p);
|
|
1038
|
+
}
|
|
1039
|
+
var e = g.map(Fs);
|
|
1040
|
+
if (e.length === 1 && e[0].length === 0)
|
|
1041
|
+
return [{
|
|
1042
|
+
mediaCondition: null,
|
|
1043
|
+
mediaPrefix: null,
|
|
1044
|
+
mediaType: "all"
|
|
1045
|
+
}];
|
|
1046
|
+
var z = e.map(function(u) {
|
|
1047
|
+
return u.length === 0 ? null : Us(u);
|
|
1048
|
+
}), n = [];
|
|
1049
|
+
try {
|
|
1050
|
+
for (var o = Es(z), a = o.next(); !a.done; a = o.next()) {
|
|
1051
|
+
var i = a.value;
|
|
1052
|
+
i !== null && n.push(i);
|
|
1053
|
+
}
|
|
1054
|
+
} catch (u) {
|
|
1055
|
+
l = {
|
|
1056
|
+
error: u
|
|
1057
|
+
};
|
|
1058
|
+
} finally {
|
|
1059
|
+
try {
|
|
1060
|
+
a && !a.done && (t = o.return) && t.call(o);
|
|
1061
|
+
} finally {
|
|
1062
|
+
if (l) throw l.error;
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
if (n.length === 0)
|
|
1066
|
+
throw A("No valid media queries");
|
|
1067
|
+
return n;
|
|
1068
|
+
}, Us = function(s) {
|
|
1069
|
+
var l = s[0];
|
|
1070
|
+
if (l.type === "<(-token>")
|
|
1071
|
+
try {
|
|
1072
|
+
return {
|
|
1073
|
+
mediaPrefix: null,
|
|
1074
|
+
mediaType: "all",
|
|
1075
|
+
mediaCondition: hl(s, !0)
|
|
1076
|
+
};
|
|
1077
|
+
} catch (a) {
|
|
1078
|
+
throw A("Expected media condition after '('", a);
|
|
1079
|
+
}
|
|
1080
|
+
else if (l.type === "<ident-token>") {
|
|
1081
|
+
var t = null, g = void 0, h = l.value;
|
|
1082
|
+
(h === "only" || h === "not") && (t = h);
|
|
1083
|
+
var p = t === null ? 0 : 1;
|
|
1084
|
+
if (s.length <= p)
|
|
1085
|
+
throw A("Expected extra token in media query");
|
|
1086
|
+
var e = s[p];
|
|
1087
|
+
if (e.type === "<ident-token>") {
|
|
1088
|
+
var z = e.value;
|
|
1089
|
+
if (z === "all")
|
|
1090
|
+
g = "all";
|
|
1091
|
+
else if (z === "print" || z === "screen")
|
|
1092
|
+
g = z;
|
|
1093
|
+
else if (z === "tty" || z === "tv" || z === "projection" || z === "handheld" || z === "braille" || z === "embossed" || z === "aural" || z === "speech")
|
|
1094
|
+
t = t === "not" ? null : "not", g = "all";
|
|
1095
|
+
else
|
|
1096
|
+
throw A("Unknown ident '".concat(z, "' in media query"));
|
|
1097
|
+
} else if (t === "not" && e.type === "<(-token>") {
|
|
1098
|
+
var n = [{
|
|
1099
|
+
type: "<(-token>",
|
|
1100
|
+
wsBefore: !1,
|
|
1101
|
+
wsAfter: !1
|
|
1102
|
+
}];
|
|
1103
|
+
n.push.apply(n, s), n.push({
|
|
1104
|
+
type: "<)-token>",
|
|
1105
|
+
wsBefore: !1,
|
|
1106
|
+
wsAfter: !1
|
|
1107
|
+
});
|
|
1108
|
+
try {
|
|
1109
|
+
return {
|
|
1110
|
+
mediaPrefix: null,
|
|
1111
|
+
mediaType: "all",
|
|
1112
|
+
mediaCondition: hl(n, !0)
|
|
1113
|
+
};
|
|
1114
|
+
} catch (a) {
|
|
1115
|
+
throw A("Expected media condition after '('", a);
|
|
1116
|
+
}
|
|
1117
|
+
} else
|
|
1118
|
+
throw A("Invalid media query");
|
|
1119
|
+
if (p + 1 === s.length)
|
|
1120
|
+
return {
|
|
1121
|
+
mediaPrefix: t,
|
|
1122
|
+
mediaType: g,
|
|
1123
|
+
mediaCondition: null
|
|
1124
|
+
};
|
|
1125
|
+
if (p + 4 < s.length) {
|
|
1126
|
+
var o = s[p + 1];
|
|
1127
|
+
if (o.type === "<ident-token>" && o.value === "and")
|
|
1128
|
+
try {
|
|
1129
|
+
return {
|
|
1130
|
+
mediaPrefix: t,
|
|
1131
|
+
mediaType: g,
|
|
1132
|
+
mediaCondition: hl(s.slice(p + 2), !1)
|
|
1133
|
+
};
|
|
1134
|
+
} catch (a) {
|
|
1135
|
+
throw A("Expected media condition after 'and'", a);
|
|
1136
|
+
}
|
|
1137
|
+
else
|
|
1138
|
+
throw A("Expected 'and' after media prefix");
|
|
1139
|
+
} else
|
|
1140
|
+
throw A("Expected media condition after media prefix");
|
|
1141
|
+
} else
|
|
1142
|
+
throw A("Expected media condition or media prefix");
|
|
1143
|
+
}, hl = function s(l, t, g) {
|
|
1144
|
+
if (g === void 0 && (g = null), l.length < 3 || l[0].type !== "<(-token>" || l[l.length - 1].type !== "<)-token>")
|
|
1145
|
+
throw new Error("Invalid media condition");
|
|
1146
|
+
for (var h = l.length - 1, p = 0, e = 0, z = 0; z < l.length; z++) {
|
|
1147
|
+
var n = l[z];
|
|
1148
|
+
if (n.type === "<(-token>" ? (e += 1, p = Math.max(p, e)) : n.type === "<)-token>" && (e -= 1), e === 0) {
|
|
1149
|
+
h = z;
|
|
1150
|
+
break;
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
if (e !== 0)
|
|
1154
|
+
throw new Error(`Mismatched parens
|
|
1155
|
+
Invalid media condition`);
|
|
1156
|
+
var o, a = l.slice(0, h + 1);
|
|
1157
|
+
if (p === 1 ? o = Vs(a) : a[1].type === "<ident-token>" && a[1].value === "not" ? o = s(a.slice(2, -1), !0, "not") : o = s(a.slice(1, -1), !0), h === l.length - 1)
|
|
1158
|
+
return {
|
|
1159
|
+
operator: g,
|
|
1160
|
+
children: [o]
|
|
1161
|
+
};
|
|
1162
|
+
var i = l[h + 1];
|
|
1163
|
+
if (i.type !== "<ident-token>")
|
|
1164
|
+
throw new Error(`Invalid operator
|
|
1165
|
+
Invalid media condition`);
|
|
1166
|
+
if (g !== null && g !== i.value)
|
|
1167
|
+
throw new Error("'".concat(i.value, "' and '").concat(g, `' must not be at same level
|
|
1168
|
+
Invalid media condition`));
|
|
1169
|
+
if (i.value === "or" && !t)
|
|
1170
|
+
throw new Error(`Cannot use 'or' at top level of a media query
|
|
1171
|
+
Invalid media condition`);
|
|
1172
|
+
if (i.value !== "and" && i.value !== "or")
|
|
1173
|
+
throw new Error("Invalid operator: '".concat(i.value, `'
|
|
1174
|
+
Invalid media condition`));
|
|
1175
|
+
var u = s(l.slice(h + 2), t, i.value);
|
|
1176
|
+
return {
|
|
1177
|
+
operator: i.value,
|
|
1178
|
+
children: [o].concat(u.children)
|
|
1179
|
+
};
|
|
1180
|
+
}, Vs = function(s) {
|
|
1181
|
+
if (s.length < 3 || s[0].type !== "<(-token>" || s[s.length - 1].type !== "<)-token>")
|
|
1182
|
+
throw new Error("Invalid media feature");
|
|
1183
|
+
for (var l = [s[0]], t = 1; t < s.length; t++) {
|
|
1184
|
+
if (t < s.length - 2) {
|
|
1185
|
+
var g = s[t], h = s[t + 1], p = s[t + 2];
|
|
1186
|
+
if (g.type === "<number-token>" && g.value > 0 && h.type === "<delim-token>" && h.value === 47 && p.type === "<number-token>" && p.value > 0) {
|
|
1187
|
+
l.push({
|
|
1188
|
+
type: "<ratio-token>",
|
|
1189
|
+
numerator: g.value,
|
|
1190
|
+
denominator: p.value,
|
|
1191
|
+
wsBefore: g.wsBefore,
|
|
1192
|
+
wsAfter: p.wsAfter
|
|
1193
|
+
}), t += 2;
|
|
1194
|
+
continue;
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
l.push(s[t]);
|
|
1198
|
+
}
|
|
1199
|
+
var e = l[1];
|
|
1200
|
+
if (e.type === "<ident-token>" && l.length === 3)
|
|
1201
|
+
return {
|
|
1202
|
+
context: "boolean",
|
|
1203
|
+
feature: e.value
|
|
1204
|
+
};
|
|
1205
|
+
if (l.length === 5 && l[1].type === "<ident-token>" && l[2].type === "<colon-token>") {
|
|
1206
|
+
var z = l[3];
|
|
1207
|
+
if (z.type === "<number-token>" || z.type === "<dimension-token>" || z.type === "<ratio-token>" || z.type === "<ident-token>") {
|
|
1208
|
+
var n = l[1].value, o = null, a = n.slice(0, 4);
|
|
1209
|
+
a === "min-" ? (o = "min", n = n.slice(4)) : a === "max-" && (o = "max", n = n.slice(4)), z.wsBefore, z.wsAfter;
|
|
1210
|
+
var i = nl(z, ["wsBefore", "wsAfter"]);
|
|
1211
|
+
return {
|
|
1212
|
+
context: "value",
|
|
1213
|
+
prefix: o,
|
|
1214
|
+
feature: n,
|
|
1215
|
+
value: i
|
|
1216
|
+
};
|
|
1217
|
+
}
|
|
1218
|
+
} else if (l.length >= 5)
|
|
1219
|
+
try {
|
|
1220
|
+
var u = Hs(l);
|
|
1221
|
+
return {
|
|
1222
|
+
context: "range",
|
|
1223
|
+
feature: u.featureName,
|
|
1224
|
+
range: u
|
|
1225
|
+
};
|
|
1226
|
+
} catch (r) {
|
|
1227
|
+
throw A("Invalid media feature", r);
|
|
1228
|
+
}
|
|
1229
|
+
throw new Error("Invalid media feature");
|
|
1230
|
+
}, Hs = function(s) {
|
|
1231
|
+
var l, t, g, h;
|
|
1232
|
+
if (s.length < 5 || s[0].type !== "<(-token>" || s[s.length - 1].type !== "<)-token>")
|
|
1233
|
+
throw new Error("Invalid range");
|
|
1234
|
+
var p = {
|
|
1235
|
+
leftToken: null,
|
|
1236
|
+
leftOp: null,
|
|
1237
|
+
featureName: "",
|
|
1238
|
+
rightOp: null,
|
|
1239
|
+
rightToken: null
|
|
1240
|
+
}, e = s[1].type === "<number-token>" || s[1].type === "<dimension-token>" || s[1].type === "<ratio-token>" || s[1].type === "<ident-token>" && s[1].value === "infinite";
|
|
1241
|
+
if (s[2].type === "<delim-token>") {
|
|
1242
|
+
if (s[2].value === 60)
|
|
1243
|
+
s[3].type === "<delim-token>" && s[3].value === 61 && !s[3].wsBefore ? p[e ? "leftOp" : "rightOp"] = "<=" : p[e ? "leftOp" : "rightOp"] = "<";
|
|
1244
|
+
else if (s[2].value === 62)
|
|
1245
|
+
s[3].type === "<delim-token>" && s[3].value === 61 && !s[3].wsBefore ? p[e ? "leftOp" : "rightOp"] = ">=" : p[e ? "leftOp" : "rightOp"] = ">";
|
|
1246
|
+
else if (s[2].value === 61)
|
|
1247
|
+
p[e ? "leftOp" : "rightOp"] = "=";
|
|
1248
|
+
else
|
|
1249
|
+
throw new Error("Invalid range");
|
|
1250
|
+
if (e)
|
|
1251
|
+
p.leftToken = s[1];
|
|
1252
|
+
else if (s[1].type === "<ident-token>")
|
|
1253
|
+
p.featureName = s[1].value;
|
|
1254
|
+
else
|
|
1255
|
+
throw new Error("Invalid range");
|
|
1256
|
+
var z = 2 + ((t = (l = p[e ? "leftOp" : "rightOp"]) === null || l === void 0 ? void 0 : l.length) !== null && t !== void 0 ? t : 0), n = s[z];
|
|
1257
|
+
if (e)
|
|
1258
|
+
if (n.type === "<ident-token>") {
|
|
1259
|
+
if (p.featureName = n.value, s.length >= 7) {
|
|
1260
|
+
var o = s[z + 1], a = s[z + 2];
|
|
1261
|
+
if (o.type === "<delim-token>") {
|
|
1262
|
+
var i = o.value;
|
|
1263
|
+
if (i === 60)
|
|
1264
|
+
a.type === "<delim-token>" && a.value === 61 && !a.wsBefore ? p.rightOp = "<=" : p.rightOp = "<";
|
|
1265
|
+
else if (i === 62)
|
|
1266
|
+
a.type === "<delim-token>" && a.value === 61 && !a.wsBefore ? p.rightOp = ">=" : p.rightOp = ">";
|
|
1267
|
+
else
|
|
1268
|
+
throw new Error("Invalid range");
|
|
1269
|
+
var u = s[z + 1 + ((h = (g = p.rightOp) === null || g === void 0 ? void 0 : g.length) !== null && h !== void 0 ? h : 0)];
|
|
1270
|
+
p.rightToken = u;
|
|
1271
|
+
} else
|
|
1272
|
+
throw new Error("Invalid range");
|
|
1273
|
+
} else if (z + 2 !== s.length)
|
|
1274
|
+
throw new Error("Invalid range");
|
|
1275
|
+
} else
|
|
1276
|
+
throw new Error("Invalid range");
|
|
1277
|
+
else
|
|
1278
|
+
p.rightToken = n;
|
|
1279
|
+
var r = null, m = p.leftToken, d = p.leftOp, b = p.featureName, v = p.rightOp, y = p.rightToken, f = null;
|
|
1280
|
+
if (m !== null) {
|
|
1281
|
+
if (m.type === "<ident-token>") {
|
|
1282
|
+
var x = m.type, c = m.value;
|
|
1283
|
+
c === "infinite" && (f = {
|
|
1284
|
+
type: x,
|
|
1285
|
+
value: c
|
|
1286
|
+
});
|
|
1287
|
+
} else if (m.type === "<number-token>" || m.type === "<dimension-token>" || m.type === "<ratio-token>") {
|
|
1288
|
+
m.wsBefore, m.wsAfter;
|
|
1289
|
+
var w = nl(m, ["wsBefore", "wsAfter"]);
|
|
1290
|
+
f = w;
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
var j = null;
|
|
1294
|
+
if (y !== null) {
|
|
1295
|
+
if (y.type === "<ident-token>") {
|
|
1296
|
+
var x = y.type, c = y.value;
|
|
1297
|
+
c === "infinite" && (j = {
|
|
1298
|
+
type: x,
|
|
1299
|
+
value: c
|
|
1300
|
+
});
|
|
1301
|
+
} else if (y.type === "<number-token>" || y.type === "<dimension-token>" || y.type === "<ratio-token>") {
|
|
1302
|
+
y.wsBefore, y.wsAfter;
|
|
1303
|
+
var R = nl(y, ["wsBefore", "wsAfter"]);
|
|
1304
|
+
j = R;
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
if (f !== null && j !== null)
|
|
1308
|
+
if ((d === "<" || d === "<=") && (v === "<" || v === "<="))
|
|
1309
|
+
r = {
|
|
1310
|
+
leftToken: f,
|
|
1311
|
+
leftOp: d,
|
|
1312
|
+
featureName: b,
|
|
1313
|
+
rightOp: v,
|
|
1314
|
+
rightToken: j
|
|
1315
|
+
};
|
|
1316
|
+
else if ((d === ">" || d === ">=") && (v === ">" || v === ">="))
|
|
1317
|
+
r = {
|
|
1318
|
+
leftToken: f,
|
|
1319
|
+
leftOp: d,
|
|
1320
|
+
featureName: b,
|
|
1321
|
+
rightOp: v,
|
|
1322
|
+
rightToken: j
|
|
1323
|
+
};
|
|
1324
|
+
else
|
|
1325
|
+
throw new Error("Invalid range");
|
|
1326
|
+
else f === null && d === null && v !== null && j !== null ? r = {
|
|
1327
|
+
leftToken: f,
|
|
1328
|
+
leftOp: d,
|
|
1329
|
+
featureName: b,
|
|
1330
|
+
rightOp: v,
|
|
1331
|
+
rightToken: j
|
|
1332
|
+
} : f !== null && d !== null && v === null && j === null && (r = {
|
|
1333
|
+
leftToken: f,
|
|
1334
|
+
leftOp: d,
|
|
1335
|
+
featureName: b,
|
|
1336
|
+
rightOp: v,
|
|
1337
|
+
rightToken: j
|
|
1338
|
+
});
|
|
1339
|
+
return r;
|
|
1340
|
+
} else
|
|
1341
|
+
throw new Error("Invalid range");
|
|
1342
|
+
};
|
|
1343
|
+
function Gs(s, l) {
|
|
1344
|
+
if (typeof s != "object" || !s) return s;
|
|
1345
|
+
var t = s[Symbol.toPrimitive];
|
|
1346
|
+
if (t !== void 0) {
|
|
1347
|
+
var g = t.call(s, l || "default");
|
|
1348
|
+
if (typeof g != "object") return g;
|
|
1349
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
1350
|
+
}
|
|
1351
|
+
return (l === "string" ? String : Number)(s);
|
|
1352
|
+
}
|
|
1353
|
+
function Qs(s) {
|
|
1354
|
+
var l = Gs(s, "string");
|
|
1355
|
+
return typeof l == "symbol" ? l : String(l);
|
|
1356
|
+
}
|
|
1357
|
+
function Xs(s, l, t) {
|
|
1358
|
+
return l = Qs(l), l in s ? Object.defineProperty(s, l, {
|
|
1359
|
+
value: t,
|
|
1360
|
+
enumerable: !0,
|
|
1361
|
+
configurable: !0,
|
|
1362
|
+
writable: !0
|
|
1363
|
+
}) : s[l] = t, s;
|
|
1364
|
+
}
|
|
1365
|
+
function yl(s, l) {
|
|
1366
|
+
var t = Object.keys(s);
|
|
1367
|
+
if (Object.getOwnPropertySymbols) {
|
|
1368
|
+
var g = Object.getOwnPropertySymbols(s);
|
|
1369
|
+
l && (g = g.filter(function(h) {
|
|
1370
|
+
return Object.getOwnPropertyDescriptor(s, h).enumerable;
|
|
1371
|
+
})), t.push.apply(t, g);
|
|
1372
|
+
}
|
|
1373
|
+
return t;
|
|
1374
|
+
}
|
|
1375
|
+
function F(s) {
|
|
1376
|
+
for (var l = 1; l < arguments.length; l++) {
|
|
1377
|
+
var t = arguments[l] != null ? arguments[l] : {};
|
|
1378
|
+
l % 2 ? yl(Object(t), !0).forEach(function(g) {
|
|
1379
|
+
Xs(s, g, t[g]);
|
|
1380
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(s, Object.getOwnPropertyDescriptors(t)) : yl(Object(t)).forEach(function(g) {
|
|
1381
|
+
Object.defineProperty(s, g, Object.getOwnPropertyDescriptor(t, g));
|
|
1382
|
+
});
|
|
1383
|
+
}
|
|
1384
|
+
return s;
|
|
1385
|
+
}
|
|
1386
|
+
function Ys(s, l) {
|
|
1387
|
+
if (s == null) return {};
|
|
1388
|
+
var t = {}, g = Object.keys(s), h, p;
|
|
1389
|
+
for (p = 0; p < g.length; p++)
|
|
1390
|
+
h = g[p], !(l.indexOf(h) >= 0) && (t[h] = s[h]);
|
|
1391
|
+
return t;
|
|
1392
|
+
}
|
|
1393
|
+
function kl(s, l) {
|
|
1394
|
+
if (s == null) return {};
|
|
1395
|
+
var t = Ys(s, l), g, h;
|
|
1396
|
+
if (Object.getOwnPropertySymbols) {
|
|
1397
|
+
var p = Object.getOwnPropertySymbols(s);
|
|
1398
|
+
for (h = 0; h < p.length; h++)
|
|
1399
|
+
g = p[h], !(l.indexOf(g) >= 0) && Object.prototype.propertyIsEnumerable.call(s, g) && (t[g] = s[g]);
|
|
1400
|
+
}
|
|
1401
|
+
return t;
|
|
1402
|
+
}
|
|
1403
|
+
function $(s, l) {
|
|
1404
|
+
for (var t in s)
|
|
1405
|
+
l(s[t], t);
|
|
1406
|
+
}
|
|
1407
|
+
function N(s, l) {
|
|
1408
|
+
var t = {};
|
|
1409
|
+
for (var g in s)
|
|
1410
|
+
l.indexOf(g) === -1 && (t[g] = s[g]);
|
|
1411
|
+
return t;
|
|
1412
|
+
}
|
|
1413
|
+
function Js(s, l) {
|
|
1414
|
+
var t = {};
|
|
1415
|
+
for (var g in s)
|
|
1416
|
+
t[l(s[g], g)] = s[g];
|
|
1417
|
+
return t;
|
|
1418
|
+
}
|
|
1419
|
+
var bl;
|
|
1420
|
+
function Ks(s) {
|
|
1421
|
+
return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&");
|
|
1422
|
+
}
|
|
1423
|
+
var Zs = (s, l) => {
|
|
1424
|
+
var t = () => {
|
|
1425
|
+
var h = new RegExp(".".concat(Ks(Sl(l, {
|
|
1426
|
+
isIdentifier: !0
|
|
1427
|
+
}))), "g");
|
|
1428
|
+
return s.replace(h, "&");
|
|
1429
|
+
}, g;
|
|
1430
|
+
try {
|
|
1431
|
+
g = js(s);
|
|
1432
|
+
} catch {
|
|
1433
|
+
throw new Error("Invalid selector: ".concat(t()));
|
|
1434
|
+
}
|
|
1435
|
+
g.forEach((h) => {
|
|
1436
|
+
try {
|
|
1437
|
+
for (var p = h.length - 1; p >= -1; p--) {
|
|
1438
|
+
if (!h[p])
|
|
1439
|
+
throw new Error();
|
|
1440
|
+
var e = h[p];
|
|
1441
|
+
if (e.type === "child" || e.type === "parent" || e.type === "sibling" || e.type === "adjacent" || e.type === "descendant")
|
|
1442
|
+
throw new Error();
|
|
1443
|
+
if (e.type === "attribute" && e.name === "class" && e.value === l)
|
|
1444
|
+
return;
|
|
1445
|
+
}
|
|
1446
|
+
} catch {
|
|
1447
|
+
throw new Error(Il(bl || (bl = Tl([`
|
|
1448
|
+
Invalid selector: `, `
|
|
1449
|
+
|
|
1450
|
+
Style selectors must target the '&' character (along with any modifiers), e.g. `, " or ", `.
|
|
1451
|
+
|
|
1452
|
+
This is to ensure that each style block only affects the styling of a single class.
|
|
1453
|
+
|
|
1454
|
+
If your selector is targeting another class, you should move it to the style definition for that class, e.g. given we have styles for 'parent' and 'child' elements, instead of adding a selector of `, ") to 'parent', you should add ", ` to 'child').
|
|
1455
|
+
|
|
1456
|
+
If your selector is targeting something global, use the 'globalStyle' function instead, e.g. if you wanted to write `, ", you should instead write 'globalStyle(", `, { ... })'
|
|
1457
|
+
`])), t(), "`${parent} &`", "`${parent} &:hover`", "`& ${child}`", "`${parent} &`", "`& h1`", "`${parent} h1`"));
|
|
1458
|
+
}
|
|
1459
|
+
});
|
|
1460
|
+
};
|
|
1461
|
+
class Z {
|
|
1462
|
+
/**
|
|
1463
|
+
* Stores information about where conditions must be in relation to other conditions
|
|
1464
|
+
*
|
|
1465
|
+
* e.g. mobile -> tablet, desktop
|
|
1466
|
+
*/
|
|
1467
|
+
constructor() {
|
|
1468
|
+
this.ruleset = /* @__PURE__ */ new Map(), this.precedenceLookup = /* @__PURE__ */ new Map();
|
|
1469
|
+
}
|
|
1470
|
+
findOrCreateCondition(l) {
|
|
1471
|
+
var t = this.ruleset.get(l);
|
|
1472
|
+
return t || (t = {
|
|
1473
|
+
query: l,
|
|
1474
|
+
rules: [],
|
|
1475
|
+
children: new Z()
|
|
1476
|
+
}, this.ruleset.set(l, t)), t;
|
|
1477
|
+
}
|
|
1478
|
+
getConditionalRulesetByPath(l) {
|
|
1479
|
+
var t = this;
|
|
1480
|
+
for (var g of l) {
|
|
1481
|
+
var h = t.findOrCreateCondition(g);
|
|
1482
|
+
t = h.children;
|
|
1483
|
+
}
|
|
1484
|
+
return t;
|
|
1485
|
+
}
|
|
1486
|
+
addRule(l, t, g) {
|
|
1487
|
+
var h = this.getConditionalRulesetByPath(g), p = h.findOrCreateCondition(t);
|
|
1488
|
+
if (!p)
|
|
1489
|
+
throw new Error("Failed to add conditional rule");
|
|
1490
|
+
p.rules.push(l);
|
|
1491
|
+
}
|
|
1492
|
+
addConditionPrecedence(l, t) {
|
|
1493
|
+
for (var g = this.getConditionalRulesetByPath(l), h = 0; h < t.length; h++) {
|
|
1494
|
+
var p, e = t[h], z = (p = g.precedenceLookup.get(e)) !== null && p !== void 0 ? p : /* @__PURE__ */ new Set();
|
|
1495
|
+
for (var n of t.slice(h + 1))
|
|
1496
|
+
z.add(n);
|
|
1497
|
+
g.precedenceLookup.set(e, z);
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
isCompatible(l) {
|
|
1501
|
+
for (var [t, g] of this.precedenceLookup.entries())
|
|
1502
|
+
for (var h of g) {
|
|
1503
|
+
var p;
|
|
1504
|
+
if ((p = l.precedenceLookup.get(h)) !== null && p !== void 0 && p.has(t))
|
|
1505
|
+
return !1;
|
|
1506
|
+
}
|
|
1507
|
+
for (var {
|
|
1508
|
+
query: e,
|
|
1509
|
+
children: z
|
|
1510
|
+
} of l.ruleset.values()) {
|
|
1511
|
+
var n = this.ruleset.get(e);
|
|
1512
|
+
if (n && !n.children.isCompatible(z))
|
|
1513
|
+
return !1;
|
|
1514
|
+
}
|
|
1515
|
+
return !0;
|
|
1516
|
+
}
|
|
1517
|
+
merge(l) {
|
|
1518
|
+
for (var {
|
|
1519
|
+
query: t,
|
|
1520
|
+
rules: g,
|
|
1521
|
+
children: h
|
|
1522
|
+
} of l.ruleset.values()) {
|
|
1523
|
+
var p = this.ruleset.get(t);
|
|
1524
|
+
p ? (p.rules.push(...g), p.children.merge(h)) : this.ruleset.set(t, {
|
|
1525
|
+
query: t,
|
|
1526
|
+
rules: g,
|
|
1527
|
+
children: h
|
|
1528
|
+
});
|
|
1529
|
+
}
|
|
1530
|
+
for (var [e, z] of l.precedenceLookup.entries()) {
|
|
1531
|
+
var n, o = (n = this.precedenceLookup.get(e)) !== null && n !== void 0 ? n : /* @__PURE__ */ new Set();
|
|
1532
|
+
this.precedenceLookup.set(e, /* @__PURE__ */ new Set([...o, ...z]));
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
/**
|
|
1536
|
+
* Merge another ConditionalRuleset into this one if they are compatible
|
|
1537
|
+
*
|
|
1538
|
+
* @returns true if successful, false if the ruleset is incompatible
|
|
1539
|
+
*/
|
|
1540
|
+
mergeIfCompatible(l) {
|
|
1541
|
+
return this.isCompatible(l) ? (this.merge(l), !0) : !1;
|
|
1542
|
+
}
|
|
1543
|
+
getSortedRuleset() {
|
|
1544
|
+
var l = this, t = [], g = function(e) {
|
|
1545
|
+
var z = l.ruleset.get(h);
|
|
1546
|
+
if (!z)
|
|
1547
|
+
throw new Error("Can't find condition for ".concat(h));
|
|
1548
|
+
var n = t.findIndex((o) => e.has(o.query));
|
|
1549
|
+
n > -1 ? t.splice(n, 0, z) : t.push(z);
|
|
1550
|
+
};
|
|
1551
|
+
for (var [h, p] of this.precedenceLookup.entries())
|
|
1552
|
+
g(p);
|
|
1553
|
+
return t;
|
|
1554
|
+
}
|
|
1555
|
+
renderToArray() {
|
|
1556
|
+
var l = [];
|
|
1557
|
+
for (var {
|
|
1558
|
+
query: t,
|
|
1559
|
+
rules: g,
|
|
1560
|
+
children: h
|
|
1561
|
+
} of this.getSortedRuleset()) {
|
|
1562
|
+
var p = {};
|
|
1563
|
+
for (var e of g)
|
|
1564
|
+
p[e.selector] = F(F({}, p[e.selector]), e.rule);
|
|
1565
|
+
Object.assign(p, ...h.renderToArray()), l.push({
|
|
1566
|
+
[t]: p
|
|
1567
|
+
});
|
|
1568
|
+
}
|
|
1569
|
+
return l;
|
|
1570
|
+
}
|
|
1571
|
+
}
|
|
1572
|
+
var Dl = {
|
|
1573
|
+
":-moz-any-link": !0,
|
|
1574
|
+
":-moz-full-screen": !0,
|
|
1575
|
+
":-moz-placeholder": !0,
|
|
1576
|
+
":-moz-read-only": !0,
|
|
1577
|
+
":-moz-read-write": !0,
|
|
1578
|
+
":-ms-fullscreen": !0,
|
|
1579
|
+
":-ms-input-placeholder": !0,
|
|
1580
|
+
":-webkit-any-link": !0,
|
|
1581
|
+
":-webkit-full-screen": !0,
|
|
1582
|
+
"::-moz-color-swatch": !0,
|
|
1583
|
+
"::-moz-list-bullet": !0,
|
|
1584
|
+
"::-moz-list-number": !0,
|
|
1585
|
+
"::-moz-page-sequence": !0,
|
|
1586
|
+
"::-moz-page": !0,
|
|
1587
|
+
"::-moz-placeholder": !0,
|
|
1588
|
+
"::-moz-progress-bar": !0,
|
|
1589
|
+
"::-moz-range-progress": !0,
|
|
1590
|
+
"::-moz-range-thumb": !0,
|
|
1591
|
+
"::-moz-range-track": !0,
|
|
1592
|
+
"::-moz-scrolled-page-sequence": !0,
|
|
1593
|
+
"::-moz-selection": !0,
|
|
1594
|
+
"::-ms-backdrop": !0,
|
|
1595
|
+
"::-ms-browse": !0,
|
|
1596
|
+
"::-ms-check": !0,
|
|
1597
|
+
"::-ms-clear": !0,
|
|
1598
|
+
"::-ms-fill-lower": !0,
|
|
1599
|
+
"::-ms-fill-upper": !0,
|
|
1600
|
+
"::-ms-fill": !0,
|
|
1601
|
+
"::-ms-reveal": !0,
|
|
1602
|
+
"::-ms-thumb": !0,
|
|
1603
|
+
"::-ms-ticks-after": !0,
|
|
1604
|
+
"::-ms-ticks-before": !0,
|
|
1605
|
+
"::-ms-tooltip": !0,
|
|
1606
|
+
"::-ms-track": !0,
|
|
1607
|
+
"::-ms-value": !0,
|
|
1608
|
+
"::-webkit-backdrop": !0,
|
|
1609
|
+
"::-webkit-inner-spin-button": !0,
|
|
1610
|
+
"::-webkit-input-placeholder": !0,
|
|
1611
|
+
"::-webkit-meter-bar": !0,
|
|
1612
|
+
"::-webkit-meter-even-less-good-value": !0,
|
|
1613
|
+
"::-webkit-meter-inner-element": !0,
|
|
1614
|
+
"::-webkit-meter-optimum-value": !0,
|
|
1615
|
+
"::-webkit-meter-suboptimum-value": !0,
|
|
1616
|
+
"::-webkit-outer-spin-button": !0,
|
|
1617
|
+
"::-webkit-progress-bar": !0,
|
|
1618
|
+
"::-webkit-progress-inner-element": !0,
|
|
1619
|
+
"::-webkit-progress-inner-value": !0,
|
|
1620
|
+
"::-webkit-progress-value": !0,
|
|
1621
|
+
"::-webkit-resizer": !0,
|
|
1622
|
+
"::-webkit-scrollbar-button": !0,
|
|
1623
|
+
"::-webkit-scrollbar-corner": !0,
|
|
1624
|
+
"::-webkit-scrollbar-thumb": !0,
|
|
1625
|
+
"::-webkit-scrollbar-track-piece": !0,
|
|
1626
|
+
"::-webkit-scrollbar-track": !0,
|
|
1627
|
+
"::-webkit-scrollbar": !0,
|
|
1628
|
+
"::-webkit-search-cancel-button": !0,
|
|
1629
|
+
"::-webkit-search-results-button": !0,
|
|
1630
|
+
"::-webkit-slider-runnable-track": !0,
|
|
1631
|
+
"::-webkit-slider-thumb": !0,
|
|
1632
|
+
"::after": !0,
|
|
1633
|
+
"::backdrop": !0,
|
|
1634
|
+
"::before": !0,
|
|
1635
|
+
"::cue": !0,
|
|
1636
|
+
"::file-selector-button": !0,
|
|
1637
|
+
"::first-letter": !0,
|
|
1638
|
+
"::first-line": !0,
|
|
1639
|
+
"::grammar-error": !0,
|
|
1640
|
+
"::marker": !0,
|
|
1641
|
+
"::placeholder": !0,
|
|
1642
|
+
"::selection": !0,
|
|
1643
|
+
"::spelling-error": !0,
|
|
1644
|
+
"::target-text": !0,
|
|
1645
|
+
"::view-transition-group": !0,
|
|
1646
|
+
"::view-transition-image-pair": !0,
|
|
1647
|
+
"::view-transition-new": !0,
|
|
1648
|
+
"::view-transition-old": !0,
|
|
1649
|
+
"::view-transition": !0,
|
|
1650
|
+
":active": !0,
|
|
1651
|
+
":after": !0,
|
|
1652
|
+
":any-link": !0,
|
|
1653
|
+
":before": !0,
|
|
1654
|
+
":blank": !0,
|
|
1655
|
+
":checked": !0,
|
|
1656
|
+
":default": !0,
|
|
1657
|
+
":defined": !0,
|
|
1658
|
+
":disabled": !0,
|
|
1659
|
+
":empty": !0,
|
|
1660
|
+
":enabled": !0,
|
|
1661
|
+
":first-child": !0,
|
|
1662
|
+
":first-letter": !0,
|
|
1663
|
+
":first-line": !0,
|
|
1664
|
+
":first-of-type": !0,
|
|
1665
|
+
":first": !0,
|
|
1666
|
+
":focus-visible": !0,
|
|
1667
|
+
":focus-within": !0,
|
|
1668
|
+
":focus": !0,
|
|
1669
|
+
":fullscreen": !0,
|
|
1670
|
+
":hover": !0,
|
|
1671
|
+
":in-range": !0,
|
|
1672
|
+
":indeterminate": !0,
|
|
1673
|
+
":invalid": !0,
|
|
1674
|
+
":last-child": !0,
|
|
1675
|
+
":last-of-type": !0,
|
|
1676
|
+
":left": !0,
|
|
1677
|
+
":link": !0,
|
|
1678
|
+
":only-child": !0,
|
|
1679
|
+
":only-of-type": !0,
|
|
1680
|
+
":optional": !0,
|
|
1681
|
+
":out-of-range": !0,
|
|
1682
|
+
":placeholder-shown": !0,
|
|
1683
|
+
":read-only": !0,
|
|
1684
|
+
":read-write": !0,
|
|
1685
|
+
":required": !0,
|
|
1686
|
+
":right": !0,
|
|
1687
|
+
":root": !0,
|
|
1688
|
+
":scope": !0,
|
|
1689
|
+
":target": !0,
|
|
1690
|
+
":valid": !0,
|
|
1691
|
+
":visited": !0
|
|
1692
|
+
}, lt = Object.keys(Dl), st = Dl, wl, jl = (s, l) => new Error(Il(wl || (wl = Tl([`
|
|
1693
|
+
Invalid media query: "`, `"
|
|
1694
|
+
|
|
1695
|
+
`, `
|
|
1696
|
+
|
|
1697
|
+
Read more on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries
|
|
1698
|
+
`])), s, l)), tt = (s) => {
|
|
1699
|
+
if (s === "@media ")
|
|
1700
|
+
throw jl(s, "Query is empty");
|
|
1701
|
+
try {
|
|
1702
|
+
Ws(s);
|
|
1703
|
+
} catch (l) {
|
|
1704
|
+
throw jl(s, l.message);
|
|
1705
|
+
}
|
|
1706
|
+
}, gt = ["vars"], pt = ["content"], Ml = "__DECLARATION", ht = {
|
|
1707
|
+
animationIterationCount: !0,
|
|
1708
|
+
borderImage: !0,
|
|
1709
|
+
borderImageOutset: !0,
|
|
1710
|
+
borderImageSlice: !0,
|
|
1711
|
+
borderImageWidth: !0,
|
|
1712
|
+
boxFlex: !0,
|
|
1713
|
+
boxFlexGroup: !0,
|
|
1714
|
+
columnCount: !0,
|
|
1715
|
+
columns: !0,
|
|
1716
|
+
flex: !0,
|
|
1717
|
+
flexGrow: !0,
|
|
1718
|
+
flexShrink: !0,
|
|
1719
|
+
fontWeight: !0,
|
|
1720
|
+
gridArea: !0,
|
|
1721
|
+
gridColumn: !0,
|
|
1722
|
+
gridColumnEnd: !0,
|
|
1723
|
+
gridColumnStart: !0,
|
|
1724
|
+
gridRow: !0,
|
|
1725
|
+
gridRowEnd: !0,
|
|
1726
|
+
gridRowStart: !0,
|
|
1727
|
+
initialLetter: !0,
|
|
1728
|
+
lineClamp: !0,
|
|
1729
|
+
lineHeight: !0,
|
|
1730
|
+
maxLines: !0,
|
|
1731
|
+
opacity: !0,
|
|
1732
|
+
order: !0,
|
|
1733
|
+
orphans: !0,
|
|
1734
|
+
scale: !0,
|
|
1735
|
+
tabSize: !0,
|
|
1736
|
+
WebkitLineClamp: !0,
|
|
1737
|
+
widows: !0,
|
|
1738
|
+
zIndex: !0,
|
|
1739
|
+
zoom: !0,
|
|
1740
|
+
// svg properties
|
|
1741
|
+
fillOpacity: !0,
|
|
1742
|
+
floodOpacity: !0,
|
|
1743
|
+
maskBorder: !0,
|
|
1744
|
+
maskBorderOutset: !0,
|
|
1745
|
+
maskBorderSlice: !0,
|
|
1746
|
+
maskBorderWidth: !0,
|
|
1747
|
+
shapeImageThreshold: !0,
|
|
1748
|
+
stopOpacity: !0,
|
|
1749
|
+
strokeDashoffset: !0,
|
|
1750
|
+
strokeMiterlimit: !0,
|
|
1751
|
+
strokeOpacity: !0,
|
|
1752
|
+
strokeWidth: !0
|
|
1753
|
+
};
|
|
1754
|
+
function zt(s) {
|
|
1755
|
+
return s.replace(/([A-Z])/g, "-$1").replace(/^ms-/, "-ms-").toLowerCase();
|
|
1756
|
+
}
|
|
1757
|
+
function et(s, l, t, g) {
|
|
1758
|
+
var h = s.slice(0, l), p = s.slice(t);
|
|
1759
|
+
return "".concat(h).concat(g).concat(p);
|
|
1760
|
+
}
|
|
1761
|
+
var nt = " ", B = [...lt, "@layer", "@media", "@supports", "@container", "selectors"];
|
|
1762
|
+
class ot {
|
|
1763
|
+
constructor(l, t) {
|
|
1764
|
+
this.rules = [], this.conditionalRulesets = [new Z()], this.fontFaceRules = [], this.keyframesRules = [], this.localClassNamesMap = new Map(l.map((g) => [g, g])), this.localClassNamesSearch = new ms(l), this.layers = /* @__PURE__ */ new Map(), this.composedClassLists = t.map((g) => {
|
|
1765
|
+
var {
|
|
1766
|
+
identifier: h,
|
|
1767
|
+
classList: p
|
|
1768
|
+
} = g;
|
|
1769
|
+
return {
|
|
1770
|
+
identifier: h,
|
|
1771
|
+
regex: RegExp("(".concat(p, ")"), "g")
|
|
1772
|
+
};
|
|
1773
|
+
}).reverse();
|
|
1774
|
+
}
|
|
1775
|
+
processCssObj(l) {
|
|
1776
|
+
if (l.type === "fontFace") {
|
|
1777
|
+
this.fontFaceRules.push(l.rule);
|
|
1778
|
+
return;
|
|
1779
|
+
}
|
|
1780
|
+
if (l.type === "keyframes") {
|
|
1781
|
+
l.rule = Object.fromEntries(Object.entries(l.rule).map((p) => {
|
|
1782
|
+
var [e, z] = p;
|
|
1783
|
+
return [e, this.transformProperties(z)];
|
|
1784
|
+
})), this.keyframesRules.push(l);
|
|
1785
|
+
return;
|
|
1786
|
+
}
|
|
1787
|
+
if (this.currConditionalRuleset = new Z(), l.type === "layer") {
|
|
1788
|
+
var t = "@layer ".concat(l.name);
|
|
1789
|
+
this.addLayer([t]);
|
|
1790
|
+
} else {
|
|
1791
|
+
var g = N(l.rule, B);
|
|
1792
|
+
this.addRule({
|
|
1793
|
+
selector: l.selector,
|
|
1794
|
+
rule: g
|
|
1795
|
+
}), this.transformLayer(l, l.rule["@layer"]), this.transformMedia(l, l.rule["@media"]), this.transformSupports(l, l.rule["@supports"]), this.transformContainer(l, l.rule["@container"]), this.transformSimplePseudos(l, l.rule), this.transformSelectors(l, l.rule);
|
|
1796
|
+
}
|
|
1797
|
+
var h = this.conditionalRulesets[this.conditionalRulesets.length - 1];
|
|
1798
|
+
h.mergeIfCompatible(this.currConditionalRuleset) || this.conditionalRulesets.push(this.currConditionalRuleset);
|
|
1799
|
+
}
|
|
1800
|
+
addConditionalRule(l, t) {
|
|
1801
|
+
var g = this.transformVars(this.transformProperties(l.rule)), h = this.transformSelector(l.selector);
|
|
1802
|
+
if (!this.currConditionalRuleset)
|
|
1803
|
+
throw new Error("Couldn't add conditional rule");
|
|
1804
|
+
var p = t[t.length - 1], e = t.slice(0, t.length - 1);
|
|
1805
|
+
this.currConditionalRuleset.addRule({
|
|
1806
|
+
selector: h,
|
|
1807
|
+
rule: g
|
|
1808
|
+
}, p, e);
|
|
1809
|
+
}
|
|
1810
|
+
addRule(l) {
|
|
1811
|
+
var t = this.transformVars(this.transformProperties(l.rule)), g = this.transformSelector(l.selector);
|
|
1812
|
+
this.rules.push({
|
|
1813
|
+
selector: g,
|
|
1814
|
+
rule: t
|
|
1815
|
+
});
|
|
1816
|
+
}
|
|
1817
|
+
addLayer(l) {
|
|
1818
|
+
var t = l.join(" - ");
|
|
1819
|
+
this.layers.set(t, l);
|
|
1820
|
+
}
|
|
1821
|
+
transformProperties(l) {
|
|
1822
|
+
return this.transformContent(this.pixelifyProperties(l));
|
|
1823
|
+
}
|
|
1824
|
+
pixelifyProperties(l) {
|
|
1825
|
+
return $(l, (t, g) => {
|
|
1826
|
+
typeof t == "number" && t !== 0 && !ht[g] && (l[g] = "".concat(t, "px"));
|
|
1827
|
+
}), l;
|
|
1828
|
+
}
|
|
1829
|
+
transformVars(l) {
|
|
1830
|
+
var {
|
|
1831
|
+
vars: t
|
|
1832
|
+
} = l, g = kl(l, gt);
|
|
1833
|
+
return t ? F(F({}, Js(t, (h, p) => ps(p))), g) : g;
|
|
1834
|
+
}
|
|
1835
|
+
transformContent(l) {
|
|
1836
|
+
var {
|
|
1837
|
+
content: t
|
|
1838
|
+
} = l, g = kl(l, pt);
|
|
1839
|
+
if (typeof t > "u")
|
|
1840
|
+
return g;
|
|
1841
|
+
var h = Array.isArray(t) ? t : [t];
|
|
1842
|
+
return F({
|
|
1843
|
+
content: h.map((p) => (
|
|
1844
|
+
// This logic was adapted from Stitches :)
|
|
1845
|
+
p && (p.includes('"') || p.includes("'") || /^([A-Za-z\-]+\([^]*|[^]*-quote|inherit|initial|none|normal|revert|unset)(\s|$)/.test(p)) ? p : '"'.concat(p, '"')
|
|
1846
|
+
))
|
|
1847
|
+
}, g);
|
|
1848
|
+
}
|
|
1849
|
+
transformClassname(l) {
|
|
1850
|
+
return ".".concat(Sl(l, {
|
|
1851
|
+
isIdentifier: !0
|
|
1852
|
+
}));
|
|
1853
|
+
}
|
|
1854
|
+
transformSelector(l) {
|
|
1855
|
+
var t = l, g = function(u) {
|
|
1856
|
+
t = t.replace(p, () => (fs(u), u));
|
|
1857
|
+
};
|
|
1858
|
+
for (var {
|
|
1859
|
+
identifier: h,
|
|
1860
|
+
regex: p
|
|
1861
|
+
} of this.composedClassLists)
|
|
1862
|
+
g(h);
|
|
1863
|
+
if (this.localClassNamesMap.has(t))
|
|
1864
|
+
return this.transformClassname(t);
|
|
1865
|
+
for (var e = this.localClassNamesSearch.search(t), z = t.length, n = e.length - 1; n >= 0; n--) {
|
|
1866
|
+
var [o, [a]] = e[n], i = o - a.length + 1;
|
|
1867
|
+
i >= z || (z = i, t[i - 1] !== "." && (t = et(t, i, o + 1, this.transformClassname(a))));
|
|
1868
|
+
}
|
|
1869
|
+
return t;
|
|
1870
|
+
}
|
|
1871
|
+
transformSelectors(l, t, g) {
|
|
1872
|
+
$(t.selectors, (h, p) => {
|
|
1873
|
+
if (l.type !== "local")
|
|
1874
|
+
throw new Error("Selectors are not allowed within ".concat(l.type === "global" ? '"globalStyle"' : '"selectors"'));
|
|
1875
|
+
var e = this.transformSelector(p.replace(RegExp("&", "g"), l.selector));
|
|
1876
|
+
Zs(e, l.selector);
|
|
1877
|
+
var z = {
|
|
1878
|
+
selector: e,
|
|
1879
|
+
rule: N(h, B)
|
|
1880
|
+
};
|
|
1881
|
+
g ? this.addConditionalRule(z, g) : this.addRule(z);
|
|
1882
|
+
var n = {
|
|
1883
|
+
type: "selector",
|
|
1884
|
+
selector: e,
|
|
1885
|
+
rule: h
|
|
1886
|
+
};
|
|
1887
|
+
this.transformLayer(n, h["@layer"], g), this.transformSupports(n, h["@supports"], g), this.transformMedia(n, h["@media"], g);
|
|
1888
|
+
});
|
|
1889
|
+
}
|
|
1890
|
+
transformMedia(l, t) {
|
|
1891
|
+
var g = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
1892
|
+
if (t) {
|
|
1893
|
+
var h;
|
|
1894
|
+
(h = this.currConditionalRuleset) === null || h === void 0 || h.addConditionPrecedence(g, Object.keys(t).map((o) => "@media ".concat(o)));
|
|
1895
|
+
for (var [p, e] of Object.entries(t)) {
|
|
1896
|
+
var z = "@media ".concat(p);
|
|
1897
|
+
tt(z);
|
|
1898
|
+
var n = [...g, z];
|
|
1899
|
+
this.addConditionalRule({
|
|
1900
|
+
selector: l.selector,
|
|
1901
|
+
rule: N(e, B)
|
|
1902
|
+
}, n), l.type === "local" && (this.transformSimplePseudos(l, e, n), this.transformSelectors(l, e, n)), this.transformLayer(l, e["@layer"], n), this.transformSupports(l, e["@supports"], n), this.transformContainer(l, e["@container"], n);
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
transformContainer(l, t) {
|
|
1907
|
+
var g = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
1908
|
+
if (t) {
|
|
1909
|
+
var h;
|
|
1910
|
+
(h = this.currConditionalRuleset) === null || h === void 0 || h.addConditionPrecedence(g, Object.keys(t).map((p) => "@container ".concat(p))), $(t, (p, e) => {
|
|
1911
|
+
var z = "@container ".concat(e), n = [...g, z];
|
|
1912
|
+
this.addConditionalRule({
|
|
1913
|
+
selector: l.selector,
|
|
1914
|
+
rule: N(p, B)
|
|
1915
|
+
}, n), l.type === "local" && (this.transformSimplePseudos(l, p, n), this.transformSelectors(l, p, n)), this.transformLayer(l, p["@layer"], n), this.transformSupports(l, p["@supports"], n), this.transformMedia(l, p["@media"], n);
|
|
1916
|
+
});
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
transformLayer(l, t) {
|
|
1920
|
+
var g = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
1921
|
+
if (t) {
|
|
1922
|
+
var h;
|
|
1923
|
+
(h = this.currConditionalRuleset) === null || h === void 0 || h.addConditionPrecedence(g, Object.keys(t).map((p) => "@layer ".concat(p))), $(t, (p, e) => {
|
|
1924
|
+
var z = [...g, "@layer ".concat(e)];
|
|
1925
|
+
this.addLayer(z), this.addConditionalRule({
|
|
1926
|
+
selector: l.selector,
|
|
1927
|
+
rule: N(p, B)
|
|
1928
|
+
}, z), l.type === "local" && (this.transformSimplePseudos(l, p, z), this.transformSelectors(l, p, z)), this.transformMedia(l, p["@media"], z), this.transformSupports(l, p["@supports"], z), this.transformContainer(l, p["@container"], z);
|
|
1929
|
+
});
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
transformSupports(l, t) {
|
|
1933
|
+
var g = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
1934
|
+
if (t) {
|
|
1935
|
+
var h;
|
|
1936
|
+
(h = this.currConditionalRuleset) === null || h === void 0 || h.addConditionPrecedence(g, Object.keys(t).map((p) => "@supports ".concat(p))), $(t, (p, e) => {
|
|
1937
|
+
var z = [...g, "@supports ".concat(e)];
|
|
1938
|
+
this.addConditionalRule({
|
|
1939
|
+
selector: l.selector,
|
|
1940
|
+
rule: N(p, B)
|
|
1941
|
+
}, z), l.type === "local" && (this.transformSimplePseudos(l, p, z), this.transformSelectors(l, p, z)), this.transformLayer(l, p["@layer"], z), this.transformMedia(l, p["@media"], z), this.transformContainer(l, p["@container"], z);
|
|
1942
|
+
});
|
|
1943
|
+
}
|
|
1944
|
+
}
|
|
1945
|
+
transformSimplePseudos(l, t, g) {
|
|
1946
|
+
for (var h of Object.keys(t))
|
|
1947
|
+
if (st[h]) {
|
|
1948
|
+
if (l.type !== "local")
|
|
1949
|
+
throw new Error("Simple pseudos are not valid in ".concat(l.type === "global" ? '"globalStyle"' : '"selectors"'));
|
|
1950
|
+
g ? this.addConditionalRule({
|
|
1951
|
+
selector: "".concat(l.selector).concat(h),
|
|
1952
|
+
rule: t[h]
|
|
1953
|
+
}, g) : this.addRule({
|
|
1954
|
+
conditions: g,
|
|
1955
|
+
selector: "".concat(l.selector).concat(h),
|
|
1956
|
+
rule: t[h]
|
|
1957
|
+
});
|
|
1958
|
+
}
|
|
1959
|
+
}
|
|
1960
|
+
toCss() {
|
|
1961
|
+
var l = [];
|
|
1962
|
+
for (var t of this.fontFaceRules)
|
|
1963
|
+
l.push(T({
|
|
1964
|
+
"@font-face": t
|
|
1965
|
+
}));
|
|
1966
|
+
for (var g of this.keyframesRules)
|
|
1967
|
+
l.push(T({
|
|
1968
|
+
["@keyframes ".concat(g.name)]: g.rule
|
|
1969
|
+
}));
|
|
1970
|
+
for (var h of this.layers.values()) {
|
|
1971
|
+
var [p, ...e] = h.reverse(), z = {
|
|
1972
|
+
[p]: Ml
|
|
1973
|
+
};
|
|
1974
|
+
for (var n of e)
|
|
1975
|
+
z = {
|
|
1976
|
+
[n]: z
|
|
1977
|
+
};
|
|
1978
|
+
l.push(T(z));
|
|
1979
|
+
}
|
|
1980
|
+
for (var o of this.rules)
|
|
1981
|
+
l.push(T({
|
|
1982
|
+
[o.selector]: o.rule
|
|
1983
|
+
}));
|
|
1984
|
+
for (var a of this.conditionalRulesets)
|
|
1985
|
+
for (var i of a.renderToArray())
|
|
1986
|
+
l.push(T(i));
|
|
1987
|
+
return l.filter(Boolean);
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
function T(s) {
|
|
1991
|
+
var l = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "", t = [], g = function(p) {
|
|
1992
|
+
var e = s[p];
|
|
1993
|
+
if (e && Array.isArray(e))
|
|
1994
|
+
t.push(...e.map((n) => T({
|
|
1995
|
+
[p]: n
|
|
1996
|
+
}, l)));
|
|
1997
|
+
else if (e && typeof e == "object") {
|
|
1998
|
+
var z = Object.keys(e).length === 0;
|
|
1999
|
+
z || t.push("".concat(l).concat(p, ` {
|
|
2000
|
+
`).concat(T(e, l + nt), `
|
|
2001
|
+
`).concat(l, "}"));
|
|
2002
|
+
} else e === Ml ? t.push("".concat(l).concat(p, ";")) : t.push("".concat(l).concat(p.startsWith("--") ? p : zt(p), ": ").concat(e, ";"));
|
|
2003
|
+
};
|
|
2004
|
+
for (var h of Object.keys(s))
|
|
2005
|
+
g(h);
|
|
2006
|
+
return t.join(`
|
|
2007
|
+
`);
|
|
2008
|
+
}
|
|
2009
|
+
function at(s) {
|
|
2010
|
+
var {
|
|
2011
|
+
localClassNames: l,
|
|
2012
|
+
cssObjs: t,
|
|
2013
|
+
composedClassLists: g
|
|
2014
|
+
} = s, h = new ot(l, g);
|
|
2015
|
+
for (var p of t)
|
|
2016
|
+
h.processCssObj(p);
|
|
2017
|
+
return h.toCss();
|
|
2018
|
+
}
|
|
2019
|
+
var dt = function(s) {
|
|
2020
|
+
return it(s) && !mt(s);
|
|
2021
|
+
};
|
|
2022
|
+
function it(s) {
|
|
2023
|
+
return !!s && typeof s == "object";
|
|
2024
|
+
}
|
|
2025
|
+
function mt(s) {
|
|
2026
|
+
var l = Object.prototype.toString.call(s);
|
|
2027
|
+
return l === "[object RegExp]" || l === "[object Date]" || ct(s);
|
|
2028
|
+
}
|
|
2029
|
+
var rt = typeof Symbol == "function" && Symbol.for, ut = rt ? Symbol.for("react.element") : 60103;
|
|
2030
|
+
function ct(s) {
|
|
2031
|
+
return s.$$typeof === ut;
|
|
2032
|
+
}
|
|
2033
|
+
function xt(s) {
|
|
2034
|
+
return Array.isArray(s) ? [] : {};
|
|
2035
|
+
}
|
|
2036
|
+
function _(s, l) {
|
|
2037
|
+
return l.clone !== !1 && l.isMergeableObject(s) ? U(xt(s), s, l) : s;
|
|
2038
|
+
}
|
|
2039
|
+
function ft(s, l, t) {
|
|
2040
|
+
return s.concat(l).map(function(g) {
|
|
2041
|
+
return _(g, t);
|
|
2042
|
+
});
|
|
2043
|
+
}
|
|
2044
|
+
function Ct(s, l) {
|
|
2045
|
+
if (!l.customMerge)
|
|
2046
|
+
return U;
|
|
2047
|
+
var t = l.customMerge(s);
|
|
2048
|
+
return typeof t == "function" ? t : U;
|
|
2049
|
+
}
|
|
2050
|
+
function vt(s) {
|
|
2051
|
+
return Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(s).filter(function(l) {
|
|
2052
|
+
return Object.propertyIsEnumerable.call(s, l);
|
|
2053
|
+
}) : [];
|
|
2054
|
+
}
|
|
2055
|
+
function ql(s) {
|
|
2056
|
+
return Object.keys(s).concat(vt(s));
|
|
2057
|
+
}
|
|
2058
|
+
function Wl(s, l) {
|
|
2059
|
+
try {
|
|
2060
|
+
return l in s;
|
|
2061
|
+
} catch {
|
|
2062
|
+
return !1;
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
function yt(s, l) {
|
|
2066
|
+
return Wl(s, l) && !(Object.hasOwnProperty.call(s, l) && Object.propertyIsEnumerable.call(s, l));
|
|
2067
|
+
}
|
|
2068
|
+
function kt(s, l, t) {
|
|
2069
|
+
var g = {};
|
|
2070
|
+
return t.isMergeableObject(s) && ql(s).forEach(function(h) {
|
|
2071
|
+
g[h] = _(s[h], t);
|
|
2072
|
+
}), ql(l).forEach(function(h) {
|
|
2073
|
+
yt(s, h) || (Wl(s, h) && t.isMergeableObject(l[h]) ? g[h] = Ct(h, t)(s[h], l[h], t) : g[h] = _(l[h], t));
|
|
2074
|
+
}), g;
|
|
2075
|
+
}
|
|
2076
|
+
function U(s, l, t) {
|
|
2077
|
+
t = t || {}, t.arrayMerge = t.arrayMerge || ft, t.isMergeableObject = t.isMergeableObject || dt, t.cloneUnlessOtherwiseSpecified = _;
|
|
2078
|
+
var g = Array.isArray(l), h = Array.isArray(s), p = g === h;
|
|
2079
|
+
return p ? g ? t.arrayMerge(s, l, t) : kt(s, l, t) : _(l, t);
|
|
2080
|
+
}
|
|
2081
|
+
U.all = function(s, l) {
|
|
2082
|
+
if (!Array.isArray(s))
|
|
2083
|
+
throw new Error("first argument should be an array");
|
|
2084
|
+
return s.reduce(function(t, g) {
|
|
2085
|
+
return U(t, g, l);
|
|
2086
|
+
}, {});
|
|
2087
|
+
};
|
|
2088
|
+
var Al = /* @__PURE__ */ new Set(), Ol = [], zl = [], bt = {
|
|
2089
|
+
appendCss: (s) => {
|
|
2090
|
+
zl.push(s);
|
|
384
2091
|
},
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
type: "flex-direction",
|
|
388
|
-
valueType: "static"
|
|
2092
|
+
registerClassName: (s) => {
|
|
2093
|
+
Al.add(s);
|
|
389
2094
|
},
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
type: "align-items",
|
|
393
|
-
valueType: "static"
|
|
2095
|
+
registerComposition: (s) => {
|
|
2096
|
+
Ol.push(s);
|
|
394
2097
|
},
|
|
395
|
-
|
|
396
|
-
rule: "justify-content",
|
|
397
|
-
type: "justify-content",
|
|
398
|
-
valueType: "static"
|
|
2098
|
+
markCompositionUsed: () => {
|
|
399
2099
|
},
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
2100
|
+
onEndFileScope: (s) => {
|
|
2101
|
+
var l = at({
|
|
2102
|
+
localClassNames: Array.from(Al),
|
|
2103
|
+
composedClassLists: Ol,
|
|
2104
|
+
cssObjs: zl
|
|
2105
|
+
}).join(`
|
|
2106
|
+
`);
|
|
2107
|
+
gs({
|
|
2108
|
+
fileScope: s,
|
|
2109
|
+
css: l
|
|
2110
|
+
}), zl = [];
|
|
404
2111
|
},
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
2112
|
+
getIdentOption: () => process.env.NODE_ENV === "production" ? "short" : "debug"
|
|
2113
|
+
};
|
|
2114
|
+
cs(bt);
|
|
2115
|
+
const $l = ({
|
|
2116
|
+
props: s,
|
|
2117
|
+
stylePropsFn: l
|
|
2118
|
+
}) => {
|
|
2119
|
+
const t = E.useMemo(() => s, [s]), g = E.useMemo(() => {
|
|
2120
|
+
const p = l.properties, e = {}, z = {};
|
|
2121
|
+
return t ? (Object.keys(t).forEach((n) => {
|
|
2122
|
+
const o = n;
|
|
2123
|
+
p.has(o) && Object.assign(e, {
|
|
2124
|
+
[o]: t[o]
|
|
2125
|
+
}), p.has(o) || Object.assign(z, {
|
|
2126
|
+
[o]: t[o]
|
|
2127
|
+
});
|
|
2128
|
+
}), { styleProps: e, componentProps: z }) : { styleProps: e, componentProps: z };
|
|
2129
|
+
}, [t, l == null ? void 0 : l.properties]), h = E.useMemo(() => l(g.styleProps), [g.styleProps, l]);
|
|
2130
|
+
return {
|
|
2131
|
+
styleProps: g.styleProps,
|
|
2132
|
+
componentProps: g.componentProps,
|
|
2133
|
+
styleClassName: h
|
|
2134
|
+
};
|
|
2135
|
+
};
|
|
2136
|
+
function wt(s, l) {
|
|
2137
|
+
if (typeof s != "object" || !s) return s;
|
|
2138
|
+
var t = s[Symbol.toPrimitive];
|
|
2139
|
+
if (t !== void 0) {
|
|
2140
|
+
var g = t.call(s, l || "default");
|
|
2141
|
+
if (typeof g != "object") return g;
|
|
2142
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
2143
|
+
}
|
|
2144
|
+
return (l === "string" ? String : Number)(s);
|
|
2145
|
+
}
|
|
2146
|
+
function jt(s) {
|
|
2147
|
+
var l = wt(s, "string");
|
|
2148
|
+
return typeof l == "symbol" ? l : String(l);
|
|
2149
|
+
}
|
|
2150
|
+
function qt(s, l, t) {
|
|
2151
|
+
return l = jt(l), l in s ? Object.defineProperty(s, l, {
|
|
2152
|
+
value: t,
|
|
2153
|
+
enumerable: !0,
|
|
2154
|
+
configurable: !0,
|
|
2155
|
+
writable: !0
|
|
2156
|
+
}) : s[l] = t, s;
|
|
2157
|
+
}
|
|
2158
|
+
function El(s, l) {
|
|
2159
|
+
var t = Object.keys(s);
|
|
2160
|
+
if (Object.getOwnPropertySymbols) {
|
|
2161
|
+
var g = Object.getOwnPropertySymbols(s);
|
|
2162
|
+
l && (g = g.filter(function(h) {
|
|
2163
|
+
return Object.getOwnPropertyDescriptor(s, h).enumerable;
|
|
2164
|
+
})), t.push.apply(t, g);
|
|
409
2165
|
}
|
|
410
|
-
|
|
411
|
-
|
|
2166
|
+
return t;
|
|
2167
|
+
}
|
|
2168
|
+
function el(s) {
|
|
2169
|
+
for (var l = 1; l < arguments.length; l++) {
|
|
2170
|
+
var t = arguments[l] != null ? arguments[l] : {};
|
|
2171
|
+
l % 2 ? El(Object(t), !0).forEach(function(g) {
|
|
2172
|
+
qt(s, g, t[g]);
|
|
2173
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(s, Object.getOwnPropertyDescriptors(t)) : El(Object(t)).forEach(function(g) {
|
|
2174
|
+
Object.defineProperty(s, g, Object.getOwnPropertyDescriptor(t, g));
|
|
2175
|
+
});
|
|
2176
|
+
}
|
|
2177
|
+
return s;
|
|
2178
|
+
}
|
|
2179
|
+
var At = (s) => function() {
|
|
2180
|
+
for (var l = arguments.length, t = new Array(l), g = 0; g < l; g++)
|
|
2181
|
+
t[g] = arguments[g];
|
|
2182
|
+
var h = Object.assign({}, ...t.map((n) => n.styles)), p = Object.keys(h), e = p.filter((n) => "mappings" in h[n]), z = (n) => {
|
|
2183
|
+
var o = [], a = {}, i = el({}, n), u = !1;
|
|
2184
|
+
for (var r of e) {
|
|
2185
|
+
var m = n[r];
|
|
2186
|
+
if (m != null) {
|
|
2187
|
+
var d = h[r];
|
|
2188
|
+
u = !0;
|
|
2189
|
+
for (var b of d.mappings)
|
|
2190
|
+
a[b] = m, i[b] == null && delete i[b];
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2193
|
+
var v = u ? el(el({}, a), i) : n, y = function() {
|
|
2194
|
+
var x = v[f], c = h[f];
|
|
2195
|
+
try {
|
|
2196
|
+
if (c.mappings)
|
|
2197
|
+
return 1;
|
|
2198
|
+
if (typeof x == "string" || typeof x == "number") {
|
|
2199
|
+
if (process.env.NODE_ENV !== "production" && !c.values[x].defaultClass)
|
|
2200
|
+
throw new Error();
|
|
2201
|
+
o.push(c.values[x].defaultClass);
|
|
2202
|
+
} else if (Array.isArray(x))
|
|
2203
|
+
for (var w = 0; w < x.length; w++) {
|
|
2204
|
+
var j = x[w];
|
|
2205
|
+
if (j != null) {
|
|
2206
|
+
var R = c.responsiveArray[w];
|
|
2207
|
+
if (process.env.NODE_ENV !== "production" && !c.values[j].conditions[R])
|
|
2208
|
+
throw new Error();
|
|
2209
|
+
o.push(c.values[j].conditions[R]);
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
else
|
|
2213
|
+
for (var L in x) {
|
|
2214
|
+
var S = x[L];
|
|
2215
|
+
if (S != null) {
|
|
2216
|
+
if (process.env.NODE_ENV !== "production" && !c.values[S].conditions[L])
|
|
2217
|
+
throw new Error();
|
|
2218
|
+
o.push(c.values[S].conditions[L]);
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
} catch (Yl) {
|
|
2222
|
+
if (process.env.NODE_ENV !== "production") {
|
|
2223
|
+
class P extends Error {
|
|
2224
|
+
constructor(gl) {
|
|
2225
|
+
super(gl), this.name = "SprinklesError";
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
var D = (I) => typeof I == "string" ? '"'.concat(I, '"') : I, sl = (I, gl, Jl) => {
|
|
2229
|
+
throw new P('"'.concat(I, '" has no value ').concat(D(gl), ". Possible values are ").concat(Object.keys(Jl).map(D).join(", ")));
|
|
2230
|
+
};
|
|
2231
|
+
if (!c)
|
|
2232
|
+
throw new P('"'.concat(f, '" is not a valid sprinkle'));
|
|
2233
|
+
if ((typeof x == "string" || typeof x == "number") && (x in c.values || sl(f, x, c.values), !c.values[x].defaultClass))
|
|
2234
|
+
throw new P('"'.concat(f, '" has no default condition. You must specify which conditions to target explicitly. Possible options are ').concat(Object.keys(c.values[x].conditions).map(D).join(", ")));
|
|
2235
|
+
if (typeof x == "object") {
|
|
2236
|
+
if (!("conditions" in c.values[Object.keys(c.values)[0]]))
|
|
2237
|
+
throw new P('"'.concat(f, '" is not a conditional property'));
|
|
2238
|
+
if (Array.isArray(x)) {
|
|
2239
|
+
if (!("responsiveArray" in c))
|
|
2240
|
+
throw new P('"'.concat(f, '" does not support responsive arrays'));
|
|
2241
|
+
var dl = c.responsiveArray.length;
|
|
2242
|
+
if (dl < x.length)
|
|
2243
|
+
throw new P('"'.concat(f, '" only supports up to ').concat(dl, " breakpoints. You passed ").concat(x.length));
|
|
2244
|
+
for (var il of x)
|
|
2245
|
+
c.values[il] || sl(f, il, c.values);
|
|
2246
|
+
} else
|
|
2247
|
+
for (var tl in x) {
|
|
2248
|
+
var M = x[tl];
|
|
2249
|
+
if (M != null && (c.values[M] || sl(f, M, c.values), !c.values[M].conditions[tl]))
|
|
2250
|
+
throw new P('"'.concat(f, '" has no condition named ').concat(D(tl), ". Possible values are ").concat(Object.keys(c.values[M].conditions).map(D).join(", ")));
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
}
|
|
2254
|
+
throw Yl;
|
|
2255
|
+
}
|
|
2256
|
+
};
|
|
2257
|
+
for (var f in v)
|
|
2258
|
+
y();
|
|
2259
|
+
return s(o.join(" "));
|
|
2260
|
+
};
|
|
2261
|
+
return Object.assign(z, {
|
|
2262
|
+
properties: new Set(p)
|
|
2263
|
+
});
|
|
2264
|
+
}, Ot = (s) => s, Fl = function() {
|
|
2265
|
+
return At(Ot)(...arguments);
|
|
2266
|
+
}, Et = Fl(function() {
|
|
2267
|
+
var s = { conditions: { defaultCondition: "sm", conditionNames: ["sm", "md", "lg", "xl", "2xl"], responsiveArray: ["sm", "md", "lg", "xl", "2xl"] }, styles: { bg: { mappings: ["backgroundColor"] }, borderBottom: { mappings: ["borderBottomWidth"] }, borderLeft: { mappings: ["borderLeftWidth"] }, borderRight: { mappings: ["borderRightWidth"] }, borderTop: { mappings: ["borderTopWidth"] }, borderX: { mappings: ["borderLeftWidth", "borderRightWidth"] }, borderY: { mappings: ["borderTopWidth", "borderBottomWidth"] }, h: { mappings: ["height"] }, m: { mappings: ["margin"] }, maxH: { mappings: ["maxHeight"] }, maxW: { mappings: ["maxWidth"] }, mb: { mappings: ["marginBottom"] }, ml: { mappings: ["marginLeft"] }, mr: { mappings: ["marginRight"] }, mt: { mappings: ["marginTop"] }, mx: { mappings: ["marginLeft", "marginRight"] }, my: { mappings: ["marginTop", "marginBottom"] }, p: { mappings: ["padding"] }, pb: { mappings: ["paddingBottom"] }, pl: { mappings: ["paddingLeft"] }, pr: { mappings: ["paddingRight"] }, pt: { mappings: ["paddingTop"] }, px: { mappings: ["paddingLeft", "paddingRight"] }, py: { mappings: ["paddingTop", "paddingBottom"] }, rounded: { mappings: ["borderRadius"] }, roundedBottom: { mappings: ["borderRadiusBottomRight", "borderRadiusBottomLeft"] }, roundedBottomLeft: { mappings: ["borderRadiusBottomLeft"] }, roundedBottomRight: { mappings: ["borderRadiusBottomRight"] }, roundedLeft: { mappings: ["borderRadiusTopLeft", "borderRadiusBottomLeft"] }, roundedRight: { mappings: ["borderRadiusTopRight", "borderRadiusBottomRight"] }, roundedTop: { mappings: ["borderRadiusTopLeft", "borderRadiusTopRight"] }, roundedTopLeft: { mappings: ["borderRadiusTopLeft"] }, roundedTopRight: { mappings: ["borderRadiusTopRight"] }, shadow: { mappings: ["boxShadow"] }, w: { mappings: ["width"] }, backgroundColor: { values: { transparent: { conditions: { sm: "tgph-12lz8s40", md: "tgph-12lz8s41", lg: "tgph-12lz8s42", xl: "tgph-12lz8s43", "2xl": "tgph-12lz8s44" }, defaultClass: "tgph-12lz8s40" }, white: { conditions: { sm: "tgph-12lz8s45", md: "tgph-12lz8s46", lg: "tgph-12lz8s47", xl: "tgph-12lz8s48", "2xl": "tgph-12lz8s49" }, defaultClass: "tgph-12lz8s45" }, black: { conditions: { sm: "tgph-12lz8s4a", md: "tgph-12lz8s4b", lg: "tgph-12lz8s4c", xl: "tgph-12lz8s4d", "2xl": "tgph-12lz8s4e" }, defaultClass: "tgph-12lz8s4a" }, "surface-1": { conditions: { sm: "tgph-12lz8s4f", md: "tgph-12lz8s4g", lg: "tgph-12lz8s4h", xl: "tgph-12lz8s4i", "2xl": "tgph-12lz8s4j" }, defaultClass: "tgph-12lz8s4f" }, "surface-2": { conditions: { sm: "tgph-12lz8s4k", md: "tgph-12lz8s4l", lg: "tgph-12lz8s4m", xl: "tgph-12lz8s4n", "2xl": "tgph-12lz8s4o" }, defaultClass: "tgph-12lz8s4k" }, "alpha-white-1": { conditions: { sm: "tgph-12lz8s4p", md: "tgph-12lz8s4q", lg: "tgph-12lz8s4r", xl: "tgph-12lz8s4s", "2xl": "tgph-12lz8s4t" }, defaultClass: "tgph-12lz8s4p" }, "alpha-white-2": { conditions: { sm: "tgph-12lz8s4u", md: "tgph-12lz8s4v", lg: "tgph-12lz8s4w", xl: "tgph-12lz8s4x", "2xl": "tgph-12lz8s4y" }, defaultClass: "tgph-12lz8s4u" }, "alpha-white-3": { conditions: { sm: "tgph-12lz8s4z", md: "tgph-12lz8s410", lg: "tgph-12lz8s411", xl: "tgph-12lz8s412", "2xl": "tgph-12lz8s413" }, defaultClass: "tgph-12lz8s4z" }, "alpha-white-4": { conditions: { sm: "tgph-12lz8s414", md: "tgph-12lz8s415", lg: "tgph-12lz8s416", xl: "tgph-12lz8s417", "2xl": "tgph-12lz8s418" }, defaultClass: "tgph-12lz8s414" }, "alpha-white-5": { conditions: { sm: "tgph-12lz8s419", md: "tgph-12lz8s41a", lg: "tgph-12lz8s41b", xl: "tgph-12lz8s41c", "2xl": "tgph-12lz8s41d" }, defaultClass: "tgph-12lz8s419" }, "alpha-white-6": { conditions: { sm: "tgph-12lz8s41e", md: "tgph-12lz8s41f", lg: "tgph-12lz8s41g", xl: "tgph-12lz8s41h", "2xl": "tgph-12lz8s41i" }, defaultClass: "tgph-12lz8s41e" }, "alpha-white-7": { conditions: { sm: "tgph-12lz8s41j", md: "tgph-12lz8s41k", lg: "tgph-12lz8s41l", xl: "tgph-12lz8s41m", "2xl": "tgph-12lz8s41n" }, defaultClass: "tgph-12lz8s41j" }, "alpha-white-8": { conditions: { sm: "tgph-12lz8s41o", md: "tgph-12lz8s41p", lg: "tgph-12lz8s41q", xl: "tgph-12lz8s41r", "2xl": "tgph-12lz8s41s" }, defaultClass: "tgph-12lz8s41o" }, "alpha-white-9": { conditions: { sm: "tgph-12lz8s41t", md: "tgph-12lz8s41u", lg: "tgph-12lz8s41v", xl: "tgph-12lz8s41w", "2xl": "tgph-12lz8s41x" }, defaultClass: "tgph-12lz8s41t" }, "alpha-white-10": { conditions: { sm: "tgph-12lz8s41y", md: "tgph-12lz8s41z", lg: "tgph-12lz8s420", xl: "tgph-12lz8s421", "2xl": "tgph-12lz8s422" }, defaultClass: "tgph-12lz8s41y" }, "alpha-white-11": { conditions: { sm: "tgph-12lz8s423", md: "tgph-12lz8s424", lg: "tgph-12lz8s425", xl: "tgph-12lz8s426", "2xl": "tgph-12lz8s427" }, defaultClass: "tgph-12lz8s423" }, "alpha-white-12": { conditions: { sm: "tgph-12lz8s428", md: "tgph-12lz8s429", lg: "tgph-12lz8s42a", xl: "tgph-12lz8s42b", "2xl": "tgph-12lz8s42c" }, defaultClass: "tgph-12lz8s428" }, "alpha-black-1": { conditions: { sm: "tgph-12lz8s42d", md: "tgph-12lz8s42e", lg: "tgph-12lz8s42f", xl: "tgph-12lz8s42g", "2xl": "tgph-12lz8s42h" }, defaultClass: "tgph-12lz8s42d" }, "alpha-black-2": { conditions: { sm: "tgph-12lz8s42i", md: "tgph-12lz8s42j", lg: "tgph-12lz8s42k", xl: "tgph-12lz8s42l", "2xl": "tgph-12lz8s42m" }, defaultClass: "tgph-12lz8s42i" }, "alpha-black-3": { conditions: { sm: "tgph-12lz8s42n", md: "tgph-12lz8s42o", lg: "tgph-12lz8s42p", xl: "tgph-12lz8s42q", "2xl": "tgph-12lz8s42r" }, defaultClass: "tgph-12lz8s42n" }, "alpha-black-4": { conditions: { sm: "tgph-12lz8s42s", md: "tgph-12lz8s42t", lg: "tgph-12lz8s42u", xl: "tgph-12lz8s42v", "2xl": "tgph-12lz8s42w" }, defaultClass: "tgph-12lz8s42s" }, "alpha-black-5": { conditions: { sm: "tgph-12lz8s42x", md: "tgph-12lz8s42y", lg: "tgph-12lz8s42z", xl: "tgph-12lz8s430", "2xl": "tgph-12lz8s431" }, defaultClass: "tgph-12lz8s42x" }, "alpha-black-6": { conditions: { sm: "tgph-12lz8s432", md: "tgph-12lz8s433", lg: "tgph-12lz8s434", xl: "tgph-12lz8s435", "2xl": "tgph-12lz8s436" }, defaultClass: "tgph-12lz8s432" }, "alpha-black-7": { conditions: { sm: "tgph-12lz8s437", md: "tgph-12lz8s438", lg: "tgph-12lz8s439", xl: "tgph-12lz8s43a", "2xl": "tgph-12lz8s43b" }, defaultClass: "tgph-12lz8s437" }, "alpha-black-8": { conditions: { sm: "tgph-12lz8s43c", md: "tgph-12lz8s43d", lg: "tgph-12lz8s43e", xl: "tgph-12lz8s43f", "2xl": "tgph-12lz8s43g" }, defaultClass: "tgph-12lz8s43c" }, "alpha-black-9": { conditions: { sm: "tgph-12lz8s43h", md: "tgph-12lz8s43i", lg: "tgph-12lz8s43j", xl: "tgph-12lz8s43k", "2xl": "tgph-12lz8s43l" }, defaultClass: "tgph-12lz8s43h" }, "alpha-black-10": { conditions: { sm: "tgph-12lz8s43m", md: "tgph-12lz8s43n", lg: "tgph-12lz8s43o", xl: "tgph-12lz8s43p", "2xl": "tgph-12lz8s43q" }, defaultClass: "tgph-12lz8s43m" }, "alpha-black-11": { conditions: { sm: "tgph-12lz8s43r", md: "tgph-12lz8s43s", lg: "tgph-12lz8s43t", xl: "tgph-12lz8s43u", "2xl": "tgph-12lz8s43v" }, defaultClass: "tgph-12lz8s43r" }, "alpha-black-12": { conditions: { sm: "tgph-12lz8s43w", md: "tgph-12lz8s43x", lg: "tgph-12lz8s43y", xl: "tgph-12lz8s43z", "2xl": "tgph-12lz8s440" }, defaultClass: "tgph-12lz8s43w" }, "gray-1": { conditions: { sm: "tgph-12lz8s441", md: "tgph-12lz8s442", lg: "tgph-12lz8s443", xl: "tgph-12lz8s444", "2xl": "tgph-12lz8s445" }, defaultClass: "tgph-12lz8s441" }, "gray-2": { conditions: { sm: "tgph-12lz8s446", md: "tgph-12lz8s447", lg: "tgph-12lz8s448", xl: "tgph-12lz8s449", "2xl": "tgph-12lz8s44a" }, defaultClass: "tgph-12lz8s446" }, "gray-3": { conditions: { sm: "tgph-12lz8s44b", md: "tgph-12lz8s44c", lg: "tgph-12lz8s44d", xl: "tgph-12lz8s44e", "2xl": "tgph-12lz8s44f" }, defaultClass: "tgph-12lz8s44b" }, "gray-4": { conditions: { sm: "tgph-12lz8s44g", md: "tgph-12lz8s44h", lg: "tgph-12lz8s44i", xl: "tgph-12lz8s44j", "2xl": "tgph-12lz8s44k" }, defaultClass: "tgph-12lz8s44g" }, "gray-5": { conditions: { sm: "tgph-12lz8s44l", md: "tgph-12lz8s44m", lg: "tgph-12lz8s44n", xl: "tgph-12lz8s44o", "2xl": "tgph-12lz8s44p" }, defaultClass: "tgph-12lz8s44l" }, "gray-6": { conditions: { sm: "tgph-12lz8s44q", md: "tgph-12lz8s44r", lg: "tgph-12lz8s44s", xl: "tgph-12lz8s44t", "2xl": "tgph-12lz8s44u" }, defaultClass: "tgph-12lz8s44q" }, "gray-7": { conditions: { sm: "tgph-12lz8s44v", md: "tgph-12lz8s44w", lg: "tgph-12lz8s44x", xl: "tgph-12lz8s44y", "2xl": "tgph-12lz8s44z" }, defaultClass: "tgph-12lz8s44v" }, "gray-8": { conditions: { sm: "tgph-12lz8s450", md: "tgph-12lz8s451", lg: "tgph-12lz8s452", xl: "tgph-12lz8s453", "2xl": "tgph-12lz8s454" }, defaultClass: "tgph-12lz8s450" }, "gray-9": { conditions: { sm: "tgph-12lz8s455", md: "tgph-12lz8s456", lg: "tgph-12lz8s457", xl: "tgph-12lz8s458", "2xl": "tgph-12lz8s459" }, defaultClass: "tgph-12lz8s455" }, "gray-10": { conditions: { sm: "tgph-12lz8s45a", md: "tgph-12lz8s45b", lg: "tgph-12lz8s45c", xl: "tgph-12lz8s45d", "2xl": "tgph-12lz8s45e" }, defaultClass: "tgph-12lz8s45a" }, "gray-11": { conditions: { sm: "tgph-12lz8s45f", md: "tgph-12lz8s45g", lg: "tgph-12lz8s45h", xl: "tgph-12lz8s45i", "2xl": "tgph-12lz8s45j" }, defaultClass: "tgph-12lz8s45f" }, "gray-12": { conditions: { sm: "tgph-12lz8s45k", md: "tgph-12lz8s45l", lg: "tgph-12lz8s45m", xl: "tgph-12lz8s45n", "2xl": "tgph-12lz8s45o" }, defaultClass: "tgph-12lz8s45k" }, "beige-1": { conditions: { sm: "tgph-12lz8s45p", md: "tgph-12lz8s45q", lg: "tgph-12lz8s45r", xl: "tgph-12lz8s45s", "2xl": "tgph-12lz8s45t" }, defaultClass: "tgph-12lz8s45p" }, "beige-2": { conditions: { sm: "tgph-12lz8s45u", md: "tgph-12lz8s45v", lg: "tgph-12lz8s45w", xl: "tgph-12lz8s45x", "2xl": "tgph-12lz8s45y" }, defaultClass: "tgph-12lz8s45u" }, "beige-3": { conditions: { sm: "tgph-12lz8s45z", md: "tgph-12lz8s460", lg: "tgph-12lz8s461", xl: "tgph-12lz8s462", "2xl": "tgph-12lz8s463" }, defaultClass: "tgph-12lz8s45z" }, "beige-4": { conditions: { sm: "tgph-12lz8s464", md: "tgph-12lz8s465", lg: "tgph-12lz8s466", xl: "tgph-12lz8s467", "2xl": "tgph-12lz8s468" }, defaultClass: "tgph-12lz8s464" }, "beige-5": { conditions: { sm: "tgph-12lz8s469", md: "tgph-12lz8s46a", lg: "tgph-12lz8s46b", xl: "tgph-12lz8s46c", "2xl": "tgph-12lz8s46d" }, defaultClass: "tgph-12lz8s469" }, "beige-6": { conditions: { sm: "tgph-12lz8s46e", md: "tgph-12lz8s46f", lg: "tgph-12lz8s46g", xl: "tgph-12lz8s46h", "2xl": "tgph-12lz8s46i" }, defaultClass: "tgph-12lz8s46e" }, "beige-7": { conditions: { sm: "tgph-12lz8s46j", md: "tgph-12lz8s46k", lg: "tgph-12lz8s46l", xl: "tgph-12lz8s46m", "2xl": "tgph-12lz8s46n" }, defaultClass: "tgph-12lz8s46j" }, "beige-8": { conditions: { sm: "tgph-12lz8s46o", md: "tgph-12lz8s46p", lg: "tgph-12lz8s46q", xl: "tgph-12lz8s46r", "2xl": "tgph-12lz8s46s" }, defaultClass: "tgph-12lz8s46o" }, "beige-9": { conditions: { sm: "tgph-12lz8s46t", md: "tgph-12lz8s46u", lg: "tgph-12lz8s46v", xl: "tgph-12lz8s46w", "2xl": "tgph-12lz8s46x" }, defaultClass: "tgph-12lz8s46t" }, "beige-10": { conditions: { sm: "tgph-12lz8s46y", md: "tgph-12lz8s46z", lg: "tgph-12lz8s470", xl: "tgph-12lz8s471", "2xl": "tgph-12lz8s472" }, defaultClass: "tgph-12lz8s46y" }, "beige-11": { conditions: { sm: "tgph-12lz8s473", md: "tgph-12lz8s474", lg: "tgph-12lz8s475", xl: "tgph-12lz8s476", "2xl": "tgph-12lz8s477" }, defaultClass: "tgph-12lz8s473" }, "beige-12": { conditions: { sm: "tgph-12lz8s478", md: "tgph-12lz8s479", lg: "tgph-12lz8s47a", xl: "tgph-12lz8s47b", "2xl": "tgph-12lz8s47c" }, defaultClass: "tgph-12lz8s478" }, "accent-1": { conditions: { sm: "tgph-12lz8s47d", md: "tgph-12lz8s47e", lg: "tgph-12lz8s47f", xl: "tgph-12lz8s47g", "2xl": "tgph-12lz8s47h" }, defaultClass: "tgph-12lz8s47d" }, "accent-2": { conditions: { sm: "tgph-12lz8s47i", md: "tgph-12lz8s47j", lg: "tgph-12lz8s47k", xl: "tgph-12lz8s47l", "2xl": "tgph-12lz8s47m" }, defaultClass: "tgph-12lz8s47i" }, "accent-3": { conditions: { sm: "tgph-12lz8s47n", md: "tgph-12lz8s47o", lg: "tgph-12lz8s47p", xl: "tgph-12lz8s47q", "2xl": "tgph-12lz8s47r" }, defaultClass: "tgph-12lz8s47n" }, "accent-4": { conditions: { sm: "tgph-12lz8s47s", md: "tgph-12lz8s47t", lg: "tgph-12lz8s47u", xl: "tgph-12lz8s47v", "2xl": "tgph-12lz8s47w" }, defaultClass: "tgph-12lz8s47s" }, "accent-5": { conditions: { sm: "tgph-12lz8s47x", md: "tgph-12lz8s47y", lg: "tgph-12lz8s47z", xl: "tgph-12lz8s480", "2xl": "tgph-12lz8s481" }, defaultClass: "tgph-12lz8s47x" }, "accent-6": { conditions: { sm: "tgph-12lz8s482", md: "tgph-12lz8s483", lg: "tgph-12lz8s484", xl: "tgph-12lz8s485", "2xl": "tgph-12lz8s486" }, defaultClass: "tgph-12lz8s482" }, "accent-7": { conditions: { sm: "tgph-12lz8s487", md: "tgph-12lz8s488", lg: "tgph-12lz8s489", xl: "tgph-12lz8s48a", "2xl": "tgph-12lz8s48b" }, defaultClass: "tgph-12lz8s487" }, "accent-8": { conditions: { sm: "tgph-12lz8s48c", md: "tgph-12lz8s48d", lg: "tgph-12lz8s48e", xl: "tgph-12lz8s48f", "2xl": "tgph-12lz8s48g" }, defaultClass: "tgph-12lz8s48c" }, "accent-9": { conditions: { sm: "tgph-12lz8s48h", md: "tgph-12lz8s48i", lg: "tgph-12lz8s48j", xl: "tgph-12lz8s48k", "2xl": "tgph-12lz8s48l" }, defaultClass: "tgph-12lz8s48h" }, "accent-10": { conditions: { sm: "tgph-12lz8s48m", md: "tgph-12lz8s48n", lg: "tgph-12lz8s48o", xl: "tgph-12lz8s48p", "2xl": "tgph-12lz8s48q" }, defaultClass: "tgph-12lz8s48m" }, "accent-11": { conditions: { sm: "tgph-12lz8s48r", md: "tgph-12lz8s48s", lg: "tgph-12lz8s48t", xl: "tgph-12lz8s48u", "2xl": "tgph-12lz8s48v" }, defaultClass: "tgph-12lz8s48r" }, "accent-12": { conditions: { sm: "tgph-12lz8s48w", md: "tgph-12lz8s48x", lg: "tgph-12lz8s48y", xl: "tgph-12lz8s48z", "2xl": "tgph-12lz8s490" }, defaultClass: "tgph-12lz8s48w" }, "green-1": { conditions: { sm: "tgph-12lz8s491", md: "tgph-12lz8s492", lg: "tgph-12lz8s493", xl: "tgph-12lz8s494", "2xl": "tgph-12lz8s495" }, defaultClass: "tgph-12lz8s491" }, "green-2": { conditions: { sm: "tgph-12lz8s496", md: "tgph-12lz8s497", lg: "tgph-12lz8s498", xl: "tgph-12lz8s499", "2xl": "tgph-12lz8s49a" }, defaultClass: "tgph-12lz8s496" }, "green-3": { conditions: { sm: "tgph-12lz8s49b", md: "tgph-12lz8s49c", lg: "tgph-12lz8s49d", xl: "tgph-12lz8s49e", "2xl": "tgph-12lz8s49f" }, defaultClass: "tgph-12lz8s49b" }, "green-4": { conditions: { sm: "tgph-12lz8s49g", md: "tgph-12lz8s49h", lg: "tgph-12lz8s49i", xl: "tgph-12lz8s49j", "2xl": "tgph-12lz8s49k" }, defaultClass: "tgph-12lz8s49g" }, "green-5": { conditions: { sm: "tgph-12lz8s49l", md: "tgph-12lz8s49m", lg: "tgph-12lz8s49n", xl: "tgph-12lz8s49o", "2xl": "tgph-12lz8s49p" }, defaultClass: "tgph-12lz8s49l" }, "green-6": { conditions: { sm: "tgph-12lz8s49q", md: "tgph-12lz8s49r", lg: "tgph-12lz8s49s", xl: "tgph-12lz8s49t", "2xl": "tgph-12lz8s49u" }, defaultClass: "tgph-12lz8s49q" }, "green-7": { conditions: { sm: "tgph-12lz8s49v", md: "tgph-12lz8s49w", lg: "tgph-12lz8s49x", xl: "tgph-12lz8s49y", "2xl": "tgph-12lz8s49z" }, defaultClass: "tgph-12lz8s49v" }, "green-8": { conditions: { sm: "tgph-12lz8s4a0", md: "tgph-12lz8s4a1", lg: "tgph-12lz8s4a2", xl: "tgph-12lz8s4a3", "2xl": "tgph-12lz8s4a4" }, defaultClass: "tgph-12lz8s4a0" }, "green-9": { conditions: { sm: "tgph-12lz8s4a5", md: "tgph-12lz8s4a6", lg: "tgph-12lz8s4a7", xl: "tgph-12lz8s4a8", "2xl": "tgph-12lz8s4a9" }, defaultClass: "tgph-12lz8s4a5" }, "green-10": { conditions: { sm: "tgph-12lz8s4aa", md: "tgph-12lz8s4ab", lg: "tgph-12lz8s4ac", xl: "tgph-12lz8s4ad", "2xl": "tgph-12lz8s4ae" }, defaultClass: "tgph-12lz8s4aa" }, "green-11": { conditions: { sm: "tgph-12lz8s4af", md: "tgph-12lz8s4ag", lg: "tgph-12lz8s4ah", xl: "tgph-12lz8s4ai", "2xl": "tgph-12lz8s4aj" }, defaultClass: "tgph-12lz8s4af" }, "green-12": { conditions: { sm: "tgph-12lz8s4ak", md: "tgph-12lz8s4al", lg: "tgph-12lz8s4am", xl: "tgph-12lz8s4an", "2xl": "tgph-12lz8s4ao" }, defaultClass: "tgph-12lz8s4ak" }, "yellow-1": { conditions: { sm: "tgph-12lz8s4ap", md: "tgph-12lz8s4aq", lg: "tgph-12lz8s4ar", xl: "tgph-12lz8s4as", "2xl": "tgph-12lz8s4at" }, defaultClass: "tgph-12lz8s4ap" }, "yellow-2": { conditions: { sm: "tgph-12lz8s4au", md: "tgph-12lz8s4av", lg: "tgph-12lz8s4aw", xl: "tgph-12lz8s4ax", "2xl": "tgph-12lz8s4ay" }, defaultClass: "tgph-12lz8s4au" }, "yellow-3": { conditions: { sm: "tgph-12lz8s4az", md: "tgph-12lz8s4b0", lg: "tgph-12lz8s4b1", xl: "tgph-12lz8s4b2", "2xl": "tgph-12lz8s4b3" }, defaultClass: "tgph-12lz8s4az" }, "yellow-4": { conditions: { sm: "tgph-12lz8s4b4", md: "tgph-12lz8s4b5", lg: "tgph-12lz8s4b6", xl: "tgph-12lz8s4b7", "2xl": "tgph-12lz8s4b8" }, defaultClass: "tgph-12lz8s4b4" }, "yellow-5": { conditions: { sm: "tgph-12lz8s4b9", md: "tgph-12lz8s4ba", lg: "tgph-12lz8s4bb", xl: "tgph-12lz8s4bc", "2xl": "tgph-12lz8s4bd" }, defaultClass: "tgph-12lz8s4b9" }, "yellow-6": { conditions: { sm: "tgph-12lz8s4be", md: "tgph-12lz8s4bf", lg: "tgph-12lz8s4bg", xl: "tgph-12lz8s4bh", "2xl": "tgph-12lz8s4bi" }, defaultClass: "tgph-12lz8s4be" }, "yellow-7": { conditions: { sm: "tgph-12lz8s4bj", md: "tgph-12lz8s4bk", lg: "tgph-12lz8s4bl", xl: "tgph-12lz8s4bm", "2xl": "tgph-12lz8s4bn" }, defaultClass: "tgph-12lz8s4bj" }, "yellow-8": { conditions: { sm: "tgph-12lz8s4bo", md: "tgph-12lz8s4bp", lg: "tgph-12lz8s4bq", xl: "tgph-12lz8s4br", "2xl": "tgph-12lz8s4bs" }, defaultClass: "tgph-12lz8s4bo" }, "yellow-9": { conditions: { sm: "tgph-12lz8s4bt", md: "tgph-12lz8s4bu", lg: "tgph-12lz8s4bv", xl: "tgph-12lz8s4bw", "2xl": "tgph-12lz8s4bx" }, defaultClass: "tgph-12lz8s4bt" }, "yellow-10": { conditions: { sm: "tgph-12lz8s4by", md: "tgph-12lz8s4bz", lg: "tgph-12lz8s4c0", xl: "tgph-12lz8s4c1", "2xl": "tgph-12lz8s4c2" }, defaultClass: "tgph-12lz8s4by" }, "yellow-11": { conditions: { sm: "tgph-12lz8s4c3", md: "tgph-12lz8s4c4", lg: "tgph-12lz8s4c5", xl: "tgph-12lz8s4c6", "2xl": "tgph-12lz8s4c7" }, defaultClass: "tgph-12lz8s4c3" }, "yellow-12": { conditions: { sm: "tgph-12lz8s4c8", md: "tgph-12lz8s4c9", lg: "tgph-12lz8s4ca", xl: "tgph-12lz8s4cb", "2xl": "tgph-12lz8s4cc" }, defaultClass: "tgph-12lz8s4c8" }, "blue-1": { conditions: { sm: "tgph-12lz8s4cd", md: "tgph-12lz8s4ce", lg: "tgph-12lz8s4cf", xl: "tgph-12lz8s4cg", "2xl": "tgph-12lz8s4ch" }, defaultClass: "tgph-12lz8s4cd" }, "blue-2": { conditions: { sm: "tgph-12lz8s4ci", md: "tgph-12lz8s4cj", lg: "tgph-12lz8s4ck", xl: "tgph-12lz8s4cl", "2xl": "tgph-12lz8s4cm" }, defaultClass: "tgph-12lz8s4ci" }, "blue-3": { conditions: { sm: "tgph-12lz8s4cn", md: "tgph-12lz8s4co", lg: "tgph-12lz8s4cp", xl: "tgph-12lz8s4cq", "2xl": "tgph-12lz8s4cr" }, defaultClass: "tgph-12lz8s4cn" }, "blue-4": { conditions: { sm: "tgph-12lz8s4cs", md: "tgph-12lz8s4ct", lg: "tgph-12lz8s4cu", xl: "tgph-12lz8s4cv", "2xl": "tgph-12lz8s4cw" }, defaultClass: "tgph-12lz8s4cs" }, "blue-5": { conditions: { sm: "tgph-12lz8s4cx", md: "tgph-12lz8s4cy", lg: "tgph-12lz8s4cz", xl: "tgph-12lz8s4d0", "2xl": "tgph-12lz8s4d1" }, defaultClass: "tgph-12lz8s4cx" }, "blue-6": { conditions: { sm: "tgph-12lz8s4d2", md: "tgph-12lz8s4d3", lg: "tgph-12lz8s4d4", xl: "tgph-12lz8s4d5", "2xl": "tgph-12lz8s4d6" }, defaultClass: "tgph-12lz8s4d2" }, "blue-7": { conditions: { sm: "tgph-12lz8s4d7", md: "tgph-12lz8s4d8", lg: "tgph-12lz8s4d9", xl: "tgph-12lz8s4da", "2xl": "tgph-12lz8s4db" }, defaultClass: "tgph-12lz8s4d7" }, "blue-8": { conditions: { sm: "tgph-12lz8s4dc", md: "tgph-12lz8s4dd", lg: "tgph-12lz8s4de", xl: "tgph-12lz8s4df", "2xl": "tgph-12lz8s4dg" }, defaultClass: "tgph-12lz8s4dc" }, "blue-9": { conditions: { sm: "tgph-12lz8s4dh", md: "tgph-12lz8s4di", lg: "tgph-12lz8s4dj", xl: "tgph-12lz8s4dk", "2xl": "tgph-12lz8s4dl" }, defaultClass: "tgph-12lz8s4dh" }, "blue-10": { conditions: { sm: "tgph-12lz8s4dm", md: "tgph-12lz8s4dn", lg: "tgph-12lz8s4do", xl: "tgph-12lz8s4dp", "2xl": "tgph-12lz8s4dq" }, defaultClass: "tgph-12lz8s4dm" }, "blue-11": { conditions: { sm: "tgph-12lz8s4dr", md: "tgph-12lz8s4ds", lg: "tgph-12lz8s4dt", xl: "tgph-12lz8s4du", "2xl": "tgph-12lz8s4dv" }, defaultClass: "tgph-12lz8s4dr" }, "blue-12": { conditions: { sm: "tgph-12lz8s4dw", md: "tgph-12lz8s4dx", lg: "tgph-12lz8s4dy", xl: "tgph-12lz8s4dz", "2xl": "tgph-12lz8s4e0" }, defaultClass: "tgph-12lz8s4dw" }, "red-1": { conditions: { sm: "tgph-12lz8s4e1", md: "tgph-12lz8s4e2", lg: "tgph-12lz8s4e3", xl: "tgph-12lz8s4e4", "2xl": "tgph-12lz8s4e5" }, defaultClass: "tgph-12lz8s4e1" }, "red-2": { conditions: { sm: "tgph-12lz8s4e6", md: "tgph-12lz8s4e7", lg: "tgph-12lz8s4e8", xl: "tgph-12lz8s4e9", "2xl": "tgph-12lz8s4ea" }, defaultClass: "tgph-12lz8s4e6" }, "red-3": { conditions: { sm: "tgph-12lz8s4eb", md: "tgph-12lz8s4ec", lg: "tgph-12lz8s4ed", xl: "tgph-12lz8s4ee", "2xl": "tgph-12lz8s4ef" }, defaultClass: "tgph-12lz8s4eb" }, "red-4": { conditions: { sm: "tgph-12lz8s4eg", md: "tgph-12lz8s4eh", lg: "tgph-12lz8s4ei", xl: "tgph-12lz8s4ej", "2xl": "tgph-12lz8s4ek" }, defaultClass: "tgph-12lz8s4eg" }, "red-5": { conditions: { sm: "tgph-12lz8s4el", md: "tgph-12lz8s4em", lg: "tgph-12lz8s4en", xl: "tgph-12lz8s4eo", "2xl": "tgph-12lz8s4ep" }, defaultClass: "tgph-12lz8s4el" }, "red-6": { conditions: { sm: "tgph-12lz8s4eq", md: "tgph-12lz8s4er", lg: "tgph-12lz8s4es", xl: "tgph-12lz8s4et", "2xl": "tgph-12lz8s4eu" }, defaultClass: "tgph-12lz8s4eq" }, "red-7": { conditions: { sm: "tgph-12lz8s4ev", md: "tgph-12lz8s4ew", lg: "tgph-12lz8s4ex", xl: "tgph-12lz8s4ey", "2xl": "tgph-12lz8s4ez" }, defaultClass: "tgph-12lz8s4ev" }, "red-8": { conditions: { sm: "tgph-12lz8s4f0", md: "tgph-12lz8s4f1", lg: "tgph-12lz8s4f2", xl: "tgph-12lz8s4f3", "2xl": "tgph-12lz8s4f4" }, defaultClass: "tgph-12lz8s4f0" }, "red-9": { conditions: { sm: "tgph-12lz8s4f5", md: "tgph-12lz8s4f6", lg: "tgph-12lz8s4f7", xl: "tgph-12lz8s4f8", "2xl": "tgph-12lz8s4f9" }, defaultClass: "tgph-12lz8s4f5" }, "red-10": { conditions: { sm: "tgph-12lz8s4fa", md: "tgph-12lz8s4fb", lg: "tgph-12lz8s4fc", xl: "tgph-12lz8s4fd", "2xl": "tgph-12lz8s4fe" }, defaultClass: "tgph-12lz8s4fa" }, "red-11": { conditions: { sm: "tgph-12lz8s4ff", md: "tgph-12lz8s4fg", lg: "tgph-12lz8s4fh", xl: "tgph-12lz8s4fi", "2xl": "tgph-12lz8s4fj" }, defaultClass: "tgph-12lz8s4ff" }, "red-12": { conditions: { sm: "tgph-12lz8s4fk", md: "tgph-12lz8s4fl", lg: "tgph-12lz8s4fm", xl: "tgph-12lz8s4fn", "2xl": "tgph-12lz8s4fo" }, defaultClass: "tgph-12lz8s4fk" }, "purple-1": { conditions: { sm: "tgph-12lz8s4fp", md: "tgph-12lz8s4fq", lg: "tgph-12lz8s4fr", xl: "tgph-12lz8s4fs", "2xl": "tgph-12lz8s4ft" }, defaultClass: "tgph-12lz8s4fp" }, "purple-2": { conditions: { sm: "tgph-12lz8s4fu", md: "tgph-12lz8s4fv", lg: "tgph-12lz8s4fw", xl: "tgph-12lz8s4fx", "2xl": "tgph-12lz8s4fy" }, defaultClass: "tgph-12lz8s4fu" }, "purple-3": { conditions: { sm: "tgph-12lz8s4fz", md: "tgph-12lz8s4g0", lg: "tgph-12lz8s4g1", xl: "tgph-12lz8s4g2", "2xl": "tgph-12lz8s4g3" }, defaultClass: "tgph-12lz8s4fz" }, "purple-4": { conditions: { sm: "tgph-12lz8s4g4", md: "tgph-12lz8s4g5", lg: "tgph-12lz8s4g6", xl: "tgph-12lz8s4g7", "2xl": "tgph-12lz8s4g8" }, defaultClass: "tgph-12lz8s4g4" }, "purple-5": { conditions: { sm: "tgph-12lz8s4g9", md: "tgph-12lz8s4ga", lg: "tgph-12lz8s4gb", xl: "tgph-12lz8s4gc", "2xl": "tgph-12lz8s4gd" }, defaultClass: "tgph-12lz8s4g9" }, "purple-6": { conditions: { sm: "tgph-12lz8s4ge", md: "tgph-12lz8s4gf", lg: "tgph-12lz8s4gg", xl: "tgph-12lz8s4gh", "2xl": "tgph-12lz8s4gi" }, defaultClass: "tgph-12lz8s4ge" }, "purple-7": { conditions: { sm: "tgph-12lz8s4gj", md: "tgph-12lz8s4gk", lg: "tgph-12lz8s4gl", xl: "tgph-12lz8s4gm", "2xl": "tgph-12lz8s4gn" }, defaultClass: "tgph-12lz8s4gj" }, "purple-8": { conditions: { sm: "tgph-12lz8s4go", md: "tgph-12lz8s4gp", lg: "tgph-12lz8s4gq", xl: "tgph-12lz8s4gr", "2xl": "tgph-12lz8s4gs" }, defaultClass: "tgph-12lz8s4go" }, "purple-9": { conditions: { sm: "tgph-12lz8s4gt", md: "tgph-12lz8s4gu", lg: "tgph-12lz8s4gv", xl: "tgph-12lz8s4gw", "2xl": "tgph-12lz8s4gx" }, defaultClass: "tgph-12lz8s4gt" }, "purple-10": { conditions: { sm: "tgph-12lz8s4gy", md: "tgph-12lz8s4gz", lg: "tgph-12lz8s4h0", xl: "tgph-12lz8s4h1", "2xl": "tgph-12lz8s4h2" }, defaultClass: "tgph-12lz8s4gy" }, "purple-11": { conditions: { sm: "tgph-12lz8s4h3", md: "tgph-12lz8s4h4", lg: "tgph-12lz8s4h5", xl: "tgph-12lz8s4h6", "2xl": "tgph-12lz8s4h7" }, defaultClass: "tgph-12lz8s4h3" }, "purple-12": { conditions: { sm: "tgph-12lz8s4h8", md: "tgph-12lz8s4h9", lg: "tgph-12lz8s4ha", xl: "tgph-12lz8s4hb", "2xl": "tgph-12lz8s4hc" }, defaultClass: "tgph-12lz8s4h8" } }, responsiveArray: void 0 }, borderWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s4hd", md: "tgph-12lz8s4he", lg: "tgph-12lz8s4hf", xl: "tgph-12lz8s4hg", "2xl": "tgph-12lz8s4hh" }, defaultClass: "tgph-12lz8s4hd" }, 1: { conditions: { sm: "tgph-12lz8s4hi", md: "tgph-12lz8s4hj", lg: "tgph-12lz8s4hk", xl: "tgph-12lz8s4hl", "2xl": "tgph-12lz8s4hm" }, defaultClass: "tgph-12lz8s4hi" }, 2: { conditions: { sm: "tgph-12lz8s4hn", md: "tgph-12lz8s4ho", lg: "tgph-12lz8s4hp", xl: "tgph-12lz8s4hq", "2xl": "tgph-12lz8s4hr" }, defaultClass: "tgph-12lz8s4hn" }, 3: { conditions: { sm: "tgph-12lz8s4hs", md: "tgph-12lz8s4ht", lg: "tgph-12lz8s4hu", xl: "tgph-12lz8s4hv", "2xl": "tgph-12lz8s4hw" }, defaultClass: "tgph-12lz8s4hs" }, 4: { conditions: { sm: "tgph-12lz8s4hx", md: "tgph-12lz8s4hy", lg: "tgph-12lz8s4hz", xl: "tgph-12lz8s4i0", "2xl": "tgph-12lz8s4i1" }, defaultClass: "tgph-12lz8s4hx" }, 5: { conditions: { sm: "tgph-12lz8s4i2", md: "tgph-12lz8s4i3", lg: "tgph-12lz8s4i4", xl: "tgph-12lz8s4i5", "2xl": "tgph-12lz8s4i6" }, defaultClass: "tgph-12lz8s4i2" }, 6: { conditions: { sm: "tgph-12lz8s4i7", md: "tgph-12lz8s4i8", lg: "tgph-12lz8s4i9", xl: "tgph-12lz8s4ia", "2xl": "tgph-12lz8s4ib" }, defaultClass: "tgph-12lz8s4i7" }, 7: { conditions: { sm: "tgph-12lz8s4ic", md: "tgph-12lz8s4id", lg: "tgph-12lz8s4ie", xl: "tgph-12lz8s4if", "2xl": "tgph-12lz8s4ig" }, defaultClass: "tgph-12lz8s4ic" }, 8: { conditions: { sm: "tgph-12lz8s4ih", md: "tgph-12lz8s4ii", lg: "tgph-12lz8s4ij", xl: "tgph-12lz8s4ik", "2xl": "tgph-12lz8s4il" }, defaultClass: "tgph-12lz8s4ih" }, 9: { conditions: { sm: "tgph-12lz8s4im", md: "tgph-12lz8s4in", lg: "tgph-12lz8s4io", xl: "tgph-12lz8s4ip", "2xl": "tgph-12lz8s4iq" }, defaultClass: "tgph-12lz8s4im" }, 10: { conditions: { sm: "tgph-12lz8s4ir", md: "tgph-12lz8s4is", lg: "tgph-12lz8s4it", xl: "tgph-12lz8s4iu", "2xl": "tgph-12lz8s4iv" }, defaultClass: "tgph-12lz8s4ir" }, 11: { conditions: { sm: "tgph-12lz8s4iw", md: "tgph-12lz8s4ix", lg: "tgph-12lz8s4iy", xl: "tgph-12lz8s4iz", "2xl": "tgph-12lz8s4j0" }, defaultClass: "tgph-12lz8s4iw" }, 12: { conditions: { sm: "tgph-12lz8s4j1", md: "tgph-12lz8s4j2", lg: "tgph-12lz8s4j3", xl: "tgph-12lz8s4j4", "2xl": "tgph-12lz8s4j5" }, defaultClass: "tgph-12lz8s4j1" }, 14: { conditions: { sm: "tgph-12lz8s4j6", md: "tgph-12lz8s4j7", lg: "tgph-12lz8s4j8", xl: "tgph-12lz8s4j9", "2xl": "tgph-12lz8s4ja" }, defaultClass: "tgph-12lz8s4j6" }, 16: { conditions: { sm: "tgph-12lz8s4jb", md: "tgph-12lz8s4jc", lg: "tgph-12lz8s4jd", xl: "tgph-12lz8s4je", "2xl": "tgph-12lz8s4jf" }, defaultClass: "tgph-12lz8s4jb" }, 20: { conditions: { sm: "tgph-12lz8s4jg", md: "tgph-12lz8s4jh", lg: "tgph-12lz8s4ji", xl: "tgph-12lz8s4jj", "2xl": "tgph-12lz8s4jk" }, defaultClass: "tgph-12lz8s4jg" }, 24: { conditions: { sm: "tgph-12lz8s4jl", md: "tgph-12lz8s4jm", lg: "tgph-12lz8s4jn", xl: "tgph-12lz8s4jo", "2xl": "tgph-12lz8s4jp" }, defaultClass: "tgph-12lz8s4jl" }, 28: { conditions: { sm: "tgph-12lz8s4jq", md: "tgph-12lz8s4jr", lg: "tgph-12lz8s4js", xl: "tgph-12lz8s4jt", "2xl": "tgph-12lz8s4ju" }, defaultClass: "tgph-12lz8s4jq" }, 32: { conditions: { sm: "tgph-12lz8s4jv", md: "tgph-12lz8s4jw", lg: "tgph-12lz8s4jx", xl: "tgph-12lz8s4jy", "2xl": "tgph-12lz8s4jz" }, defaultClass: "tgph-12lz8s4jv" }, 36: { conditions: { sm: "tgph-12lz8s4k0", md: "tgph-12lz8s4k1", lg: "tgph-12lz8s4k2", xl: "tgph-12lz8s4k3", "2xl": "tgph-12lz8s4k4" }, defaultClass: "tgph-12lz8s4k0" }, 40: { conditions: { sm: "tgph-12lz8s4k5", md: "tgph-12lz8s4k6", lg: "tgph-12lz8s4k7", xl: "tgph-12lz8s4k8", "2xl": "tgph-12lz8s4k9" }, defaultClass: "tgph-12lz8s4k5" }, 44: { conditions: { sm: "tgph-12lz8s4ka", md: "tgph-12lz8s4kb", lg: "tgph-12lz8s4kc", xl: "tgph-12lz8s4kd", "2xl": "tgph-12lz8s4ke" }, defaultClass: "tgph-12lz8s4ka" }, 48: { conditions: { sm: "tgph-12lz8s4kf", md: "tgph-12lz8s4kg", lg: "tgph-12lz8s4kh", xl: "tgph-12lz8s4ki", "2xl": "tgph-12lz8s4kj" }, defaultClass: "tgph-12lz8s4kf" }, 52: { conditions: { sm: "tgph-12lz8s4kk", md: "tgph-12lz8s4kl", lg: "tgph-12lz8s4km", xl: "tgph-12lz8s4kn", "2xl": "tgph-12lz8s4ko" }, defaultClass: "tgph-12lz8s4kk" }, 56: { conditions: { sm: "tgph-12lz8s4kp", md: "tgph-12lz8s4kq", lg: "tgph-12lz8s4kr", xl: "tgph-12lz8s4ks", "2xl": "tgph-12lz8s4kt" }, defaultClass: "tgph-12lz8s4kp" }, 60: { conditions: { sm: "tgph-12lz8s4ku", md: "tgph-12lz8s4kv", lg: "tgph-12lz8s4kw", xl: "tgph-12lz8s4kx", "2xl": "tgph-12lz8s4ky" }, defaultClass: "tgph-12lz8s4ku" }, 64: { conditions: { sm: "tgph-12lz8s4kz", md: "tgph-12lz8s4l0", lg: "tgph-12lz8s4l1", xl: "tgph-12lz8s4l2", "2xl": "tgph-12lz8s4l3" }, defaultClass: "tgph-12lz8s4kz" }, 72: { conditions: { sm: "tgph-12lz8s4l4", md: "tgph-12lz8s4l5", lg: "tgph-12lz8s4l6", xl: "tgph-12lz8s4l7", "2xl": "tgph-12lz8s4l8" }, defaultClass: "tgph-12lz8s4l4" }, 80: { conditions: { sm: "tgph-12lz8s4l9", md: "tgph-12lz8s4la", lg: "tgph-12lz8s4lb", xl: "tgph-12lz8s4lc", "2xl": "tgph-12lz8s4ld" }, defaultClass: "tgph-12lz8s4l9" }, 96: { conditions: { sm: "tgph-12lz8s4le", md: "tgph-12lz8s4lf", lg: "tgph-12lz8s4lg", xl: "tgph-12lz8s4lh", "2xl": "tgph-12lz8s4li" }, defaultClass: "tgph-12lz8s4le" }, 140: { conditions: { sm: "tgph-12lz8s4lj", md: "tgph-12lz8s4lk", lg: "tgph-12lz8s4ll", xl: "tgph-12lz8s4lm", "2xl": "tgph-12lz8s4ln" }, defaultClass: "tgph-12lz8s4lj" }, 160: { conditions: { sm: "tgph-12lz8s4lo", md: "tgph-12lz8s4lp", lg: "tgph-12lz8s4lq", xl: "tgph-12lz8s4lr", "2xl": "tgph-12lz8s4ls" }, defaultClass: "tgph-12lz8s4lo" }, px: { conditions: { sm: "tgph-12lz8s4lt", md: "tgph-12lz8s4lu", lg: "tgph-12lz8s4lv", xl: "tgph-12lz8s4lw", "2xl": "tgph-12lz8s4lx" }, defaultClass: "tgph-12lz8s4lt" }, full: { conditions: { sm: "tgph-12lz8s4ly", md: "tgph-12lz8s4lz", lg: "tgph-12lz8s4m0", xl: "tgph-12lz8s4m1", "2xl": "tgph-12lz8s4m2" }, defaultClass: "tgph-12lz8s4ly" }, auto: { conditions: { sm: "tgph-12lz8s4m3", md: "tgph-12lz8s4m4", lg: "tgph-12lz8s4m5", xl: "tgph-12lz8s4m6", "2xl": "tgph-12lz8s4m7" }, defaultClass: "tgph-12lz8s4m3" } }, responsiveArray: void 0 }, borderBottomWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s4m8", md: "tgph-12lz8s4m9", lg: "tgph-12lz8s4ma", xl: "tgph-12lz8s4mb", "2xl": "tgph-12lz8s4mc" }, defaultClass: "tgph-12lz8s4m8" }, 1: { conditions: { sm: "tgph-12lz8s4md", md: "tgph-12lz8s4me", lg: "tgph-12lz8s4mf", xl: "tgph-12lz8s4mg", "2xl": "tgph-12lz8s4mh" }, defaultClass: "tgph-12lz8s4md" }, 2: { conditions: { sm: "tgph-12lz8s4mi", md: "tgph-12lz8s4mj", lg: "tgph-12lz8s4mk", xl: "tgph-12lz8s4ml", "2xl": "tgph-12lz8s4mm" }, defaultClass: "tgph-12lz8s4mi" }, 3: { conditions: { sm: "tgph-12lz8s4mn", md: "tgph-12lz8s4mo", lg: "tgph-12lz8s4mp", xl: "tgph-12lz8s4mq", "2xl": "tgph-12lz8s4mr" }, defaultClass: "tgph-12lz8s4mn" }, 4: { conditions: { sm: "tgph-12lz8s4ms", md: "tgph-12lz8s4mt", lg: "tgph-12lz8s4mu", xl: "tgph-12lz8s4mv", "2xl": "tgph-12lz8s4mw" }, defaultClass: "tgph-12lz8s4ms" }, 5: { conditions: { sm: "tgph-12lz8s4mx", md: "tgph-12lz8s4my", lg: "tgph-12lz8s4mz", xl: "tgph-12lz8s4n0", "2xl": "tgph-12lz8s4n1" }, defaultClass: "tgph-12lz8s4mx" }, 6: { conditions: { sm: "tgph-12lz8s4n2", md: "tgph-12lz8s4n3", lg: "tgph-12lz8s4n4", xl: "tgph-12lz8s4n5", "2xl": "tgph-12lz8s4n6" }, defaultClass: "tgph-12lz8s4n2" }, 7: { conditions: { sm: "tgph-12lz8s4n7", md: "tgph-12lz8s4n8", lg: "tgph-12lz8s4n9", xl: "tgph-12lz8s4na", "2xl": "tgph-12lz8s4nb" }, defaultClass: "tgph-12lz8s4n7" }, 8: { conditions: { sm: "tgph-12lz8s4nc", md: "tgph-12lz8s4nd", lg: "tgph-12lz8s4ne", xl: "tgph-12lz8s4nf", "2xl": "tgph-12lz8s4ng" }, defaultClass: "tgph-12lz8s4nc" }, 9: { conditions: { sm: "tgph-12lz8s4nh", md: "tgph-12lz8s4ni", lg: "tgph-12lz8s4nj", xl: "tgph-12lz8s4nk", "2xl": "tgph-12lz8s4nl" }, defaultClass: "tgph-12lz8s4nh" }, 10: { conditions: { sm: "tgph-12lz8s4nm", md: "tgph-12lz8s4nn", lg: "tgph-12lz8s4no", xl: "tgph-12lz8s4np", "2xl": "tgph-12lz8s4nq" }, defaultClass: "tgph-12lz8s4nm" }, 11: { conditions: { sm: "tgph-12lz8s4nr", md: "tgph-12lz8s4ns", lg: "tgph-12lz8s4nt", xl: "tgph-12lz8s4nu", "2xl": "tgph-12lz8s4nv" }, defaultClass: "tgph-12lz8s4nr" }, 12: { conditions: { sm: "tgph-12lz8s4nw", md: "tgph-12lz8s4nx", lg: "tgph-12lz8s4ny", xl: "tgph-12lz8s4nz", "2xl": "tgph-12lz8s4o0" }, defaultClass: "tgph-12lz8s4nw" }, 14: { conditions: { sm: "tgph-12lz8s4o1", md: "tgph-12lz8s4o2", lg: "tgph-12lz8s4o3", xl: "tgph-12lz8s4o4", "2xl": "tgph-12lz8s4o5" }, defaultClass: "tgph-12lz8s4o1" }, 16: { conditions: { sm: "tgph-12lz8s4o6", md: "tgph-12lz8s4o7", lg: "tgph-12lz8s4o8", xl: "tgph-12lz8s4o9", "2xl": "tgph-12lz8s4oa" }, defaultClass: "tgph-12lz8s4o6" }, 20: { conditions: { sm: "tgph-12lz8s4ob", md: "tgph-12lz8s4oc", lg: "tgph-12lz8s4od", xl: "tgph-12lz8s4oe", "2xl": "tgph-12lz8s4of" }, defaultClass: "tgph-12lz8s4ob" }, 24: { conditions: { sm: "tgph-12lz8s4og", md: "tgph-12lz8s4oh", lg: "tgph-12lz8s4oi", xl: "tgph-12lz8s4oj", "2xl": "tgph-12lz8s4ok" }, defaultClass: "tgph-12lz8s4og" }, 28: { conditions: { sm: "tgph-12lz8s4ol", md: "tgph-12lz8s4om", lg: "tgph-12lz8s4on", xl: "tgph-12lz8s4oo", "2xl": "tgph-12lz8s4op" }, defaultClass: "tgph-12lz8s4ol" }, 32: { conditions: { sm: "tgph-12lz8s4oq", md: "tgph-12lz8s4or", lg: "tgph-12lz8s4os", xl: "tgph-12lz8s4ot", "2xl": "tgph-12lz8s4ou" }, defaultClass: "tgph-12lz8s4oq" }, 36: { conditions: { sm: "tgph-12lz8s4ov", md: "tgph-12lz8s4ow", lg: "tgph-12lz8s4ox", xl: "tgph-12lz8s4oy", "2xl": "tgph-12lz8s4oz" }, defaultClass: "tgph-12lz8s4ov" }, 40: { conditions: { sm: "tgph-12lz8s4p0", md: "tgph-12lz8s4p1", lg: "tgph-12lz8s4p2", xl: "tgph-12lz8s4p3", "2xl": "tgph-12lz8s4p4" }, defaultClass: "tgph-12lz8s4p0" }, 44: { conditions: { sm: "tgph-12lz8s4p5", md: "tgph-12lz8s4p6", lg: "tgph-12lz8s4p7", xl: "tgph-12lz8s4p8", "2xl": "tgph-12lz8s4p9" }, defaultClass: "tgph-12lz8s4p5" }, 48: { conditions: { sm: "tgph-12lz8s4pa", md: "tgph-12lz8s4pb", lg: "tgph-12lz8s4pc", xl: "tgph-12lz8s4pd", "2xl": "tgph-12lz8s4pe" }, defaultClass: "tgph-12lz8s4pa" }, 52: { conditions: { sm: "tgph-12lz8s4pf", md: "tgph-12lz8s4pg", lg: "tgph-12lz8s4ph", xl: "tgph-12lz8s4pi", "2xl": "tgph-12lz8s4pj" }, defaultClass: "tgph-12lz8s4pf" }, 56: { conditions: { sm: "tgph-12lz8s4pk", md: "tgph-12lz8s4pl", lg: "tgph-12lz8s4pm", xl: "tgph-12lz8s4pn", "2xl": "tgph-12lz8s4po" }, defaultClass: "tgph-12lz8s4pk" }, 60: { conditions: { sm: "tgph-12lz8s4pp", md: "tgph-12lz8s4pq", lg: "tgph-12lz8s4pr", xl: "tgph-12lz8s4ps", "2xl": "tgph-12lz8s4pt" }, defaultClass: "tgph-12lz8s4pp" }, 64: { conditions: { sm: "tgph-12lz8s4pu", md: "tgph-12lz8s4pv", lg: "tgph-12lz8s4pw", xl: "tgph-12lz8s4px", "2xl": "tgph-12lz8s4py" }, defaultClass: "tgph-12lz8s4pu" }, 72: { conditions: { sm: "tgph-12lz8s4pz", md: "tgph-12lz8s4q0", lg: "tgph-12lz8s4q1", xl: "tgph-12lz8s4q2", "2xl": "tgph-12lz8s4q3" }, defaultClass: "tgph-12lz8s4pz" }, 80: { conditions: { sm: "tgph-12lz8s4q4", md: "tgph-12lz8s4q5", lg: "tgph-12lz8s4q6", xl: "tgph-12lz8s4q7", "2xl": "tgph-12lz8s4q8" }, defaultClass: "tgph-12lz8s4q4" }, 96: { conditions: { sm: "tgph-12lz8s4q9", md: "tgph-12lz8s4qa", lg: "tgph-12lz8s4qb", xl: "tgph-12lz8s4qc", "2xl": "tgph-12lz8s4qd" }, defaultClass: "tgph-12lz8s4q9" }, 140: { conditions: { sm: "tgph-12lz8s4qe", md: "tgph-12lz8s4qf", lg: "tgph-12lz8s4qg", xl: "tgph-12lz8s4qh", "2xl": "tgph-12lz8s4qi" }, defaultClass: "tgph-12lz8s4qe" }, 160: { conditions: { sm: "tgph-12lz8s4qj", md: "tgph-12lz8s4qk", lg: "tgph-12lz8s4ql", xl: "tgph-12lz8s4qm", "2xl": "tgph-12lz8s4qn" }, defaultClass: "tgph-12lz8s4qj" }, px: { conditions: { sm: "tgph-12lz8s4qo", md: "tgph-12lz8s4qp", lg: "tgph-12lz8s4qq", xl: "tgph-12lz8s4qr", "2xl": "tgph-12lz8s4qs" }, defaultClass: "tgph-12lz8s4qo" }, full: { conditions: { sm: "tgph-12lz8s4qt", md: "tgph-12lz8s4qu", lg: "tgph-12lz8s4qv", xl: "tgph-12lz8s4qw", "2xl": "tgph-12lz8s4qx" }, defaultClass: "tgph-12lz8s4qt" }, auto: { conditions: { sm: "tgph-12lz8s4qy", md: "tgph-12lz8s4qz", lg: "tgph-12lz8s4r0", xl: "tgph-12lz8s4r1", "2xl": "tgph-12lz8s4r2" }, defaultClass: "tgph-12lz8s4qy" } }, responsiveArray: void 0 }, borderLeftWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s4r3", md: "tgph-12lz8s4r4", lg: "tgph-12lz8s4r5", xl: "tgph-12lz8s4r6", "2xl": "tgph-12lz8s4r7" }, defaultClass: "tgph-12lz8s4r3" }, 1: { conditions: { sm: "tgph-12lz8s4r8", md: "tgph-12lz8s4r9", lg: "tgph-12lz8s4ra", xl: "tgph-12lz8s4rb", "2xl": "tgph-12lz8s4rc" }, defaultClass: "tgph-12lz8s4r8" }, 2: { conditions: { sm: "tgph-12lz8s4rd", md: "tgph-12lz8s4re", lg: "tgph-12lz8s4rf", xl: "tgph-12lz8s4rg", "2xl": "tgph-12lz8s4rh" }, defaultClass: "tgph-12lz8s4rd" }, 3: { conditions: { sm: "tgph-12lz8s4ri", md: "tgph-12lz8s4rj", lg: "tgph-12lz8s4rk", xl: "tgph-12lz8s4rl", "2xl": "tgph-12lz8s4rm" }, defaultClass: "tgph-12lz8s4ri" }, 4: { conditions: { sm: "tgph-12lz8s4rn", md: "tgph-12lz8s4ro", lg: "tgph-12lz8s4rp", xl: "tgph-12lz8s4rq", "2xl": "tgph-12lz8s4rr" }, defaultClass: "tgph-12lz8s4rn" }, 5: { conditions: { sm: "tgph-12lz8s4rs", md: "tgph-12lz8s4rt", lg: "tgph-12lz8s4ru", xl: "tgph-12lz8s4rv", "2xl": "tgph-12lz8s4rw" }, defaultClass: "tgph-12lz8s4rs" }, 6: { conditions: { sm: "tgph-12lz8s4rx", md: "tgph-12lz8s4ry", lg: "tgph-12lz8s4rz", xl: "tgph-12lz8s4s0", "2xl": "tgph-12lz8s4s1" }, defaultClass: "tgph-12lz8s4rx" }, 7: { conditions: { sm: "tgph-12lz8s4s2", md: "tgph-12lz8s4s3", lg: "tgph-12lz8s4s4", xl: "tgph-12lz8s4s5", "2xl": "tgph-12lz8s4s6" }, defaultClass: "tgph-12lz8s4s2" }, 8: { conditions: { sm: "tgph-12lz8s4s7", md: "tgph-12lz8s4s8", lg: "tgph-12lz8s4s9", xl: "tgph-12lz8s4sa", "2xl": "tgph-12lz8s4sb" }, defaultClass: "tgph-12lz8s4s7" }, 9: { conditions: { sm: "tgph-12lz8s4sc", md: "tgph-12lz8s4sd", lg: "tgph-12lz8s4se", xl: "tgph-12lz8s4sf", "2xl": "tgph-12lz8s4sg" }, defaultClass: "tgph-12lz8s4sc" }, 10: { conditions: { sm: "tgph-12lz8s4sh", md: "tgph-12lz8s4si", lg: "tgph-12lz8s4sj", xl: "tgph-12lz8s4sk", "2xl": "tgph-12lz8s4sl" }, defaultClass: "tgph-12lz8s4sh" }, 11: { conditions: { sm: "tgph-12lz8s4sm", md: "tgph-12lz8s4sn", lg: "tgph-12lz8s4so", xl: "tgph-12lz8s4sp", "2xl": "tgph-12lz8s4sq" }, defaultClass: "tgph-12lz8s4sm" }, 12: { conditions: { sm: "tgph-12lz8s4sr", md: "tgph-12lz8s4ss", lg: "tgph-12lz8s4st", xl: "tgph-12lz8s4su", "2xl": "tgph-12lz8s4sv" }, defaultClass: "tgph-12lz8s4sr" }, 14: { conditions: { sm: "tgph-12lz8s4sw", md: "tgph-12lz8s4sx", lg: "tgph-12lz8s4sy", xl: "tgph-12lz8s4sz", "2xl": "tgph-12lz8s4t0" }, defaultClass: "tgph-12lz8s4sw" }, 16: { conditions: { sm: "tgph-12lz8s4t1", md: "tgph-12lz8s4t2", lg: "tgph-12lz8s4t3", xl: "tgph-12lz8s4t4", "2xl": "tgph-12lz8s4t5" }, defaultClass: "tgph-12lz8s4t1" }, 20: { conditions: { sm: "tgph-12lz8s4t6", md: "tgph-12lz8s4t7", lg: "tgph-12lz8s4t8", xl: "tgph-12lz8s4t9", "2xl": "tgph-12lz8s4ta" }, defaultClass: "tgph-12lz8s4t6" }, 24: { conditions: { sm: "tgph-12lz8s4tb", md: "tgph-12lz8s4tc", lg: "tgph-12lz8s4td", xl: "tgph-12lz8s4te", "2xl": "tgph-12lz8s4tf" }, defaultClass: "tgph-12lz8s4tb" }, 28: { conditions: { sm: "tgph-12lz8s4tg", md: "tgph-12lz8s4th", lg: "tgph-12lz8s4ti", xl: "tgph-12lz8s4tj", "2xl": "tgph-12lz8s4tk" }, defaultClass: "tgph-12lz8s4tg" }, 32: { conditions: { sm: "tgph-12lz8s4tl", md: "tgph-12lz8s4tm", lg: "tgph-12lz8s4tn", xl: "tgph-12lz8s4to", "2xl": "tgph-12lz8s4tp" }, defaultClass: "tgph-12lz8s4tl" }, 36: { conditions: { sm: "tgph-12lz8s4tq", md: "tgph-12lz8s4tr", lg: "tgph-12lz8s4ts", xl: "tgph-12lz8s4tt", "2xl": "tgph-12lz8s4tu" }, defaultClass: "tgph-12lz8s4tq" }, 40: { conditions: { sm: "tgph-12lz8s4tv", md: "tgph-12lz8s4tw", lg: "tgph-12lz8s4tx", xl: "tgph-12lz8s4ty", "2xl": "tgph-12lz8s4tz" }, defaultClass: "tgph-12lz8s4tv" }, 44: { conditions: { sm: "tgph-12lz8s4u0", md: "tgph-12lz8s4u1", lg: "tgph-12lz8s4u2", xl: "tgph-12lz8s4u3", "2xl": "tgph-12lz8s4u4" }, defaultClass: "tgph-12lz8s4u0" }, 48: { conditions: { sm: "tgph-12lz8s4u5", md: "tgph-12lz8s4u6", lg: "tgph-12lz8s4u7", xl: "tgph-12lz8s4u8", "2xl": "tgph-12lz8s4u9" }, defaultClass: "tgph-12lz8s4u5" }, 52: { conditions: { sm: "tgph-12lz8s4ua", md: "tgph-12lz8s4ub", lg: "tgph-12lz8s4uc", xl: "tgph-12lz8s4ud", "2xl": "tgph-12lz8s4ue" }, defaultClass: "tgph-12lz8s4ua" }, 56: { conditions: { sm: "tgph-12lz8s4uf", md: "tgph-12lz8s4ug", lg: "tgph-12lz8s4uh", xl: "tgph-12lz8s4ui", "2xl": "tgph-12lz8s4uj" }, defaultClass: "tgph-12lz8s4uf" }, 60: { conditions: { sm: "tgph-12lz8s4uk", md: "tgph-12lz8s4ul", lg: "tgph-12lz8s4um", xl: "tgph-12lz8s4un", "2xl": "tgph-12lz8s4uo" }, defaultClass: "tgph-12lz8s4uk" }, 64: { conditions: { sm: "tgph-12lz8s4up", md: "tgph-12lz8s4uq", lg: "tgph-12lz8s4ur", xl: "tgph-12lz8s4us", "2xl": "tgph-12lz8s4ut" }, defaultClass: "tgph-12lz8s4up" }, 72: { conditions: { sm: "tgph-12lz8s4uu", md: "tgph-12lz8s4uv", lg: "tgph-12lz8s4uw", xl: "tgph-12lz8s4ux", "2xl": "tgph-12lz8s4uy" }, defaultClass: "tgph-12lz8s4uu" }, 80: { conditions: { sm: "tgph-12lz8s4uz", md: "tgph-12lz8s4v0", lg: "tgph-12lz8s4v1", xl: "tgph-12lz8s4v2", "2xl": "tgph-12lz8s4v3" }, defaultClass: "tgph-12lz8s4uz" }, 96: { conditions: { sm: "tgph-12lz8s4v4", md: "tgph-12lz8s4v5", lg: "tgph-12lz8s4v6", xl: "tgph-12lz8s4v7", "2xl": "tgph-12lz8s4v8" }, defaultClass: "tgph-12lz8s4v4" }, 140: { conditions: { sm: "tgph-12lz8s4v9", md: "tgph-12lz8s4va", lg: "tgph-12lz8s4vb", xl: "tgph-12lz8s4vc", "2xl": "tgph-12lz8s4vd" }, defaultClass: "tgph-12lz8s4v9" }, 160: { conditions: { sm: "tgph-12lz8s4ve", md: "tgph-12lz8s4vf", lg: "tgph-12lz8s4vg", xl: "tgph-12lz8s4vh", "2xl": "tgph-12lz8s4vi" }, defaultClass: "tgph-12lz8s4ve" }, px: { conditions: { sm: "tgph-12lz8s4vj", md: "tgph-12lz8s4vk", lg: "tgph-12lz8s4vl", xl: "tgph-12lz8s4vm", "2xl": "tgph-12lz8s4vn" }, defaultClass: "tgph-12lz8s4vj" }, full: { conditions: { sm: "tgph-12lz8s4vo", md: "tgph-12lz8s4vp", lg: "tgph-12lz8s4vq", xl: "tgph-12lz8s4vr", "2xl": "tgph-12lz8s4vs" }, defaultClass: "tgph-12lz8s4vo" }, auto: { conditions: { sm: "tgph-12lz8s4vt", md: "tgph-12lz8s4vu", lg: "tgph-12lz8s4vv", xl: "tgph-12lz8s4vw", "2xl": "tgph-12lz8s4vx" }, defaultClass: "tgph-12lz8s4vt" } }, responsiveArray: void 0 }, borderRightWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s4vy", md: "tgph-12lz8s4vz", lg: "tgph-12lz8s4w0", xl: "tgph-12lz8s4w1", "2xl": "tgph-12lz8s4w2" }, defaultClass: "tgph-12lz8s4vy" }, 1: { conditions: { sm: "tgph-12lz8s4w3", md: "tgph-12lz8s4w4", lg: "tgph-12lz8s4w5", xl: "tgph-12lz8s4w6", "2xl": "tgph-12lz8s4w7" }, defaultClass: "tgph-12lz8s4w3" }, 2: { conditions: { sm: "tgph-12lz8s4w8", md: "tgph-12lz8s4w9", lg: "tgph-12lz8s4wa", xl: "tgph-12lz8s4wb", "2xl": "tgph-12lz8s4wc" }, defaultClass: "tgph-12lz8s4w8" }, 3: { conditions: { sm: "tgph-12lz8s4wd", md: "tgph-12lz8s4we", lg: "tgph-12lz8s4wf", xl: "tgph-12lz8s4wg", "2xl": "tgph-12lz8s4wh" }, defaultClass: "tgph-12lz8s4wd" }, 4: { conditions: { sm: "tgph-12lz8s4wi", md: "tgph-12lz8s4wj", lg: "tgph-12lz8s4wk", xl: "tgph-12lz8s4wl", "2xl": "tgph-12lz8s4wm" }, defaultClass: "tgph-12lz8s4wi" }, 5: { conditions: { sm: "tgph-12lz8s4wn", md: "tgph-12lz8s4wo", lg: "tgph-12lz8s4wp", xl: "tgph-12lz8s4wq", "2xl": "tgph-12lz8s4wr" }, defaultClass: "tgph-12lz8s4wn" }, 6: { conditions: { sm: "tgph-12lz8s4ws", md: "tgph-12lz8s4wt", lg: "tgph-12lz8s4wu", xl: "tgph-12lz8s4wv", "2xl": "tgph-12lz8s4ww" }, defaultClass: "tgph-12lz8s4ws" }, 7: { conditions: { sm: "tgph-12lz8s4wx", md: "tgph-12lz8s4wy", lg: "tgph-12lz8s4wz", xl: "tgph-12lz8s4x0", "2xl": "tgph-12lz8s4x1" }, defaultClass: "tgph-12lz8s4wx" }, 8: { conditions: { sm: "tgph-12lz8s4x2", md: "tgph-12lz8s4x3", lg: "tgph-12lz8s4x4", xl: "tgph-12lz8s4x5", "2xl": "tgph-12lz8s4x6" }, defaultClass: "tgph-12lz8s4x2" }, 9: { conditions: { sm: "tgph-12lz8s4x7", md: "tgph-12lz8s4x8", lg: "tgph-12lz8s4x9", xl: "tgph-12lz8s4xa", "2xl": "tgph-12lz8s4xb" }, defaultClass: "tgph-12lz8s4x7" }, 10: { conditions: { sm: "tgph-12lz8s4xc", md: "tgph-12lz8s4xd", lg: "tgph-12lz8s4xe", xl: "tgph-12lz8s4xf", "2xl": "tgph-12lz8s4xg" }, defaultClass: "tgph-12lz8s4xc" }, 11: { conditions: { sm: "tgph-12lz8s4xh", md: "tgph-12lz8s4xi", lg: "tgph-12lz8s4xj", xl: "tgph-12lz8s4xk", "2xl": "tgph-12lz8s4xl" }, defaultClass: "tgph-12lz8s4xh" }, 12: { conditions: { sm: "tgph-12lz8s4xm", md: "tgph-12lz8s4xn", lg: "tgph-12lz8s4xo", xl: "tgph-12lz8s4xp", "2xl": "tgph-12lz8s4xq" }, defaultClass: "tgph-12lz8s4xm" }, 14: { conditions: { sm: "tgph-12lz8s4xr", md: "tgph-12lz8s4xs", lg: "tgph-12lz8s4xt", xl: "tgph-12lz8s4xu", "2xl": "tgph-12lz8s4xv" }, defaultClass: "tgph-12lz8s4xr" }, 16: { conditions: { sm: "tgph-12lz8s4xw", md: "tgph-12lz8s4xx", lg: "tgph-12lz8s4xy", xl: "tgph-12lz8s4xz", "2xl": "tgph-12lz8s4y0" }, defaultClass: "tgph-12lz8s4xw" }, 20: { conditions: { sm: "tgph-12lz8s4y1", md: "tgph-12lz8s4y2", lg: "tgph-12lz8s4y3", xl: "tgph-12lz8s4y4", "2xl": "tgph-12lz8s4y5" }, defaultClass: "tgph-12lz8s4y1" }, 24: { conditions: { sm: "tgph-12lz8s4y6", md: "tgph-12lz8s4y7", lg: "tgph-12lz8s4y8", xl: "tgph-12lz8s4y9", "2xl": "tgph-12lz8s4ya" }, defaultClass: "tgph-12lz8s4y6" }, 28: { conditions: { sm: "tgph-12lz8s4yb", md: "tgph-12lz8s4yc", lg: "tgph-12lz8s4yd", xl: "tgph-12lz8s4ye", "2xl": "tgph-12lz8s4yf" }, defaultClass: "tgph-12lz8s4yb" }, 32: { conditions: { sm: "tgph-12lz8s4yg", md: "tgph-12lz8s4yh", lg: "tgph-12lz8s4yi", xl: "tgph-12lz8s4yj", "2xl": "tgph-12lz8s4yk" }, defaultClass: "tgph-12lz8s4yg" }, 36: { conditions: { sm: "tgph-12lz8s4yl", md: "tgph-12lz8s4ym", lg: "tgph-12lz8s4yn", xl: "tgph-12lz8s4yo", "2xl": "tgph-12lz8s4yp" }, defaultClass: "tgph-12lz8s4yl" }, 40: { conditions: { sm: "tgph-12lz8s4yq", md: "tgph-12lz8s4yr", lg: "tgph-12lz8s4ys", xl: "tgph-12lz8s4yt", "2xl": "tgph-12lz8s4yu" }, defaultClass: "tgph-12lz8s4yq" }, 44: { conditions: { sm: "tgph-12lz8s4yv", md: "tgph-12lz8s4yw", lg: "tgph-12lz8s4yx", xl: "tgph-12lz8s4yy", "2xl": "tgph-12lz8s4yz" }, defaultClass: "tgph-12lz8s4yv" }, 48: { conditions: { sm: "tgph-12lz8s4z0", md: "tgph-12lz8s4z1", lg: "tgph-12lz8s4z2", xl: "tgph-12lz8s4z3", "2xl": "tgph-12lz8s4z4" }, defaultClass: "tgph-12lz8s4z0" }, 52: { conditions: { sm: "tgph-12lz8s4z5", md: "tgph-12lz8s4z6", lg: "tgph-12lz8s4z7", xl: "tgph-12lz8s4z8", "2xl": "tgph-12lz8s4z9" }, defaultClass: "tgph-12lz8s4z5" }, 56: { conditions: { sm: "tgph-12lz8s4za", md: "tgph-12lz8s4zb", lg: "tgph-12lz8s4zc", xl: "tgph-12lz8s4zd", "2xl": "tgph-12lz8s4ze" }, defaultClass: "tgph-12lz8s4za" }, 60: { conditions: { sm: "tgph-12lz8s4zf", md: "tgph-12lz8s4zg", lg: "tgph-12lz8s4zh", xl: "tgph-12lz8s4zi", "2xl": "tgph-12lz8s4zj" }, defaultClass: "tgph-12lz8s4zf" }, 64: { conditions: { sm: "tgph-12lz8s4zk", md: "tgph-12lz8s4zl", lg: "tgph-12lz8s4zm", xl: "tgph-12lz8s4zn", "2xl": "tgph-12lz8s4zo" }, defaultClass: "tgph-12lz8s4zk" }, 72: { conditions: { sm: "tgph-12lz8s4zp", md: "tgph-12lz8s4zq", lg: "tgph-12lz8s4zr", xl: "tgph-12lz8s4zs", "2xl": "tgph-12lz8s4zt" }, defaultClass: "tgph-12lz8s4zp" }, 80: { conditions: { sm: "tgph-12lz8s4zu", md: "tgph-12lz8s4zv", lg: "tgph-12lz8s4zw", xl: "tgph-12lz8s4zx", "2xl": "tgph-12lz8s4zy" }, defaultClass: "tgph-12lz8s4zu" }, 96: { conditions: { sm: "tgph-12lz8s4zz", md: "tgph-12lz8s4100", lg: "tgph-12lz8s4101", xl: "tgph-12lz8s4102", "2xl": "tgph-12lz8s4103" }, defaultClass: "tgph-12lz8s4zz" }, 140: { conditions: { sm: "tgph-12lz8s4104", md: "tgph-12lz8s4105", lg: "tgph-12lz8s4106", xl: "tgph-12lz8s4107", "2xl": "tgph-12lz8s4108" }, defaultClass: "tgph-12lz8s4104" }, 160: { conditions: { sm: "tgph-12lz8s4109", md: "tgph-12lz8s410a", lg: "tgph-12lz8s410b", xl: "tgph-12lz8s410c", "2xl": "tgph-12lz8s410d" }, defaultClass: "tgph-12lz8s4109" }, px: { conditions: { sm: "tgph-12lz8s410e", md: "tgph-12lz8s410f", lg: "tgph-12lz8s410g", xl: "tgph-12lz8s410h", "2xl": "tgph-12lz8s410i" }, defaultClass: "tgph-12lz8s410e" }, full: { conditions: { sm: "tgph-12lz8s410j", md: "tgph-12lz8s410k", lg: "tgph-12lz8s410l", xl: "tgph-12lz8s410m", "2xl": "tgph-12lz8s410n" }, defaultClass: "tgph-12lz8s410j" }, auto: { conditions: { sm: "tgph-12lz8s410o", md: "tgph-12lz8s410p", lg: "tgph-12lz8s410q", xl: "tgph-12lz8s410r", "2xl": "tgph-12lz8s410s" }, defaultClass: "tgph-12lz8s410o" } }, responsiveArray: void 0 }, borderTopWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s410t", md: "tgph-12lz8s410u", lg: "tgph-12lz8s410v", xl: "tgph-12lz8s410w", "2xl": "tgph-12lz8s410x" }, defaultClass: "tgph-12lz8s410t" }, 1: { conditions: { sm: "tgph-12lz8s410y", md: "tgph-12lz8s410z", lg: "tgph-12lz8s4110", xl: "tgph-12lz8s4111", "2xl": "tgph-12lz8s4112" }, defaultClass: "tgph-12lz8s410y" }, 2: { conditions: { sm: "tgph-12lz8s4113", md: "tgph-12lz8s4114", lg: "tgph-12lz8s4115", xl: "tgph-12lz8s4116", "2xl": "tgph-12lz8s4117" }, defaultClass: "tgph-12lz8s4113" }, 3: { conditions: { sm: "tgph-12lz8s4118", md: "tgph-12lz8s4119", lg: "tgph-12lz8s411a", xl: "tgph-12lz8s411b", "2xl": "tgph-12lz8s411c" }, defaultClass: "tgph-12lz8s4118" }, 4: { conditions: { sm: "tgph-12lz8s411d", md: "tgph-12lz8s411e", lg: "tgph-12lz8s411f", xl: "tgph-12lz8s411g", "2xl": "tgph-12lz8s411h" }, defaultClass: "tgph-12lz8s411d" }, 5: { conditions: { sm: "tgph-12lz8s411i", md: "tgph-12lz8s411j", lg: "tgph-12lz8s411k", xl: "tgph-12lz8s411l", "2xl": "tgph-12lz8s411m" }, defaultClass: "tgph-12lz8s411i" }, 6: { conditions: { sm: "tgph-12lz8s411n", md: "tgph-12lz8s411o", lg: "tgph-12lz8s411p", xl: "tgph-12lz8s411q", "2xl": "tgph-12lz8s411r" }, defaultClass: "tgph-12lz8s411n" }, 7: { conditions: { sm: "tgph-12lz8s411s", md: "tgph-12lz8s411t", lg: "tgph-12lz8s411u", xl: "tgph-12lz8s411v", "2xl": "tgph-12lz8s411w" }, defaultClass: "tgph-12lz8s411s" }, 8: { conditions: { sm: "tgph-12lz8s411x", md: "tgph-12lz8s411y", lg: "tgph-12lz8s411z", xl: "tgph-12lz8s4120", "2xl": "tgph-12lz8s4121" }, defaultClass: "tgph-12lz8s411x" }, 9: { conditions: { sm: "tgph-12lz8s4122", md: "tgph-12lz8s4123", lg: "tgph-12lz8s4124", xl: "tgph-12lz8s4125", "2xl": "tgph-12lz8s4126" }, defaultClass: "tgph-12lz8s4122" }, 10: { conditions: { sm: "tgph-12lz8s4127", md: "tgph-12lz8s4128", lg: "tgph-12lz8s4129", xl: "tgph-12lz8s412a", "2xl": "tgph-12lz8s412b" }, defaultClass: "tgph-12lz8s4127" }, 11: { conditions: { sm: "tgph-12lz8s412c", md: "tgph-12lz8s412d", lg: "tgph-12lz8s412e", xl: "tgph-12lz8s412f", "2xl": "tgph-12lz8s412g" }, defaultClass: "tgph-12lz8s412c" }, 12: { conditions: { sm: "tgph-12lz8s412h", md: "tgph-12lz8s412i", lg: "tgph-12lz8s412j", xl: "tgph-12lz8s412k", "2xl": "tgph-12lz8s412l" }, defaultClass: "tgph-12lz8s412h" }, 14: { conditions: { sm: "tgph-12lz8s412m", md: "tgph-12lz8s412n", lg: "tgph-12lz8s412o", xl: "tgph-12lz8s412p", "2xl": "tgph-12lz8s412q" }, defaultClass: "tgph-12lz8s412m" }, 16: { conditions: { sm: "tgph-12lz8s412r", md: "tgph-12lz8s412s", lg: "tgph-12lz8s412t", xl: "tgph-12lz8s412u", "2xl": "tgph-12lz8s412v" }, defaultClass: "tgph-12lz8s412r" }, 20: { conditions: { sm: "tgph-12lz8s412w", md: "tgph-12lz8s412x", lg: "tgph-12lz8s412y", xl: "tgph-12lz8s412z", "2xl": "tgph-12lz8s4130" }, defaultClass: "tgph-12lz8s412w" }, 24: { conditions: { sm: "tgph-12lz8s4131", md: "tgph-12lz8s4132", lg: "tgph-12lz8s4133", xl: "tgph-12lz8s4134", "2xl": "tgph-12lz8s4135" }, defaultClass: "tgph-12lz8s4131" }, 28: { conditions: { sm: "tgph-12lz8s4136", md: "tgph-12lz8s4137", lg: "tgph-12lz8s4138", xl: "tgph-12lz8s4139", "2xl": "tgph-12lz8s413a" }, defaultClass: "tgph-12lz8s4136" }, 32: { conditions: { sm: "tgph-12lz8s413b", md: "tgph-12lz8s413c", lg: "tgph-12lz8s413d", xl: "tgph-12lz8s413e", "2xl": "tgph-12lz8s413f" }, defaultClass: "tgph-12lz8s413b" }, 36: { conditions: { sm: "tgph-12lz8s413g", md: "tgph-12lz8s413h", lg: "tgph-12lz8s413i", xl: "tgph-12lz8s413j", "2xl": "tgph-12lz8s413k" }, defaultClass: "tgph-12lz8s413g" }, 40: { conditions: { sm: "tgph-12lz8s413l", md: "tgph-12lz8s413m", lg: "tgph-12lz8s413n", xl: "tgph-12lz8s413o", "2xl": "tgph-12lz8s413p" }, defaultClass: "tgph-12lz8s413l" }, 44: { conditions: { sm: "tgph-12lz8s413q", md: "tgph-12lz8s413r", lg: "tgph-12lz8s413s", xl: "tgph-12lz8s413t", "2xl": "tgph-12lz8s413u" }, defaultClass: "tgph-12lz8s413q" }, 48: { conditions: { sm: "tgph-12lz8s413v", md: "tgph-12lz8s413w", lg: "tgph-12lz8s413x", xl: "tgph-12lz8s413y", "2xl": "tgph-12lz8s413z" }, defaultClass: "tgph-12lz8s413v" }, 52: { conditions: { sm: "tgph-12lz8s4140", md: "tgph-12lz8s4141", lg: "tgph-12lz8s4142", xl: "tgph-12lz8s4143", "2xl": "tgph-12lz8s4144" }, defaultClass: "tgph-12lz8s4140" }, 56: { conditions: { sm: "tgph-12lz8s4145", md: "tgph-12lz8s4146", lg: "tgph-12lz8s4147", xl: "tgph-12lz8s4148", "2xl": "tgph-12lz8s4149" }, defaultClass: "tgph-12lz8s4145" }, 60: { conditions: { sm: "tgph-12lz8s414a", md: "tgph-12lz8s414b", lg: "tgph-12lz8s414c", xl: "tgph-12lz8s414d", "2xl": "tgph-12lz8s414e" }, defaultClass: "tgph-12lz8s414a" }, 64: { conditions: { sm: "tgph-12lz8s414f", md: "tgph-12lz8s414g", lg: "tgph-12lz8s414h", xl: "tgph-12lz8s414i", "2xl": "tgph-12lz8s414j" }, defaultClass: "tgph-12lz8s414f" }, 72: { conditions: { sm: "tgph-12lz8s414k", md: "tgph-12lz8s414l", lg: "tgph-12lz8s414m", xl: "tgph-12lz8s414n", "2xl": "tgph-12lz8s414o" }, defaultClass: "tgph-12lz8s414k" }, 80: { conditions: { sm: "tgph-12lz8s414p", md: "tgph-12lz8s414q", lg: "tgph-12lz8s414r", xl: "tgph-12lz8s414s", "2xl": "tgph-12lz8s414t" }, defaultClass: "tgph-12lz8s414p" }, 96: { conditions: { sm: "tgph-12lz8s414u", md: "tgph-12lz8s414v", lg: "tgph-12lz8s414w", xl: "tgph-12lz8s414x", "2xl": "tgph-12lz8s414y" }, defaultClass: "tgph-12lz8s414u" }, 140: { conditions: { sm: "tgph-12lz8s414z", md: "tgph-12lz8s4150", lg: "tgph-12lz8s4151", xl: "tgph-12lz8s4152", "2xl": "tgph-12lz8s4153" }, defaultClass: "tgph-12lz8s414z" }, 160: { conditions: { sm: "tgph-12lz8s4154", md: "tgph-12lz8s4155", lg: "tgph-12lz8s4156", xl: "tgph-12lz8s4157", "2xl": "tgph-12lz8s4158" }, defaultClass: "tgph-12lz8s4154" }, px: { conditions: { sm: "tgph-12lz8s4159", md: "tgph-12lz8s415a", lg: "tgph-12lz8s415b", xl: "tgph-12lz8s415c", "2xl": "tgph-12lz8s415d" }, defaultClass: "tgph-12lz8s4159" }, full: { conditions: { sm: "tgph-12lz8s415e", md: "tgph-12lz8s415f", lg: "tgph-12lz8s415g", xl: "tgph-12lz8s415h", "2xl": "tgph-12lz8s415i" }, defaultClass: "tgph-12lz8s415e" }, auto: { conditions: { sm: "tgph-12lz8s415j", md: "tgph-12lz8s415k", lg: "tgph-12lz8s415l", xl: "tgph-12lz8s415m", "2xl": "tgph-12lz8s415n" }, defaultClass: "tgph-12lz8s415j" } }, responsiveArray: void 0 }, borderColor: { values: { transparent: { conditions: { sm: "tgph-12lz8s415o", md: "tgph-12lz8s415p", lg: "tgph-12lz8s415q", xl: "tgph-12lz8s415r", "2xl": "tgph-12lz8s415s" }, defaultClass: "tgph-12lz8s415o" }, white: { conditions: { sm: "tgph-12lz8s415t", md: "tgph-12lz8s415u", lg: "tgph-12lz8s415v", xl: "tgph-12lz8s415w", "2xl": "tgph-12lz8s415x" }, defaultClass: "tgph-12lz8s415t" }, black: { conditions: { sm: "tgph-12lz8s415y", md: "tgph-12lz8s415z", lg: "tgph-12lz8s4160", xl: "tgph-12lz8s4161", "2xl": "tgph-12lz8s4162" }, defaultClass: "tgph-12lz8s415y" }, "surface-1": { conditions: { sm: "tgph-12lz8s4163", md: "tgph-12lz8s4164", lg: "tgph-12lz8s4165", xl: "tgph-12lz8s4166", "2xl": "tgph-12lz8s4167" }, defaultClass: "tgph-12lz8s4163" }, "surface-2": { conditions: { sm: "tgph-12lz8s4168", md: "tgph-12lz8s4169", lg: "tgph-12lz8s416a", xl: "tgph-12lz8s416b", "2xl": "tgph-12lz8s416c" }, defaultClass: "tgph-12lz8s4168" }, "alpha-white-1": { conditions: { sm: "tgph-12lz8s416d", md: "tgph-12lz8s416e", lg: "tgph-12lz8s416f", xl: "tgph-12lz8s416g", "2xl": "tgph-12lz8s416h" }, defaultClass: "tgph-12lz8s416d" }, "alpha-white-2": { conditions: { sm: "tgph-12lz8s416i", md: "tgph-12lz8s416j", lg: "tgph-12lz8s416k", xl: "tgph-12lz8s416l", "2xl": "tgph-12lz8s416m" }, defaultClass: "tgph-12lz8s416i" }, "alpha-white-3": { conditions: { sm: "tgph-12lz8s416n", md: "tgph-12lz8s416o", lg: "tgph-12lz8s416p", xl: "tgph-12lz8s416q", "2xl": "tgph-12lz8s416r" }, defaultClass: "tgph-12lz8s416n" }, "alpha-white-4": { conditions: { sm: "tgph-12lz8s416s", md: "tgph-12lz8s416t", lg: "tgph-12lz8s416u", xl: "tgph-12lz8s416v", "2xl": "tgph-12lz8s416w" }, defaultClass: "tgph-12lz8s416s" }, "alpha-white-5": { conditions: { sm: "tgph-12lz8s416x", md: "tgph-12lz8s416y", lg: "tgph-12lz8s416z", xl: "tgph-12lz8s4170", "2xl": "tgph-12lz8s4171" }, defaultClass: "tgph-12lz8s416x" }, "alpha-white-6": { conditions: { sm: "tgph-12lz8s4172", md: "tgph-12lz8s4173", lg: "tgph-12lz8s4174", xl: "tgph-12lz8s4175", "2xl": "tgph-12lz8s4176" }, defaultClass: "tgph-12lz8s4172" }, "alpha-white-7": { conditions: { sm: "tgph-12lz8s4177", md: "tgph-12lz8s4178", lg: "tgph-12lz8s4179", xl: "tgph-12lz8s417a", "2xl": "tgph-12lz8s417b" }, defaultClass: "tgph-12lz8s4177" }, "alpha-white-8": { conditions: { sm: "tgph-12lz8s417c", md: "tgph-12lz8s417d", lg: "tgph-12lz8s417e", xl: "tgph-12lz8s417f", "2xl": "tgph-12lz8s417g" }, defaultClass: "tgph-12lz8s417c" }, "alpha-white-9": { conditions: { sm: "tgph-12lz8s417h", md: "tgph-12lz8s417i", lg: "tgph-12lz8s417j", xl: "tgph-12lz8s417k", "2xl": "tgph-12lz8s417l" }, defaultClass: "tgph-12lz8s417h" }, "alpha-white-10": { conditions: { sm: "tgph-12lz8s417m", md: "tgph-12lz8s417n", lg: "tgph-12lz8s417o", xl: "tgph-12lz8s417p", "2xl": "tgph-12lz8s417q" }, defaultClass: "tgph-12lz8s417m" }, "alpha-white-11": { conditions: { sm: "tgph-12lz8s417r", md: "tgph-12lz8s417s", lg: "tgph-12lz8s417t", xl: "tgph-12lz8s417u", "2xl": "tgph-12lz8s417v" }, defaultClass: "tgph-12lz8s417r" }, "alpha-white-12": { conditions: { sm: "tgph-12lz8s417w", md: "tgph-12lz8s417x", lg: "tgph-12lz8s417y", xl: "tgph-12lz8s417z", "2xl": "tgph-12lz8s4180" }, defaultClass: "tgph-12lz8s417w" }, "alpha-black-1": { conditions: { sm: "tgph-12lz8s4181", md: "tgph-12lz8s4182", lg: "tgph-12lz8s4183", xl: "tgph-12lz8s4184", "2xl": "tgph-12lz8s4185" }, defaultClass: "tgph-12lz8s4181" }, "alpha-black-2": { conditions: { sm: "tgph-12lz8s4186", md: "tgph-12lz8s4187", lg: "tgph-12lz8s4188", xl: "tgph-12lz8s4189", "2xl": "tgph-12lz8s418a" }, defaultClass: "tgph-12lz8s4186" }, "alpha-black-3": { conditions: { sm: "tgph-12lz8s418b", md: "tgph-12lz8s418c", lg: "tgph-12lz8s418d", xl: "tgph-12lz8s418e", "2xl": "tgph-12lz8s418f" }, defaultClass: "tgph-12lz8s418b" }, "alpha-black-4": { conditions: { sm: "tgph-12lz8s418g", md: "tgph-12lz8s418h", lg: "tgph-12lz8s418i", xl: "tgph-12lz8s418j", "2xl": "tgph-12lz8s418k" }, defaultClass: "tgph-12lz8s418g" }, "alpha-black-5": { conditions: { sm: "tgph-12lz8s418l", md: "tgph-12lz8s418m", lg: "tgph-12lz8s418n", xl: "tgph-12lz8s418o", "2xl": "tgph-12lz8s418p" }, defaultClass: "tgph-12lz8s418l" }, "alpha-black-6": { conditions: { sm: "tgph-12lz8s418q", md: "tgph-12lz8s418r", lg: "tgph-12lz8s418s", xl: "tgph-12lz8s418t", "2xl": "tgph-12lz8s418u" }, defaultClass: "tgph-12lz8s418q" }, "alpha-black-7": { conditions: { sm: "tgph-12lz8s418v", md: "tgph-12lz8s418w", lg: "tgph-12lz8s418x", xl: "tgph-12lz8s418y", "2xl": "tgph-12lz8s418z" }, defaultClass: "tgph-12lz8s418v" }, "alpha-black-8": { conditions: { sm: "tgph-12lz8s4190", md: "tgph-12lz8s4191", lg: "tgph-12lz8s4192", xl: "tgph-12lz8s4193", "2xl": "tgph-12lz8s4194" }, defaultClass: "tgph-12lz8s4190" }, "alpha-black-9": { conditions: { sm: "tgph-12lz8s4195", md: "tgph-12lz8s4196", lg: "tgph-12lz8s4197", xl: "tgph-12lz8s4198", "2xl": "tgph-12lz8s4199" }, defaultClass: "tgph-12lz8s4195" }, "alpha-black-10": { conditions: { sm: "tgph-12lz8s419a", md: "tgph-12lz8s419b", lg: "tgph-12lz8s419c", xl: "tgph-12lz8s419d", "2xl": "tgph-12lz8s419e" }, defaultClass: "tgph-12lz8s419a" }, "alpha-black-11": { conditions: { sm: "tgph-12lz8s419f", md: "tgph-12lz8s419g", lg: "tgph-12lz8s419h", xl: "tgph-12lz8s419i", "2xl": "tgph-12lz8s419j" }, defaultClass: "tgph-12lz8s419f" }, "alpha-black-12": { conditions: { sm: "tgph-12lz8s419k", md: "tgph-12lz8s419l", lg: "tgph-12lz8s419m", xl: "tgph-12lz8s419n", "2xl": "tgph-12lz8s419o" }, defaultClass: "tgph-12lz8s419k" }, "gray-1": { conditions: { sm: "tgph-12lz8s419p", md: "tgph-12lz8s419q", lg: "tgph-12lz8s419r", xl: "tgph-12lz8s419s", "2xl": "tgph-12lz8s419t" }, defaultClass: "tgph-12lz8s419p" }, "gray-2": { conditions: { sm: "tgph-12lz8s419u", md: "tgph-12lz8s419v", lg: "tgph-12lz8s419w", xl: "tgph-12lz8s419x", "2xl": "tgph-12lz8s419y" }, defaultClass: "tgph-12lz8s419u" }, "gray-3": { conditions: { sm: "tgph-12lz8s419z", md: "tgph-12lz8s41a0", lg: "tgph-12lz8s41a1", xl: "tgph-12lz8s41a2", "2xl": "tgph-12lz8s41a3" }, defaultClass: "tgph-12lz8s419z" }, "gray-4": { conditions: { sm: "tgph-12lz8s41a4", md: "tgph-12lz8s41a5", lg: "tgph-12lz8s41a6", xl: "tgph-12lz8s41a7", "2xl": "tgph-12lz8s41a8" }, defaultClass: "tgph-12lz8s41a4" }, "gray-5": { conditions: { sm: "tgph-12lz8s41a9", md: "tgph-12lz8s41aa", lg: "tgph-12lz8s41ab", xl: "tgph-12lz8s41ac", "2xl": "tgph-12lz8s41ad" }, defaultClass: "tgph-12lz8s41a9" }, "gray-6": { conditions: { sm: "tgph-12lz8s41ae", md: "tgph-12lz8s41af", lg: "tgph-12lz8s41ag", xl: "tgph-12lz8s41ah", "2xl": "tgph-12lz8s41ai" }, defaultClass: "tgph-12lz8s41ae" }, "gray-7": { conditions: { sm: "tgph-12lz8s41aj", md: "tgph-12lz8s41ak", lg: "tgph-12lz8s41al", xl: "tgph-12lz8s41am", "2xl": "tgph-12lz8s41an" }, defaultClass: "tgph-12lz8s41aj" }, "gray-8": { conditions: { sm: "tgph-12lz8s41ao", md: "tgph-12lz8s41ap", lg: "tgph-12lz8s41aq", xl: "tgph-12lz8s41ar", "2xl": "tgph-12lz8s41as" }, defaultClass: "tgph-12lz8s41ao" }, "gray-9": { conditions: { sm: "tgph-12lz8s41at", md: "tgph-12lz8s41au", lg: "tgph-12lz8s41av", xl: "tgph-12lz8s41aw", "2xl": "tgph-12lz8s41ax" }, defaultClass: "tgph-12lz8s41at" }, "gray-10": { conditions: { sm: "tgph-12lz8s41ay", md: "tgph-12lz8s41az", lg: "tgph-12lz8s41b0", xl: "tgph-12lz8s41b1", "2xl": "tgph-12lz8s41b2" }, defaultClass: "tgph-12lz8s41ay" }, "gray-11": { conditions: { sm: "tgph-12lz8s41b3", md: "tgph-12lz8s41b4", lg: "tgph-12lz8s41b5", xl: "tgph-12lz8s41b6", "2xl": "tgph-12lz8s41b7" }, defaultClass: "tgph-12lz8s41b3" }, "gray-12": { conditions: { sm: "tgph-12lz8s41b8", md: "tgph-12lz8s41b9", lg: "tgph-12lz8s41ba", xl: "tgph-12lz8s41bb", "2xl": "tgph-12lz8s41bc" }, defaultClass: "tgph-12lz8s41b8" }, "beige-1": { conditions: { sm: "tgph-12lz8s41bd", md: "tgph-12lz8s41be", lg: "tgph-12lz8s41bf", xl: "tgph-12lz8s41bg", "2xl": "tgph-12lz8s41bh" }, defaultClass: "tgph-12lz8s41bd" }, "beige-2": { conditions: { sm: "tgph-12lz8s41bi", md: "tgph-12lz8s41bj", lg: "tgph-12lz8s41bk", xl: "tgph-12lz8s41bl", "2xl": "tgph-12lz8s41bm" }, defaultClass: "tgph-12lz8s41bi" }, "beige-3": { conditions: { sm: "tgph-12lz8s41bn", md: "tgph-12lz8s41bo", lg: "tgph-12lz8s41bp", xl: "tgph-12lz8s41bq", "2xl": "tgph-12lz8s41br" }, defaultClass: "tgph-12lz8s41bn" }, "beige-4": { conditions: { sm: "tgph-12lz8s41bs", md: "tgph-12lz8s41bt", lg: "tgph-12lz8s41bu", xl: "tgph-12lz8s41bv", "2xl": "tgph-12lz8s41bw" }, defaultClass: "tgph-12lz8s41bs" }, "beige-5": { conditions: { sm: "tgph-12lz8s41bx", md: "tgph-12lz8s41by", lg: "tgph-12lz8s41bz", xl: "tgph-12lz8s41c0", "2xl": "tgph-12lz8s41c1" }, defaultClass: "tgph-12lz8s41bx" }, "beige-6": { conditions: { sm: "tgph-12lz8s41c2", md: "tgph-12lz8s41c3", lg: "tgph-12lz8s41c4", xl: "tgph-12lz8s41c5", "2xl": "tgph-12lz8s41c6" }, defaultClass: "tgph-12lz8s41c2" }, "beige-7": { conditions: { sm: "tgph-12lz8s41c7", md: "tgph-12lz8s41c8", lg: "tgph-12lz8s41c9", xl: "tgph-12lz8s41ca", "2xl": "tgph-12lz8s41cb" }, defaultClass: "tgph-12lz8s41c7" }, "beige-8": { conditions: { sm: "tgph-12lz8s41cc", md: "tgph-12lz8s41cd", lg: "tgph-12lz8s41ce", xl: "tgph-12lz8s41cf", "2xl": "tgph-12lz8s41cg" }, defaultClass: "tgph-12lz8s41cc" }, "beige-9": { conditions: { sm: "tgph-12lz8s41ch", md: "tgph-12lz8s41ci", lg: "tgph-12lz8s41cj", xl: "tgph-12lz8s41ck", "2xl": "tgph-12lz8s41cl" }, defaultClass: "tgph-12lz8s41ch" }, "beige-10": { conditions: { sm: "tgph-12lz8s41cm", md: "tgph-12lz8s41cn", lg: "tgph-12lz8s41co", xl: "tgph-12lz8s41cp", "2xl": "tgph-12lz8s41cq" }, defaultClass: "tgph-12lz8s41cm" }, "beige-11": { conditions: { sm: "tgph-12lz8s41cr", md: "tgph-12lz8s41cs", lg: "tgph-12lz8s41ct", xl: "tgph-12lz8s41cu", "2xl": "tgph-12lz8s41cv" }, defaultClass: "tgph-12lz8s41cr" }, "beige-12": { conditions: { sm: "tgph-12lz8s41cw", md: "tgph-12lz8s41cx", lg: "tgph-12lz8s41cy", xl: "tgph-12lz8s41cz", "2xl": "tgph-12lz8s41d0" }, defaultClass: "tgph-12lz8s41cw" }, "accent-1": { conditions: { sm: "tgph-12lz8s41d1", md: "tgph-12lz8s41d2", lg: "tgph-12lz8s41d3", xl: "tgph-12lz8s41d4", "2xl": "tgph-12lz8s41d5" }, defaultClass: "tgph-12lz8s41d1" }, "accent-2": { conditions: { sm: "tgph-12lz8s41d6", md: "tgph-12lz8s41d7", lg: "tgph-12lz8s41d8", xl: "tgph-12lz8s41d9", "2xl": "tgph-12lz8s41da" }, defaultClass: "tgph-12lz8s41d6" }, "accent-3": { conditions: { sm: "tgph-12lz8s41db", md: "tgph-12lz8s41dc", lg: "tgph-12lz8s41dd", xl: "tgph-12lz8s41de", "2xl": "tgph-12lz8s41df" }, defaultClass: "tgph-12lz8s41db" }, "accent-4": { conditions: { sm: "tgph-12lz8s41dg", md: "tgph-12lz8s41dh", lg: "tgph-12lz8s41di", xl: "tgph-12lz8s41dj", "2xl": "tgph-12lz8s41dk" }, defaultClass: "tgph-12lz8s41dg" }, "accent-5": { conditions: { sm: "tgph-12lz8s41dl", md: "tgph-12lz8s41dm", lg: "tgph-12lz8s41dn", xl: "tgph-12lz8s41do", "2xl": "tgph-12lz8s41dp" }, defaultClass: "tgph-12lz8s41dl" }, "accent-6": { conditions: { sm: "tgph-12lz8s41dq", md: "tgph-12lz8s41dr", lg: "tgph-12lz8s41ds", xl: "tgph-12lz8s41dt", "2xl": "tgph-12lz8s41du" }, defaultClass: "tgph-12lz8s41dq" }, "accent-7": { conditions: { sm: "tgph-12lz8s41dv", md: "tgph-12lz8s41dw", lg: "tgph-12lz8s41dx", xl: "tgph-12lz8s41dy", "2xl": "tgph-12lz8s41dz" }, defaultClass: "tgph-12lz8s41dv" }, "accent-8": { conditions: { sm: "tgph-12lz8s41e0", md: "tgph-12lz8s41e1", lg: "tgph-12lz8s41e2", xl: "tgph-12lz8s41e3", "2xl": "tgph-12lz8s41e4" }, defaultClass: "tgph-12lz8s41e0" }, "accent-9": { conditions: { sm: "tgph-12lz8s41e5", md: "tgph-12lz8s41e6", lg: "tgph-12lz8s41e7", xl: "tgph-12lz8s41e8", "2xl": "tgph-12lz8s41e9" }, defaultClass: "tgph-12lz8s41e5" }, "accent-10": { conditions: { sm: "tgph-12lz8s41ea", md: "tgph-12lz8s41eb", lg: "tgph-12lz8s41ec", xl: "tgph-12lz8s41ed", "2xl": "tgph-12lz8s41ee" }, defaultClass: "tgph-12lz8s41ea" }, "accent-11": { conditions: { sm: "tgph-12lz8s41ef", md: "tgph-12lz8s41eg", lg: "tgph-12lz8s41eh", xl: "tgph-12lz8s41ei", "2xl": "tgph-12lz8s41ej" }, defaultClass: "tgph-12lz8s41ef" }, "accent-12": { conditions: { sm: "tgph-12lz8s41ek", md: "tgph-12lz8s41el", lg: "tgph-12lz8s41em", xl: "tgph-12lz8s41en", "2xl": "tgph-12lz8s41eo" }, defaultClass: "tgph-12lz8s41ek" }, "green-1": { conditions: { sm: "tgph-12lz8s41ep", md: "tgph-12lz8s41eq", lg: "tgph-12lz8s41er", xl: "tgph-12lz8s41es", "2xl": "tgph-12lz8s41et" }, defaultClass: "tgph-12lz8s41ep" }, "green-2": { conditions: { sm: "tgph-12lz8s41eu", md: "tgph-12lz8s41ev", lg: "tgph-12lz8s41ew", xl: "tgph-12lz8s41ex", "2xl": "tgph-12lz8s41ey" }, defaultClass: "tgph-12lz8s41eu" }, "green-3": { conditions: { sm: "tgph-12lz8s41ez", md: "tgph-12lz8s41f0", lg: "tgph-12lz8s41f1", xl: "tgph-12lz8s41f2", "2xl": "tgph-12lz8s41f3" }, defaultClass: "tgph-12lz8s41ez" }, "green-4": { conditions: { sm: "tgph-12lz8s41f4", md: "tgph-12lz8s41f5", lg: "tgph-12lz8s41f6", xl: "tgph-12lz8s41f7", "2xl": "tgph-12lz8s41f8" }, defaultClass: "tgph-12lz8s41f4" }, "green-5": { conditions: { sm: "tgph-12lz8s41f9", md: "tgph-12lz8s41fa", lg: "tgph-12lz8s41fb", xl: "tgph-12lz8s41fc", "2xl": "tgph-12lz8s41fd" }, defaultClass: "tgph-12lz8s41f9" }, "green-6": { conditions: { sm: "tgph-12lz8s41fe", md: "tgph-12lz8s41ff", lg: "tgph-12lz8s41fg", xl: "tgph-12lz8s41fh", "2xl": "tgph-12lz8s41fi" }, defaultClass: "tgph-12lz8s41fe" }, "green-7": { conditions: { sm: "tgph-12lz8s41fj", md: "tgph-12lz8s41fk", lg: "tgph-12lz8s41fl", xl: "tgph-12lz8s41fm", "2xl": "tgph-12lz8s41fn" }, defaultClass: "tgph-12lz8s41fj" }, "green-8": { conditions: { sm: "tgph-12lz8s41fo", md: "tgph-12lz8s41fp", lg: "tgph-12lz8s41fq", xl: "tgph-12lz8s41fr", "2xl": "tgph-12lz8s41fs" }, defaultClass: "tgph-12lz8s41fo" }, "green-9": { conditions: { sm: "tgph-12lz8s41ft", md: "tgph-12lz8s41fu", lg: "tgph-12lz8s41fv", xl: "tgph-12lz8s41fw", "2xl": "tgph-12lz8s41fx" }, defaultClass: "tgph-12lz8s41ft" }, "green-10": { conditions: { sm: "tgph-12lz8s41fy", md: "tgph-12lz8s41fz", lg: "tgph-12lz8s41g0", xl: "tgph-12lz8s41g1", "2xl": "tgph-12lz8s41g2" }, defaultClass: "tgph-12lz8s41fy" }, "green-11": { conditions: { sm: "tgph-12lz8s41g3", md: "tgph-12lz8s41g4", lg: "tgph-12lz8s41g5", xl: "tgph-12lz8s41g6", "2xl": "tgph-12lz8s41g7" }, defaultClass: "tgph-12lz8s41g3" }, "green-12": { conditions: { sm: "tgph-12lz8s41g8", md: "tgph-12lz8s41g9", lg: "tgph-12lz8s41ga", xl: "tgph-12lz8s41gb", "2xl": "tgph-12lz8s41gc" }, defaultClass: "tgph-12lz8s41g8" }, "yellow-1": { conditions: { sm: "tgph-12lz8s41gd", md: "tgph-12lz8s41ge", lg: "tgph-12lz8s41gf", xl: "tgph-12lz8s41gg", "2xl": "tgph-12lz8s41gh" }, defaultClass: "tgph-12lz8s41gd" }, "yellow-2": { conditions: { sm: "tgph-12lz8s41gi", md: "tgph-12lz8s41gj", lg: "tgph-12lz8s41gk", xl: "tgph-12lz8s41gl", "2xl": "tgph-12lz8s41gm" }, defaultClass: "tgph-12lz8s41gi" }, "yellow-3": { conditions: { sm: "tgph-12lz8s41gn", md: "tgph-12lz8s41go", lg: "tgph-12lz8s41gp", xl: "tgph-12lz8s41gq", "2xl": "tgph-12lz8s41gr" }, defaultClass: "tgph-12lz8s41gn" }, "yellow-4": { conditions: { sm: "tgph-12lz8s41gs", md: "tgph-12lz8s41gt", lg: "tgph-12lz8s41gu", xl: "tgph-12lz8s41gv", "2xl": "tgph-12lz8s41gw" }, defaultClass: "tgph-12lz8s41gs" }, "yellow-5": { conditions: { sm: "tgph-12lz8s41gx", md: "tgph-12lz8s41gy", lg: "tgph-12lz8s41gz", xl: "tgph-12lz8s41h0", "2xl": "tgph-12lz8s41h1" }, defaultClass: "tgph-12lz8s41gx" }, "yellow-6": { conditions: { sm: "tgph-12lz8s41h2", md: "tgph-12lz8s41h3", lg: "tgph-12lz8s41h4", xl: "tgph-12lz8s41h5", "2xl": "tgph-12lz8s41h6" }, defaultClass: "tgph-12lz8s41h2" }, "yellow-7": { conditions: { sm: "tgph-12lz8s41h7", md: "tgph-12lz8s41h8", lg: "tgph-12lz8s41h9", xl: "tgph-12lz8s41ha", "2xl": "tgph-12lz8s41hb" }, defaultClass: "tgph-12lz8s41h7" }, "yellow-8": { conditions: { sm: "tgph-12lz8s41hc", md: "tgph-12lz8s41hd", lg: "tgph-12lz8s41he", xl: "tgph-12lz8s41hf", "2xl": "tgph-12lz8s41hg" }, defaultClass: "tgph-12lz8s41hc" }, "yellow-9": { conditions: { sm: "tgph-12lz8s41hh", md: "tgph-12lz8s41hi", lg: "tgph-12lz8s41hj", xl: "tgph-12lz8s41hk", "2xl": "tgph-12lz8s41hl" }, defaultClass: "tgph-12lz8s41hh" }, "yellow-10": { conditions: { sm: "tgph-12lz8s41hm", md: "tgph-12lz8s41hn", lg: "tgph-12lz8s41ho", xl: "tgph-12lz8s41hp", "2xl": "tgph-12lz8s41hq" }, defaultClass: "tgph-12lz8s41hm" }, "yellow-11": { conditions: { sm: "tgph-12lz8s41hr", md: "tgph-12lz8s41hs", lg: "tgph-12lz8s41ht", xl: "tgph-12lz8s41hu", "2xl": "tgph-12lz8s41hv" }, defaultClass: "tgph-12lz8s41hr" }, "yellow-12": { conditions: { sm: "tgph-12lz8s41hw", md: "tgph-12lz8s41hx", lg: "tgph-12lz8s41hy", xl: "tgph-12lz8s41hz", "2xl": "tgph-12lz8s41i0" }, defaultClass: "tgph-12lz8s41hw" }, "blue-1": { conditions: { sm: "tgph-12lz8s41i1", md: "tgph-12lz8s41i2", lg: "tgph-12lz8s41i3", xl: "tgph-12lz8s41i4", "2xl": "tgph-12lz8s41i5" }, defaultClass: "tgph-12lz8s41i1" }, "blue-2": { conditions: { sm: "tgph-12lz8s41i6", md: "tgph-12lz8s41i7", lg: "tgph-12lz8s41i8", xl: "tgph-12lz8s41i9", "2xl": "tgph-12lz8s41ia" }, defaultClass: "tgph-12lz8s41i6" }, "blue-3": { conditions: { sm: "tgph-12lz8s41ib", md: "tgph-12lz8s41ic", lg: "tgph-12lz8s41id", xl: "tgph-12lz8s41ie", "2xl": "tgph-12lz8s41if" }, defaultClass: "tgph-12lz8s41ib" }, "blue-4": { conditions: { sm: "tgph-12lz8s41ig", md: "tgph-12lz8s41ih", lg: "tgph-12lz8s41ii", xl: "tgph-12lz8s41ij", "2xl": "tgph-12lz8s41ik" }, defaultClass: "tgph-12lz8s41ig" }, "blue-5": { conditions: { sm: "tgph-12lz8s41il", md: "tgph-12lz8s41im", lg: "tgph-12lz8s41in", xl: "tgph-12lz8s41io", "2xl": "tgph-12lz8s41ip" }, defaultClass: "tgph-12lz8s41il" }, "blue-6": { conditions: { sm: "tgph-12lz8s41iq", md: "tgph-12lz8s41ir", lg: "tgph-12lz8s41is", xl: "tgph-12lz8s41it", "2xl": "tgph-12lz8s41iu" }, defaultClass: "tgph-12lz8s41iq" }, "blue-7": { conditions: { sm: "tgph-12lz8s41iv", md: "tgph-12lz8s41iw", lg: "tgph-12lz8s41ix", xl: "tgph-12lz8s41iy", "2xl": "tgph-12lz8s41iz" }, defaultClass: "tgph-12lz8s41iv" }, "blue-8": { conditions: { sm: "tgph-12lz8s41j0", md: "tgph-12lz8s41j1", lg: "tgph-12lz8s41j2", xl: "tgph-12lz8s41j3", "2xl": "tgph-12lz8s41j4" }, defaultClass: "tgph-12lz8s41j0" }, "blue-9": { conditions: { sm: "tgph-12lz8s41j5", md: "tgph-12lz8s41j6", lg: "tgph-12lz8s41j7", xl: "tgph-12lz8s41j8", "2xl": "tgph-12lz8s41j9" }, defaultClass: "tgph-12lz8s41j5" }, "blue-10": { conditions: { sm: "tgph-12lz8s41ja", md: "tgph-12lz8s41jb", lg: "tgph-12lz8s41jc", xl: "tgph-12lz8s41jd", "2xl": "tgph-12lz8s41je" }, defaultClass: "tgph-12lz8s41ja" }, "blue-11": { conditions: { sm: "tgph-12lz8s41jf", md: "tgph-12lz8s41jg", lg: "tgph-12lz8s41jh", xl: "tgph-12lz8s41ji", "2xl": "tgph-12lz8s41jj" }, defaultClass: "tgph-12lz8s41jf" }, "blue-12": { conditions: { sm: "tgph-12lz8s41jk", md: "tgph-12lz8s41jl", lg: "tgph-12lz8s41jm", xl: "tgph-12lz8s41jn", "2xl": "tgph-12lz8s41jo" }, defaultClass: "tgph-12lz8s41jk" }, "red-1": { conditions: { sm: "tgph-12lz8s41jp", md: "tgph-12lz8s41jq", lg: "tgph-12lz8s41jr", xl: "tgph-12lz8s41js", "2xl": "tgph-12lz8s41jt" }, defaultClass: "tgph-12lz8s41jp" }, "red-2": { conditions: { sm: "tgph-12lz8s41ju", md: "tgph-12lz8s41jv", lg: "tgph-12lz8s41jw", xl: "tgph-12lz8s41jx", "2xl": "tgph-12lz8s41jy" }, defaultClass: "tgph-12lz8s41ju" }, "red-3": { conditions: { sm: "tgph-12lz8s41jz", md: "tgph-12lz8s41k0", lg: "tgph-12lz8s41k1", xl: "tgph-12lz8s41k2", "2xl": "tgph-12lz8s41k3" }, defaultClass: "tgph-12lz8s41jz" }, "red-4": { conditions: { sm: "tgph-12lz8s41k4", md: "tgph-12lz8s41k5", lg: "tgph-12lz8s41k6", xl: "tgph-12lz8s41k7", "2xl": "tgph-12lz8s41k8" }, defaultClass: "tgph-12lz8s41k4" }, "red-5": { conditions: { sm: "tgph-12lz8s41k9", md: "tgph-12lz8s41ka", lg: "tgph-12lz8s41kb", xl: "tgph-12lz8s41kc", "2xl": "tgph-12lz8s41kd" }, defaultClass: "tgph-12lz8s41k9" }, "red-6": { conditions: { sm: "tgph-12lz8s41ke", md: "tgph-12lz8s41kf", lg: "tgph-12lz8s41kg", xl: "tgph-12lz8s41kh", "2xl": "tgph-12lz8s41ki" }, defaultClass: "tgph-12lz8s41ke" }, "red-7": { conditions: { sm: "tgph-12lz8s41kj", md: "tgph-12lz8s41kk", lg: "tgph-12lz8s41kl", xl: "tgph-12lz8s41km", "2xl": "tgph-12lz8s41kn" }, defaultClass: "tgph-12lz8s41kj" }, "red-8": { conditions: { sm: "tgph-12lz8s41ko", md: "tgph-12lz8s41kp", lg: "tgph-12lz8s41kq", xl: "tgph-12lz8s41kr", "2xl": "tgph-12lz8s41ks" }, defaultClass: "tgph-12lz8s41ko" }, "red-9": { conditions: { sm: "tgph-12lz8s41kt", md: "tgph-12lz8s41ku", lg: "tgph-12lz8s41kv", xl: "tgph-12lz8s41kw", "2xl": "tgph-12lz8s41kx" }, defaultClass: "tgph-12lz8s41kt" }, "red-10": { conditions: { sm: "tgph-12lz8s41ky", md: "tgph-12lz8s41kz", lg: "tgph-12lz8s41l0", xl: "tgph-12lz8s41l1", "2xl": "tgph-12lz8s41l2" }, defaultClass: "tgph-12lz8s41ky" }, "red-11": { conditions: { sm: "tgph-12lz8s41l3", md: "tgph-12lz8s41l4", lg: "tgph-12lz8s41l5", xl: "tgph-12lz8s41l6", "2xl": "tgph-12lz8s41l7" }, defaultClass: "tgph-12lz8s41l3" }, "red-12": { conditions: { sm: "tgph-12lz8s41l8", md: "tgph-12lz8s41l9", lg: "tgph-12lz8s41la", xl: "tgph-12lz8s41lb", "2xl": "tgph-12lz8s41lc" }, defaultClass: "tgph-12lz8s41l8" }, "purple-1": { conditions: { sm: "tgph-12lz8s41ld", md: "tgph-12lz8s41le", lg: "tgph-12lz8s41lf", xl: "tgph-12lz8s41lg", "2xl": "tgph-12lz8s41lh" }, defaultClass: "tgph-12lz8s41ld" }, "purple-2": { conditions: { sm: "tgph-12lz8s41li", md: "tgph-12lz8s41lj", lg: "tgph-12lz8s41lk", xl: "tgph-12lz8s41ll", "2xl": "tgph-12lz8s41lm" }, defaultClass: "tgph-12lz8s41li" }, "purple-3": { conditions: { sm: "tgph-12lz8s41ln", md: "tgph-12lz8s41lo", lg: "tgph-12lz8s41lp", xl: "tgph-12lz8s41lq", "2xl": "tgph-12lz8s41lr" }, defaultClass: "tgph-12lz8s41ln" }, "purple-4": { conditions: { sm: "tgph-12lz8s41ls", md: "tgph-12lz8s41lt", lg: "tgph-12lz8s41lu", xl: "tgph-12lz8s41lv", "2xl": "tgph-12lz8s41lw" }, defaultClass: "tgph-12lz8s41ls" }, "purple-5": { conditions: { sm: "tgph-12lz8s41lx", md: "tgph-12lz8s41ly", lg: "tgph-12lz8s41lz", xl: "tgph-12lz8s41m0", "2xl": "tgph-12lz8s41m1" }, defaultClass: "tgph-12lz8s41lx" }, "purple-6": { conditions: { sm: "tgph-12lz8s41m2", md: "tgph-12lz8s41m3", lg: "tgph-12lz8s41m4", xl: "tgph-12lz8s41m5", "2xl": "tgph-12lz8s41m6" }, defaultClass: "tgph-12lz8s41m2" }, "purple-7": { conditions: { sm: "tgph-12lz8s41m7", md: "tgph-12lz8s41m8", lg: "tgph-12lz8s41m9", xl: "tgph-12lz8s41ma", "2xl": "tgph-12lz8s41mb" }, defaultClass: "tgph-12lz8s41m7" }, "purple-8": { conditions: { sm: "tgph-12lz8s41mc", md: "tgph-12lz8s41md", lg: "tgph-12lz8s41me", xl: "tgph-12lz8s41mf", "2xl": "tgph-12lz8s41mg" }, defaultClass: "tgph-12lz8s41mc" }, "purple-9": { conditions: { sm: "tgph-12lz8s41mh", md: "tgph-12lz8s41mi", lg: "tgph-12lz8s41mj", xl: "tgph-12lz8s41mk", "2xl": "tgph-12lz8s41ml" }, defaultClass: "tgph-12lz8s41mh" }, "purple-10": { conditions: { sm: "tgph-12lz8s41mm", md: "tgph-12lz8s41mn", lg: "tgph-12lz8s41mo", xl: "tgph-12lz8s41mp", "2xl": "tgph-12lz8s41mq" }, defaultClass: "tgph-12lz8s41mm" }, "purple-11": { conditions: { sm: "tgph-12lz8s41mr", md: "tgph-12lz8s41ms", lg: "tgph-12lz8s41mt", xl: "tgph-12lz8s41mu", "2xl": "tgph-12lz8s41mv" }, defaultClass: "tgph-12lz8s41mr" }, "purple-12": { conditions: { sm: "tgph-12lz8s41mw", md: "tgph-12lz8s41mx", lg: "tgph-12lz8s41my", xl: "tgph-12lz8s41mz", "2xl": "tgph-12lz8s41n0" }, defaultClass: "tgph-12lz8s41mw" } }, responsiveArray: void 0 }, borderStyle: { values: { solid: { conditions: { sm: "tgph-12lz8s41n1", md: "tgph-12lz8s41n2", lg: "tgph-12lz8s41n3", xl: "tgph-12lz8s41n4", "2xl": "tgph-12lz8s41n5" }, defaultClass: "tgph-12lz8s41n1" }, dashed: { conditions: { sm: "tgph-12lz8s41n6", md: "tgph-12lz8s41n7", lg: "tgph-12lz8s41n8", xl: "tgph-12lz8s41n9", "2xl": "tgph-12lz8s41na" }, defaultClass: "tgph-12lz8s41n6" } }, responsiveArray: void 0 }, borderRadius: { values: { 0: { conditions: { sm: "tgph-12lz8s41nb", md: "tgph-12lz8s41nc", lg: "tgph-12lz8s41nd", xl: "tgph-12lz8s41ne", "2xl": "tgph-12lz8s41nf" }, defaultClass: "tgph-12lz8s41nb" }, 1: { conditions: { sm: "tgph-12lz8s41ng", md: "tgph-12lz8s41nh", lg: "tgph-12lz8s41ni", xl: "tgph-12lz8s41nj", "2xl": "tgph-12lz8s41nk" }, defaultClass: "tgph-12lz8s41ng" }, 2: { conditions: { sm: "tgph-12lz8s41nl", md: "tgph-12lz8s41nm", lg: "tgph-12lz8s41nn", xl: "tgph-12lz8s41no", "2xl": "tgph-12lz8s41np" }, defaultClass: "tgph-12lz8s41nl" }, 3: { conditions: { sm: "tgph-12lz8s41nq", md: "tgph-12lz8s41nr", lg: "tgph-12lz8s41ns", xl: "tgph-12lz8s41nt", "2xl": "tgph-12lz8s41nu" }, defaultClass: "tgph-12lz8s41nq" }, 4: { conditions: { sm: "tgph-12lz8s41nv", md: "tgph-12lz8s41nw", lg: "tgph-12lz8s41nx", xl: "tgph-12lz8s41ny", "2xl": "tgph-12lz8s41nz" }, defaultClass: "tgph-12lz8s41nv" }, 5: { conditions: { sm: "tgph-12lz8s41o0", md: "tgph-12lz8s41o1", lg: "tgph-12lz8s41o2", xl: "tgph-12lz8s41o3", "2xl": "tgph-12lz8s41o4" }, defaultClass: "tgph-12lz8s41o0" }, 6: { conditions: { sm: "tgph-12lz8s41o5", md: "tgph-12lz8s41o6", lg: "tgph-12lz8s41o7", xl: "tgph-12lz8s41o8", "2xl": "tgph-12lz8s41o9" }, defaultClass: "tgph-12lz8s41o5" }, full: { conditions: { sm: "tgph-12lz8s41oa", md: "tgph-12lz8s41ob", lg: "tgph-12lz8s41oc", xl: "tgph-12lz8s41od", "2xl": "tgph-12lz8s41oe" }, defaultClass: "tgph-12lz8s41oa" } }, responsiveArray: void 0 }, borderRadiusBottomLeft: { values: { 0: { conditions: { sm: "tgph-12lz8s41of", md: "tgph-12lz8s41og", lg: "tgph-12lz8s41oh", xl: "tgph-12lz8s41oi", "2xl": "tgph-12lz8s41oj" }, defaultClass: "tgph-12lz8s41of" }, 1: { conditions: { sm: "tgph-12lz8s41ok", md: "tgph-12lz8s41ol", lg: "tgph-12lz8s41om", xl: "tgph-12lz8s41on", "2xl": "tgph-12lz8s41oo" }, defaultClass: "tgph-12lz8s41ok" }, 2: { conditions: { sm: "tgph-12lz8s41op", md: "tgph-12lz8s41oq", lg: "tgph-12lz8s41or", xl: "tgph-12lz8s41os", "2xl": "tgph-12lz8s41ot" }, defaultClass: "tgph-12lz8s41op" }, 3: { conditions: { sm: "tgph-12lz8s41ou", md: "tgph-12lz8s41ov", lg: "tgph-12lz8s41ow", xl: "tgph-12lz8s41ox", "2xl": "tgph-12lz8s41oy" }, defaultClass: "tgph-12lz8s41ou" }, 4: { conditions: { sm: "tgph-12lz8s41oz", md: "tgph-12lz8s41p0", lg: "tgph-12lz8s41p1", xl: "tgph-12lz8s41p2", "2xl": "tgph-12lz8s41p3" }, defaultClass: "tgph-12lz8s41oz" }, 5: { conditions: { sm: "tgph-12lz8s41p4", md: "tgph-12lz8s41p5", lg: "tgph-12lz8s41p6", xl: "tgph-12lz8s41p7", "2xl": "tgph-12lz8s41p8" }, defaultClass: "tgph-12lz8s41p4" }, 6: { conditions: { sm: "tgph-12lz8s41p9", md: "tgph-12lz8s41pa", lg: "tgph-12lz8s41pb", xl: "tgph-12lz8s41pc", "2xl": "tgph-12lz8s41pd" }, defaultClass: "tgph-12lz8s41p9" }, full: { conditions: { sm: "tgph-12lz8s41pe", md: "tgph-12lz8s41pf", lg: "tgph-12lz8s41pg", xl: "tgph-12lz8s41ph", "2xl": "tgph-12lz8s41pi" }, defaultClass: "tgph-12lz8s41pe" } }, responsiveArray: void 0 }, borderRadiusBottomRight: { values: { 0: { conditions: { sm: "tgph-12lz8s41pj", md: "tgph-12lz8s41pk", lg: "tgph-12lz8s41pl", xl: "tgph-12lz8s41pm", "2xl": "tgph-12lz8s41pn" }, defaultClass: "tgph-12lz8s41pj" }, 1: { conditions: { sm: "tgph-12lz8s41po", md: "tgph-12lz8s41pp", lg: "tgph-12lz8s41pq", xl: "tgph-12lz8s41pr", "2xl": "tgph-12lz8s41ps" }, defaultClass: "tgph-12lz8s41po" }, 2: { conditions: { sm: "tgph-12lz8s41pt", md: "tgph-12lz8s41pu", lg: "tgph-12lz8s41pv", xl: "tgph-12lz8s41pw", "2xl": "tgph-12lz8s41px" }, defaultClass: "tgph-12lz8s41pt" }, 3: { conditions: { sm: "tgph-12lz8s41py", md: "tgph-12lz8s41pz", lg: "tgph-12lz8s41q0", xl: "tgph-12lz8s41q1", "2xl": "tgph-12lz8s41q2" }, defaultClass: "tgph-12lz8s41py" }, 4: { conditions: { sm: "tgph-12lz8s41q3", md: "tgph-12lz8s41q4", lg: "tgph-12lz8s41q5", xl: "tgph-12lz8s41q6", "2xl": "tgph-12lz8s41q7" }, defaultClass: "tgph-12lz8s41q3" }, 5: { conditions: { sm: "tgph-12lz8s41q8", md: "tgph-12lz8s41q9", lg: "tgph-12lz8s41qa", xl: "tgph-12lz8s41qb", "2xl": "tgph-12lz8s41qc" }, defaultClass: "tgph-12lz8s41q8" }, 6: { conditions: { sm: "tgph-12lz8s41qd", md: "tgph-12lz8s41qe", lg: "tgph-12lz8s41qf", xl: "tgph-12lz8s41qg", "2xl": "tgph-12lz8s41qh" }, defaultClass: "tgph-12lz8s41qd" }, full: { conditions: { sm: "tgph-12lz8s41qi", md: "tgph-12lz8s41qj", lg: "tgph-12lz8s41qk", xl: "tgph-12lz8s41ql", "2xl": "tgph-12lz8s41qm" }, defaultClass: "tgph-12lz8s41qi" } }, responsiveArray: void 0 }, borderRadiusTopLeft: { values: { 0: { conditions: { sm: "tgph-12lz8s41qn", md: "tgph-12lz8s41qo", lg: "tgph-12lz8s41qp", xl: "tgph-12lz8s41qq", "2xl": "tgph-12lz8s41qr" }, defaultClass: "tgph-12lz8s41qn" }, 1: { conditions: { sm: "tgph-12lz8s41qs", md: "tgph-12lz8s41qt", lg: "tgph-12lz8s41qu", xl: "tgph-12lz8s41qv", "2xl": "tgph-12lz8s41qw" }, defaultClass: "tgph-12lz8s41qs" }, 2: { conditions: { sm: "tgph-12lz8s41qx", md: "tgph-12lz8s41qy", lg: "tgph-12lz8s41qz", xl: "tgph-12lz8s41r0", "2xl": "tgph-12lz8s41r1" }, defaultClass: "tgph-12lz8s41qx" }, 3: { conditions: { sm: "tgph-12lz8s41r2", md: "tgph-12lz8s41r3", lg: "tgph-12lz8s41r4", xl: "tgph-12lz8s41r5", "2xl": "tgph-12lz8s41r6" }, defaultClass: "tgph-12lz8s41r2" }, 4: { conditions: { sm: "tgph-12lz8s41r7", md: "tgph-12lz8s41r8", lg: "tgph-12lz8s41r9", xl: "tgph-12lz8s41ra", "2xl": "tgph-12lz8s41rb" }, defaultClass: "tgph-12lz8s41r7" }, 5: { conditions: { sm: "tgph-12lz8s41rc", md: "tgph-12lz8s41rd", lg: "tgph-12lz8s41re", xl: "tgph-12lz8s41rf", "2xl": "tgph-12lz8s41rg" }, defaultClass: "tgph-12lz8s41rc" }, 6: { conditions: { sm: "tgph-12lz8s41rh", md: "tgph-12lz8s41ri", lg: "tgph-12lz8s41rj", xl: "tgph-12lz8s41rk", "2xl": "tgph-12lz8s41rl" }, defaultClass: "tgph-12lz8s41rh" }, full: { conditions: { sm: "tgph-12lz8s41rm", md: "tgph-12lz8s41rn", lg: "tgph-12lz8s41ro", xl: "tgph-12lz8s41rp", "2xl": "tgph-12lz8s41rq" }, defaultClass: "tgph-12lz8s41rm" } }, responsiveArray: void 0 }, borderRadiusTopRight: { values: { 0: { conditions: { sm: "tgph-12lz8s41rr", md: "tgph-12lz8s41rs", lg: "tgph-12lz8s41rt", xl: "tgph-12lz8s41ru", "2xl": "tgph-12lz8s41rv" }, defaultClass: "tgph-12lz8s41rr" }, 1: { conditions: { sm: "tgph-12lz8s41rw", md: "tgph-12lz8s41rx", lg: "tgph-12lz8s41ry", xl: "tgph-12lz8s41rz", "2xl": "tgph-12lz8s41s0" }, defaultClass: "tgph-12lz8s41rw" }, 2: { conditions: { sm: "tgph-12lz8s41s1", md: "tgph-12lz8s41s2", lg: "tgph-12lz8s41s3", xl: "tgph-12lz8s41s4", "2xl": "tgph-12lz8s41s5" }, defaultClass: "tgph-12lz8s41s1" }, 3: { conditions: { sm: "tgph-12lz8s41s6", md: "tgph-12lz8s41s7", lg: "tgph-12lz8s41s8", xl: "tgph-12lz8s41s9", "2xl": "tgph-12lz8s41sa" }, defaultClass: "tgph-12lz8s41s6" }, 4: { conditions: { sm: "tgph-12lz8s41sb", md: "tgph-12lz8s41sc", lg: "tgph-12lz8s41sd", xl: "tgph-12lz8s41se", "2xl": "tgph-12lz8s41sf" }, defaultClass: "tgph-12lz8s41sb" }, 5: { conditions: { sm: "tgph-12lz8s41sg", md: "tgph-12lz8s41sh", lg: "tgph-12lz8s41si", xl: "tgph-12lz8s41sj", "2xl": "tgph-12lz8s41sk" }, defaultClass: "tgph-12lz8s41sg" }, 6: { conditions: { sm: "tgph-12lz8s41sl", md: "tgph-12lz8s41sm", lg: "tgph-12lz8s41sn", xl: "tgph-12lz8s41so", "2xl": "tgph-12lz8s41sp" }, defaultClass: "tgph-12lz8s41sl" }, full: { conditions: { sm: "tgph-12lz8s41sq", md: "tgph-12lz8s41sr", lg: "tgph-12lz8s41ss", xl: "tgph-12lz8s41st", "2xl": "tgph-12lz8s41su" }, defaultClass: "tgph-12lz8s41sq" } }, responsiveArray: void 0 }, boxShadow: { values: { 0: { conditions: { sm: "tgph-12lz8s41sv", md: "tgph-12lz8s41sw", lg: "tgph-12lz8s41sx", xl: "tgph-12lz8s41sy", "2xl": "tgph-12lz8s41sz" }, defaultClass: "tgph-12lz8s41sv" }, 1: { conditions: { sm: "tgph-12lz8s41t0", md: "tgph-12lz8s41t1", lg: "tgph-12lz8s41t2", xl: "tgph-12lz8s41t3", "2xl": "tgph-12lz8s41t4" }, defaultClass: "tgph-12lz8s41t0" }, 2: { conditions: { sm: "tgph-12lz8s41t5", md: "tgph-12lz8s41t6", lg: "tgph-12lz8s41t7", xl: "tgph-12lz8s41t8", "2xl": "tgph-12lz8s41t9" }, defaultClass: "tgph-12lz8s41t5" }, 3: { conditions: { sm: "tgph-12lz8s41ta", md: "tgph-12lz8s41tb", lg: "tgph-12lz8s41tc", xl: "tgph-12lz8s41td", "2xl": "tgph-12lz8s41te" }, defaultClass: "tgph-12lz8s41ta" }, inner: { conditions: { sm: "tgph-12lz8s41tf", md: "tgph-12lz8s41tg", lg: "tgph-12lz8s41th", xl: "tgph-12lz8s41ti", "2xl": "tgph-12lz8s41tj" }, defaultClass: "tgph-12lz8s41tf" } }, responsiveArray: void 0 }, display: { values: { block: { conditions: { sm: "tgph-12lz8s41tk", md: "tgph-12lz8s41tl", lg: "tgph-12lz8s41tm", xl: "tgph-12lz8s41tn", "2xl": "tgph-12lz8s41to" }, defaultClass: "tgph-12lz8s41tk" }, "inline-block": { conditions: { sm: "tgph-12lz8s41tp", md: "tgph-12lz8s41tq", lg: "tgph-12lz8s41tr", xl: "tgph-12lz8s41ts", "2xl": "tgph-12lz8s41tt" }, defaultClass: "tgph-12lz8s41tp" }, inline: { conditions: { sm: "tgph-12lz8s41tu", md: "tgph-12lz8s41tv", lg: "tgph-12lz8s41tw", xl: "tgph-12lz8s41tx", "2xl": "tgph-12lz8s41ty" }, defaultClass: "tgph-12lz8s41tu" }, flex: { conditions: { sm: "tgph-12lz8s41tz", md: "tgph-12lz8s41u0", lg: "tgph-12lz8s41u1", xl: "tgph-12lz8s41u2", "2xl": "tgph-12lz8s41u3" }, defaultClass: "tgph-12lz8s41tz" }, "inline-flex": { conditions: { sm: "tgph-12lz8s41u4", md: "tgph-12lz8s41u5", lg: "tgph-12lz8s41u6", xl: "tgph-12lz8s41u7", "2xl": "tgph-12lz8s41u8" }, defaultClass: "tgph-12lz8s41u4" }, grid: { conditions: { sm: "tgph-12lz8s41u9", md: "tgph-12lz8s41ua", lg: "tgph-12lz8s41ub", xl: "tgph-12lz8s41uc", "2xl": "tgph-12lz8s41ud" }, defaultClass: "tgph-12lz8s41u9" }, none: { conditions: { sm: "tgph-12lz8s41ue", md: "tgph-12lz8s41uf", lg: "tgph-12lz8s41ug", xl: "tgph-12lz8s41uh", "2xl": "tgph-12lz8s41ui" }, defaultClass: "tgph-12lz8s41ue" } }, responsiveArray: void 0 }, height: { values: { 0: { conditions: { sm: "tgph-12lz8s41uj", md: "tgph-12lz8s41uk", lg: "tgph-12lz8s41ul", xl: "tgph-12lz8s41um", "2xl": "tgph-12lz8s41un" }, defaultClass: "tgph-12lz8s41uj" }, 1: { conditions: { sm: "tgph-12lz8s41uo", md: "tgph-12lz8s41up", lg: "tgph-12lz8s41uq", xl: "tgph-12lz8s41ur", "2xl": "tgph-12lz8s41us" }, defaultClass: "tgph-12lz8s41uo" }, 2: { conditions: { sm: "tgph-12lz8s41ut", md: "tgph-12lz8s41uu", lg: "tgph-12lz8s41uv", xl: "tgph-12lz8s41uw", "2xl": "tgph-12lz8s41ux" }, defaultClass: "tgph-12lz8s41ut" }, 3: { conditions: { sm: "tgph-12lz8s41uy", md: "tgph-12lz8s41uz", lg: "tgph-12lz8s41v0", xl: "tgph-12lz8s41v1", "2xl": "tgph-12lz8s41v2" }, defaultClass: "tgph-12lz8s41uy" }, 4: { conditions: { sm: "tgph-12lz8s41v3", md: "tgph-12lz8s41v4", lg: "tgph-12lz8s41v5", xl: "tgph-12lz8s41v6", "2xl": "tgph-12lz8s41v7" }, defaultClass: "tgph-12lz8s41v3" }, 5: { conditions: { sm: "tgph-12lz8s41v8", md: "tgph-12lz8s41v9", lg: "tgph-12lz8s41va", xl: "tgph-12lz8s41vb", "2xl": "tgph-12lz8s41vc" }, defaultClass: "tgph-12lz8s41v8" }, 6: { conditions: { sm: "tgph-12lz8s41vd", md: "tgph-12lz8s41ve", lg: "tgph-12lz8s41vf", xl: "tgph-12lz8s41vg", "2xl": "tgph-12lz8s41vh" }, defaultClass: "tgph-12lz8s41vd" }, 7: { conditions: { sm: "tgph-12lz8s41vi", md: "tgph-12lz8s41vj", lg: "tgph-12lz8s41vk", xl: "tgph-12lz8s41vl", "2xl": "tgph-12lz8s41vm" }, defaultClass: "tgph-12lz8s41vi" }, 8: { conditions: { sm: "tgph-12lz8s41vn", md: "tgph-12lz8s41vo", lg: "tgph-12lz8s41vp", xl: "tgph-12lz8s41vq", "2xl": "tgph-12lz8s41vr" }, defaultClass: "tgph-12lz8s41vn" }, 9: { conditions: { sm: "tgph-12lz8s41vs", md: "tgph-12lz8s41vt", lg: "tgph-12lz8s41vu", xl: "tgph-12lz8s41vv", "2xl": "tgph-12lz8s41vw" }, defaultClass: "tgph-12lz8s41vs" }, 10: { conditions: { sm: "tgph-12lz8s41vx", md: "tgph-12lz8s41vy", lg: "tgph-12lz8s41vz", xl: "tgph-12lz8s41w0", "2xl": "tgph-12lz8s41w1" }, defaultClass: "tgph-12lz8s41vx" }, 11: { conditions: { sm: "tgph-12lz8s41w2", md: "tgph-12lz8s41w3", lg: "tgph-12lz8s41w4", xl: "tgph-12lz8s41w5", "2xl": "tgph-12lz8s41w6" }, defaultClass: "tgph-12lz8s41w2" }, 12: { conditions: { sm: "tgph-12lz8s41w7", md: "tgph-12lz8s41w8", lg: "tgph-12lz8s41w9", xl: "tgph-12lz8s41wa", "2xl": "tgph-12lz8s41wb" }, defaultClass: "tgph-12lz8s41w7" }, 14: { conditions: { sm: "tgph-12lz8s41wc", md: "tgph-12lz8s41wd", lg: "tgph-12lz8s41we", xl: "tgph-12lz8s41wf", "2xl": "tgph-12lz8s41wg" }, defaultClass: "tgph-12lz8s41wc" }, 16: { conditions: { sm: "tgph-12lz8s41wh", md: "tgph-12lz8s41wi", lg: "tgph-12lz8s41wj", xl: "tgph-12lz8s41wk", "2xl": "tgph-12lz8s41wl" }, defaultClass: "tgph-12lz8s41wh" }, 20: { conditions: { sm: "tgph-12lz8s41wm", md: "tgph-12lz8s41wn", lg: "tgph-12lz8s41wo", xl: "tgph-12lz8s41wp", "2xl": "tgph-12lz8s41wq" }, defaultClass: "tgph-12lz8s41wm" }, 24: { conditions: { sm: "tgph-12lz8s41wr", md: "tgph-12lz8s41ws", lg: "tgph-12lz8s41wt", xl: "tgph-12lz8s41wu", "2xl": "tgph-12lz8s41wv" }, defaultClass: "tgph-12lz8s41wr" }, 28: { conditions: { sm: "tgph-12lz8s41ww", md: "tgph-12lz8s41wx", lg: "tgph-12lz8s41wy", xl: "tgph-12lz8s41wz", "2xl": "tgph-12lz8s41x0" }, defaultClass: "tgph-12lz8s41ww" }, 32: { conditions: { sm: "tgph-12lz8s41x1", md: "tgph-12lz8s41x2", lg: "tgph-12lz8s41x3", xl: "tgph-12lz8s41x4", "2xl": "tgph-12lz8s41x5" }, defaultClass: "tgph-12lz8s41x1" }, 36: { conditions: { sm: "tgph-12lz8s41x6", md: "tgph-12lz8s41x7", lg: "tgph-12lz8s41x8", xl: "tgph-12lz8s41x9", "2xl": "tgph-12lz8s41xa" }, defaultClass: "tgph-12lz8s41x6" }, 40: { conditions: { sm: "tgph-12lz8s41xb", md: "tgph-12lz8s41xc", lg: "tgph-12lz8s41xd", xl: "tgph-12lz8s41xe", "2xl": "tgph-12lz8s41xf" }, defaultClass: "tgph-12lz8s41xb" }, 44: { conditions: { sm: "tgph-12lz8s41xg", md: "tgph-12lz8s41xh", lg: "tgph-12lz8s41xi", xl: "tgph-12lz8s41xj", "2xl": "tgph-12lz8s41xk" }, defaultClass: "tgph-12lz8s41xg" }, 48: { conditions: { sm: "tgph-12lz8s41xl", md: "tgph-12lz8s41xm", lg: "tgph-12lz8s41xn", xl: "tgph-12lz8s41xo", "2xl": "tgph-12lz8s41xp" }, defaultClass: "tgph-12lz8s41xl" }, 52: { conditions: { sm: "tgph-12lz8s41xq", md: "tgph-12lz8s41xr", lg: "tgph-12lz8s41xs", xl: "tgph-12lz8s41xt", "2xl": "tgph-12lz8s41xu" }, defaultClass: "tgph-12lz8s41xq" }, 56: { conditions: { sm: "tgph-12lz8s41xv", md: "tgph-12lz8s41xw", lg: "tgph-12lz8s41xx", xl: "tgph-12lz8s41xy", "2xl": "tgph-12lz8s41xz" }, defaultClass: "tgph-12lz8s41xv" }, 60: { conditions: { sm: "tgph-12lz8s41y0", md: "tgph-12lz8s41y1", lg: "tgph-12lz8s41y2", xl: "tgph-12lz8s41y3", "2xl": "tgph-12lz8s41y4" }, defaultClass: "tgph-12lz8s41y0" }, 64: { conditions: { sm: "tgph-12lz8s41y5", md: "tgph-12lz8s41y6", lg: "tgph-12lz8s41y7", xl: "tgph-12lz8s41y8", "2xl": "tgph-12lz8s41y9" }, defaultClass: "tgph-12lz8s41y5" }, 72: { conditions: { sm: "tgph-12lz8s41ya", md: "tgph-12lz8s41yb", lg: "tgph-12lz8s41yc", xl: "tgph-12lz8s41yd", "2xl": "tgph-12lz8s41ye" }, defaultClass: "tgph-12lz8s41ya" }, 80: { conditions: { sm: "tgph-12lz8s41yf", md: "tgph-12lz8s41yg", lg: "tgph-12lz8s41yh", xl: "tgph-12lz8s41yi", "2xl": "tgph-12lz8s41yj" }, defaultClass: "tgph-12lz8s41yf" }, 96: { conditions: { sm: "tgph-12lz8s41yk", md: "tgph-12lz8s41yl", lg: "tgph-12lz8s41ym", xl: "tgph-12lz8s41yn", "2xl": "tgph-12lz8s41yo" }, defaultClass: "tgph-12lz8s41yk" }, 140: { conditions: { sm: "tgph-12lz8s41yp", md: "tgph-12lz8s41yq", lg: "tgph-12lz8s41yr", xl: "tgph-12lz8s41ys", "2xl": "tgph-12lz8s41yt" }, defaultClass: "tgph-12lz8s41yp" }, 160: { conditions: { sm: "tgph-12lz8s41yu", md: "tgph-12lz8s41yv", lg: "tgph-12lz8s41yw", xl: "tgph-12lz8s41yx", "2xl": "tgph-12lz8s41yy" }, defaultClass: "tgph-12lz8s41yu" }, px: { conditions: { sm: "tgph-12lz8s41yz", md: "tgph-12lz8s41z0", lg: "tgph-12lz8s41z1", xl: "tgph-12lz8s41z2", "2xl": "tgph-12lz8s41z3" }, defaultClass: "tgph-12lz8s41yz" }, full: { conditions: { sm: "tgph-12lz8s41z4", md: "tgph-12lz8s41z5", lg: "tgph-12lz8s41z6", xl: "tgph-12lz8s41z7", "2xl": "tgph-12lz8s41z8" }, defaultClass: "tgph-12lz8s41z4" }, auto: { conditions: { sm: "tgph-12lz8s41z9", md: "tgph-12lz8s41za", lg: "tgph-12lz8s41zb", xl: "tgph-12lz8s41zc", "2xl": "tgph-12lz8s41zd" }, defaultClass: "tgph-12lz8s41z9" } }, responsiveArray: void 0 }, margin: { values: { 0: { conditions: { sm: "tgph-12lz8s41ze", md: "tgph-12lz8s41zf", lg: "tgph-12lz8s41zg", xl: "tgph-12lz8s41zh", "2xl": "tgph-12lz8s41zi" }, defaultClass: "tgph-12lz8s41ze" }, 1: { conditions: { sm: "tgph-12lz8s41zj", md: "tgph-12lz8s41zk", lg: "tgph-12lz8s41zl", xl: "tgph-12lz8s41zm", "2xl": "tgph-12lz8s41zn" }, defaultClass: "tgph-12lz8s41zj" }, 2: { conditions: { sm: "tgph-12lz8s41zo", md: "tgph-12lz8s41zp", lg: "tgph-12lz8s41zq", xl: "tgph-12lz8s41zr", "2xl": "tgph-12lz8s41zs" }, defaultClass: "tgph-12lz8s41zo" }, 3: { conditions: { sm: "tgph-12lz8s41zt", md: "tgph-12lz8s41zu", lg: "tgph-12lz8s41zv", xl: "tgph-12lz8s41zw", "2xl": "tgph-12lz8s41zx" }, defaultClass: "tgph-12lz8s41zt" }, 4: { conditions: { sm: "tgph-12lz8s41zy", md: "tgph-12lz8s41zz", lg: "tgph-12lz8s4200", xl: "tgph-12lz8s4201", "2xl": "tgph-12lz8s4202" }, defaultClass: "tgph-12lz8s41zy" }, 5: { conditions: { sm: "tgph-12lz8s4203", md: "tgph-12lz8s4204", lg: "tgph-12lz8s4205", xl: "tgph-12lz8s4206", "2xl": "tgph-12lz8s4207" }, defaultClass: "tgph-12lz8s4203" }, 6: { conditions: { sm: "tgph-12lz8s4208", md: "tgph-12lz8s4209", lg: "tgph-12lz8s420a", xl: "tgph-12lz8s420b", "2xl": "tgph-12lz8s420c" }, defaultClass: "tgph-12lz8s4208" }, 7: { conditions: { sm: "tgph-12lz8s420d", md: "tgph-12lz8s420e", lg: "tgph-12lz8s420f", xl: "tgph-12lz8s420g", "2xl": "tgph-12lz8s420h" }, defaultClass: "tgph-12lz8s420d" }, 8: { conditions: { sm: "tgph-12lz8s420i", md: "tgph-12lz8s420j", lg: "tgph-12lz8s420k", xl: "tgph-12lz8s420l", "2xl": "tgph-12lz8s420m" }, defaultClass: "tgph-12lz8s420i" }, 9: { conditions: { sm: "tgph-12lz8s420n", md: "tgph-12lz8s420o", lg: "tgph-12lz8s420p", xl: "tgph-12lz8s420q", "2xl": "tgph-12lz8s420r" }, defaultClass: "tgph-12lz8s420n" }, 10: { conditions: { sm: "tgph-12lz8s420s", md: "tgph-12lz8s420t", lg: "tgph-12lz8s420u", xl: "tgph-12lz8s420v", "2xl": "tgph-12lz8s420w" }, defaultClass: "tgph-12lz8s420s" }, 11: { conditions: { sm: "tgph-12lz8s420x", md: "tgph-12lz8s420y", lg: "tgph-12lz8s420z", xl: "tgph-12lz8s4210", "2xl": "tgph-12lz8s4211" }, defaultClass: "tgph-12lz8s420x" }, 12: { conditions: { sm: "tgph-12lz8s4212", md: "tgph-12lz8s4213", lg: "tgph-12lz8s4214", xl: "tgph-12lz8s4215", "2xl": "tgph-12lz8s4216" }, defaultClass: "tgph-12lz8s4212" }, 14: { conditions: { sm: "tgph-12lz8s4217", md: "tgph-12lz8s4218", lg: "tgph-12lz8s4219", xl: "tgph-12lz8s421a", "2xl": "tgph-12lz8s421b" }, defaultClass: "tgph-12lz8s4217" }, 16: { conditions: { sm: "tgph-12lz8s421c", md: "tgph-12lz8s421d", lg: "tgph-12lz8s421e", xl: "tgph-12lz8s421f", "2xl": "tgph-12lz8s421g" }, defaultClass: "tgph-12lz8s421c" }, 20: { conditions: { sm: "tgph-12lz8s421h", md: "tgph-12lz8s421i", lg: "tgph-12lz8s421j", xl: "tgph-12lz8s421k", "2xl": "tgph-12lz8s421l" }, defaultClass: "tgph-12lz8s421h" }, 24: { conditions: { sm: "tgph-12lz8s421m", md: "tgph-12lz8s421n", lg: "tgph-12lz8s421o", xl: "tgph-12lz8s421p", "2xl": "tgph-12lz8s421q" }, defaultClass: "tgph-12lz8s421m" }, 28: { conditions: { sm: "tgph-12lz8s421r", md: "tgph-12lz8s421s", lg: "tgph-12lz8s421t", xl: "tgph-12lz8s421u", "2xl": "tgph-12lz8s421v" }, defaultClass: "tgph-12lz8s421r" }, 32: { conditions: { sm: "tgph-12lz8s421w", md: "tgph-12lz8s421x", lg: "tgph-12lz8s421y", xl: "tgph-12lz8s421z", "2xl": "tgph-12lz8s4220" }, defaultClass: "tgph-12lz8s421w" }, 36: { conditions: { sm: "tgph-12lz8s4221", md: "tgph-12lz8s4222", lg: "tgph-12lz8s4223", xl: "tgph-12lz8s4224", "2xl": "tgph-12lz8s4225" }, defaultClass: "tgph-12lz8s4221" }, 40: { conditions: { sm: "tgph-12lz8s4226", md: "tgph-12lz8s4227", lg: "tgph-12lz8s4228", xl: "tgph-12lz8s4229", "2xl": "tgph-12lz8s422a" }, defaultClass: "tgph-12lz8s4226" }, 44: { conditions: { sm: "tgph-12lz8s422b", md: "tgph-12lz8s422c", lg: "tgph-12lz8s422d", xl: "tgph-12lz8s422e", "2xl": "tgph-12lz8s422f" }, defaultClass: "tgph-12lz8s422b" }, 48: { conditions: { sm: "tgph-12lz8s422g", md: "tgph-12lz8s422h", lg: "tgph-12lz8s422i", xl: "tgph-12lz8s422j", "2xl": "tgph-12lz8s422k" }, defaultClass: "tgph-12lz8s422g" }, 52: { conditions: { sm: "tgph-12lz8s422l", md: "tgph-12lz8s422m", lg: "tgph-12lz8s422n", xl: "tgph-12lz8s422o", "2xl": "tgph-12lz8s422p" }, defaultClass: "tgph-12lz8s422l" }, 56: { conditions: { sm: "tgph-12lz8s422q", md: "tgph-12lz8s422r", lg: "tgph-12lz8s422s", xl: "tgph-12lz8s422t", "2xl": "tgph-12lz8s422u" }, defaultClass: "tgph-12lz8s422q" }, 60: { conditions: { sm: "tgph-12lz8s422v", md: "tgph-12lz8s422w", lg: "tgph-12lz8s422x", xl: "tgph-12lz8s422y", "2xl": "tgph-12lz8s422z" }, defaultClass: "tgph-12lz8s422v" }, 64: { conditions: { sm: "tgph-12lz8s4230", md: "tgph-12lz8s4231", lg: "tgph-12lz8s4232", xl: "tgph-12lz8s4233", "2xl": "tgph-12lz8s4234" }, defaultClass: "tgph-12lz8s4230" }, 72: { conditions: { sm: "tgph-12lz8s4235", md: "tgph-12lz8s4236", lg: "tgph-12lz8s4237", xl: "tgph-12lz8s4238", "2xl": "tgph-12lz8s4239" }, defaultClass: "tgph-12lz8s4235" }, 80: { conditions: { sm: "tgph-12lz8s423a", md: "tgph-12lz8s423b", lg: "tgph-12lz8s423c", xl: "tgph-12lz8s423d", "2xl": "tgph-12lz8s423e" }, defaultClass: "tgph-12lz8s423a" }, 96: { conditions: { sm: "tgph-12lz8s423f", md: "tgph-12lz8s423g", lg: "tgph-12lz8s423h", xl: "tgph-12lz8s423i", "2xl": "tgph-12lz8s423j" }, defaultClass: "tgph-12lz8s423f" }, 140: { conditions: { sm: "tgph-12lz8s423k", md: "tgph-12lz8s423l", lg: "tgph-12lz8s423m", xl: "tgph-12lz8s423n", "2xl": "tgph-12lz8s423o" }, defaultClass: "tgph-12lz8s423k" }, 160: { conditions: { sm: "tgph-12lz8s423p", md: "tgph-12lz8s423q", lg: "tgph-12lz8s423r", xl: "tgph-12lz8s423s", "2xl": "tgph-12lz8s423t" }, defaultClass: "tgph-12lz8s423p" }, px: { conditions: { sm: "tgph-12lz8s423u", md: "tgph-12lz8s423v", lg: "tgph-12lz8s423w", xl: "tgph-12lz8s423x", "2xl": "tgph-12lz8s423y" }, defaultClass: "tgph-12lz8s423u" }, full: { conditions: { sm: "tgph-12lz8s423z", md: "tgph-12lz8s4240", lg: "tgph-12lz8s4241", xl: "tgph-12lz8s4242", "2xl": "tgph-12lz8s4243" }, defaultClass: "tgph-12lz8s423z" }, auto: { conditions: { sm: "tgph-12lz8s4244", md: "tgph-12lz8s4245", lg: "tgph-12lz8s4246", xl: "tgph-12lz8s4247", "2xl": "tgph-12lz8s4248" }, defaultClass: "tgph-12lz8s4244" } }, responsiveArray: void 0 }, marginBottom: { values: { 0: { conditions: { sm: "tgph-12lz8s4249", md: "tgph-12lz8s424a", lg: "tgph-12lz8s424b", xl: "tgph-12lz8s424c", "2xl": "tgph-12lz8s424d" }, defaultClass: "tgph-12lz8s4249" }, 1: { conditions: { sm: "tgph-12lz8s424e", md: "tgph-12lz8s424f", lg: "tgph-12lz8s424g", xl: "tgph-12lz8s424h", "2xl": "tgph-12lz8s424i" }, defaultClass: "tgph-12lz8s424e" }, 2: { conditions: { sm: "tgph-12lz8s424j", md: "tgph-12lz8s424k", lg: "tgph-12lz8s424l", xl: "tgph-12lz8s424m", "2xl": "tgph-12lz8s424n" }, defaultClass: "tgph-12lz8s424j" }, 3: { conditions: { sm: "tgph-12lz8s424o", md: "tgph-12lz8s424p", lg: "tgph-12lz8s424q", xl: "tgph-12lz8s424r", "2xl": "tgph-12lz8s424s" }, defaultClass: "tgph-12lz8s424o" }, 4: { conditions: { sm: "tgph-12lz8s424t", md: "tgph-12lz8s424u", lg: "tgph-12lz8s424v", xl: "tgph-12lz8s424w", "2xl": "tgph-12lz8s424x" }, defaultClass: "tgph-12lz8s424t" }, 5: { conditions: { sm: "tgph-12lz8s424y", md: "tgph-12lz8s424z", lg: "tgph-12lz8s4250", xl: "tgph-12lz8s4251", "2xl": "tgph-12lz8s4252" }, defaultClass: "tgph-12lz8s424y" }, 6: { conditions: { sm: "tgph-12lz8s4253", md: "tgph-12lz8s4254", lg: "tgph-12lz8s4255", xl: "tgph-12lz8s4256", "2xl": "tgph-12lz8s4257" }, defaultClass: "tgph-12lz8s4253" }, 7: { conditions: { sm: "tgph-12lz8s4258", md: "tgph-12lz8s4259", lg: "tgph-12lz8s425a", xl: "tgph-12lz8s425b", "2xl": "tgph-12lz8s425c" }, defaultClass: "tgph-12lz8s4258" }, 8: { conditions: { sm: "tgph-12lz8s425d", md: "tgph-12lz8s425e", lg: "tgph-12lz8s425f", xl: "tgph-12lz8s425g", "2xl": "tgph-12lz8s425h" }, defaultClass: "tgph-12lz8s425d" }, 9: { conditions: { sm: "tgph-12lz8s425i", md: "tgph-12lz8s425j", lg: "tgph-12lz8s425k", xl: "tgph-12lz8s425l", "2xl": "tgph-12lz8s425m" }, defaultClass: "tgph-12lz8s425i" }, 10: { conditions: { sm: "tgph-12lz8s425n", md: "tgph-12lz8s425o", lg: "tgph-12lz8s425p", xl: "tgph-12lz8s425q", "2xl": "tgph-12lz8s425r" }, defaultClass: "tgph-12lz8s425n" }, 11: { conditions: { sm: "tgph-12lz8s425s", md: "tgph-12lz8s425t", lg: "tgph-12lz8s425u", xl: "tgph-12lz8s425v", "2xl": "tgph-12lz8s425w" }, defaultClass: "tgph-12lz8s425s" }, 12: { conditions: { sm: "tgph-12lz8s425x", md: "tgph-12lz8s425y", lg: "tgph-12lz8s425z", xl: "tgph-12lz8s4260", "2xl": "tgph-12lz8s4261" }, defaultClass: "tgph-12lz8s425x" }, 14: { conditions: { sm: "tgph-12lz8s4262", md: "tgph-12lz8s4263", lg: "tgph-12lz8s4264", xl: "tgph-12lz8s4265", "2xl": "tgph-12lz8s4266" }, defaultClass: "tgph-12lz8s4262" }, 16: { conditions: { sm: "tgph-12lz8s4267", md: "tgph-12lz8s4268", lg: "tgph-12lz8s4269", xl: "tgph-12lz8s426a", "2xl": "tgph-12lz8s426b" }, defaultClass: "tgph-12lz8s4267" }, 20: { conditions: { sm: "tgph-12lz8s426c", md: "tgph-12lz8s426d", lg: "tgph-12lz8s426e", xl: "tgph-12lz8s426f", "2xl": "tgph-12lz8s426g" }, defaultClass: "tgph-12lz8s426c" }, 24: { conditions: { sm: "tgph-12lz8s426h", md: "tgph-12lz8s426i", lg: "tgph-12lz8s426j", xl: "tgph-12lz8s426k", "2xl": "tgph-12lz8s426l" }, defaultClass: "tgph-12lz8s426h" }, 28: { conditions: { sm: "tgph-12lz8s426m", md: "tgph-12lz8s426n", lg: "tgph-12lz8s426o", xl: "tgph-12lz8s426p", "2xl": "tgph-12lz8s426q" }, defaultClass: "tgph-12lz8s426m" }, 32: { conditions: { sm: "tgph-12lz8s426r", md: "tgph-12lz8s426s", lg: "tgph-12lz8s426t", xl: "tgph-12lz8s426u", "2xl": "tgph-12lz8s426v" }, defaultClass: "tgph-12lz8s426r" }, 36: { conditions: { sm: "tgph-12lz8s426w", md: "tgph-12lz8s426x", lg: "tgph-12lz8s426y", xl: "tgph-12lz8s426z", "2xl": "tgph-12lz8s4270" }, defaultClass: "tgph-12lz8s426w" }, 40: { conditions: { sm: "tgph-12lz8s4271", md: "tgph-12lz8s4272", lg: "tgph-12lz8s4273", xl: "tgph-12lz8s4274", "2xl": "tgph-12lz8s4275" }, defaultClass: "tgph-12lz8s4271" }, 44: { conditions: { sm: "tgph-12lz8s4276", md: "tgph-12lz8s4277", lg: "tgph-12lz8s4278", xl: "tgph-12lz8s4279", "2xl": "tgph-12lz8s427a" }, defaultClass: "tgph-12lz8s4276" }, 48: { conditions: { sm: "tgph-12lz8s427b", md: "tgph-12lz8s427c", lg: "tgph-12lz8s427d", xl: "tgph-12lz8s427e", "2xl": "tgph-12lz8s427f" }, defaultClass: "tgph-12lz8s427b" }, 52: { conditions: { sm: "tgph-12lz8s427g", md: "tgph-12lz8s427h", lg: "tgph-12lz8s427i", xl: "tgph-12lz8s427j", "2xl": "tgph-12lz8s427k" }, defaultClass: "tgph-12lz8s427g" }, 56: { conditions: { sm: "tgph-12lz8s427l", md: "tgph-12lz8s427m", lg: "tgph-12lz8s427n", xl: "tgph-12lz8s427o", "2xl": "tgph-12lz8s427p" }, defaultClass: "tgph-12lz8s427l" }, 60: { conditions: { sm: "tgph-12lz8s427q", md: "tgph-12lz8s427r", lg: "tgph-12lz8s427s", xl: "tgph-12lz8s427t", "2xl": "tgph-12lz8s427u" }, defaultClass: "tgph-12lz8s427q" }, 64: { conditions: { sm: "tgph-12lz8s427v", md: "tgph-12lz8s427w", lg: "tgph-12lz8s427x", xl: "tgph-12lz8s427y", "2xl": "tgph-12lz8s427z" }, defaultClass: "tgph-12lz8s427v" }, 72: { conditions: { sm: "tgph-12lz8s4280", md: "tgph-12lz8s4281", lg: "tgph-12lz8s4282", xl: "tgph-12lz8s4283", "2xl": "tgph-12lz8s4284" }, defaultClass: "tgph-12lz8s4280" }, 80: { conditions: { sm: "tgph-12lz8s4285", md: "tgph-12lz8s4286", lg: "tgph-12lz8s4287", xl: "tgph-12lz8s4288", "2xl": "tgph-12lz8s4289" }, defaultClass: "tgph-12lz8s4285" }, 96: { conditions: { sm: "tgph-12lz8s428a", md: "tgph-12lz8s428b", lg: "tgph-12lz8s428c", xl: "tgph-12lz8s428d", "2xl": "tgph-12lz8s428e" }, defaultClass: "tgph-12lz8s428a" }, 140: { conditions: { sm: "tgph-12lz8s428f", md: "tgph-12lz8s428g", lg: "tgph-12lz8s428h", xl: "tgph-12lz8s428i", "2xl": "tgph-12lz8s428j" }, defaultClass: "tgph-12lz8s428f" }, 160: { conditions: { sm: "tgph-12lz8s428k", md: "tgph-12lz8s428l", lg: "tgph-12lz8s428m", xl: "tgph-12lz8s428n", "2xl": "tgph-12lz8s428o" }, defaultClass: "tgph-12lz8s428k" }, px: { conditions: { sm: "tgph-12lz8s428p", md: "tgph-12lz8s428q", lg: "tgph-12lz8s428r", xl: "tgph-12lz8s428s", "2xl": "tgph-12lz8s428t" }, defaultClass: "tgph-12lz8s428p" }, full: { conditions: { sm: "tgph-12lz8s428u", md: "tgph-12lz8s428v", lg: "tgph-12lz8s428w", xl: "tgph-12lz8s428x", "2xl": "tgph-12lz8s428y" }, defaultClass: "tgph-12lz8s428u" }, auto: { conditions: { sm: "tgph-12lz8s428z", md: "tgph-12lz8s4290", lg: "tgph-12lz8s4291", xl: "tgph-12lz8s4292", "2xl": "tgph-12lz8s4293" }, defaultClass: "tgph-12lz8s428z" } }, responsiveArray: void 0 }, marginLeft: { values: { 0: { conditions: { sm: "tgph-12lz8s4294", md: "tgph-12lz8s4295", lg: "tgph-12lz8s4296", xl: "tgph-12lz8s4297", "2xl": "tgph-12lz8s4298" }, defaultClass: "tgph-12lz8s4294" }, 1: { conditions: { sm: "tgph-12lz8s4299", md: "tgph-12lz8s429a", lg: "tgph-12lz8s429b", xl: "tgph-12lz8s429c", "2xl": "tgph-12lz8s429d" }, defaultClass: "tgph-12lz8s4299" }, 2: { conditions: { sm: "tgph-12lz8s429e", md: "tgph-12lz8s429f", lg: "tgph-12lz8s429g", xl: "tgph-12lz8s429h", "2xl": "tgph-12lz8s429i" }, defaultClass: "tgph-12lz8s429e" }, 3: { conditions: { sm: "tgph-12lz8s429j", md: "tgph-12lz8s429k", lg: "tgph-12lz8s429l", xl: "tgph-12lz8s429m", "2xl": "tgph-12lz8s429n" }, defaultClass: "tgph-12lz8s429j" }, 4: { conditions: { sm: "tgph-12lz8s429o", md: "tgph-12lz8s429p", lg: "tgph-12lz8s429q", xl: "tgph-12lz8s429r", "2xl": "tgph-12lz8s429s" }, defaultClass: "tgph-12lz8s429o" }, 5: { conditions: { sm: "tgph-12lz8s429t", md: "tgph-12lz8s429u", lg: "tgph-12lz8s429v", xl: "tgph-12lz8s429w", "2xl": "tgph-12lz8s429x" }, defaultClass: "tgph-12lz8s429t" }, 6: { conditions: { sm: "tgph-12lz8s429y", md: "tgph-12lz8s429z", lg: "tgph-12lz8s42a0", xl: "tgph-12lz8s42a1", "2xl": "tgph-12lz8s42a2" }, defaultClass: "tgph-12lz8s429y" }, 7: { conditions: { sm: "tgph-12lz8s42a3", md: "tgph-12lz8s42a4", lg: "tgph-12lz8s42a5", xl: "tgph-12lz8s42a6", "2xl": "tgph-12lz8s42a7" }, defaultClass: "tgph-12lz8s42a3" }, 8: { conditions: { sm: "tgph-12lz8s42a8", md: "tgph-12lz8s42a9", lg: "tgph-12lz8s42aa", xl: "tgph-12lz8s42ab", "2xl": "tgph-12lz8s42ac" }, defaultClass: "tgph-12lz8s42a8" }, 9: { conditions: { sm: "tgph-12lz8s42ad", md: "tgph-12lz8s42ae", lg: "tgph-12lz8s42af", xl: "tgph-12lz8s42ag", "2xl": "tgph-12lz8s42ah" }, defaultClass: "tgph-12lz8s42ad" }, 10: { conditions: { sm: "tgph-12lz8s42ai", md: "tgph-12lz8s42aj", lg: "tgph-12lz8s42ak", xl: "tgph-12lz8s42al", "2xl": "tgph-12lz8s42am" }, defaultClass: "tgph-12lz8s42ai" }, 11: { conditions: { sm: "tgph-12lz8s42an", md: "tgph-12lz8s42ao", lg: "tgph-12lz8s42ap", xl: "tgph-12lz8s42aq", "2xl": "tgph-12lz8s42ar" }, defaultClass: "tgph-12lz8s42an" }, 12: { conditions: { sm: "tgph-12lz8s42as", md: "tgph-12lz8s42at", lg: "tgph-12lz8s42au", xl: "tgph-12lz8s42av", "2xl": "tgph-12lz8s42aw" }, defaultClass: "tgph-12lz8s42as" }, 14: { conditions: { sm: "tgph-12lz8s42ax", md: "tgph-12lz8s42ay", lg: "tgph-12lz8s42az", xl: "tgph-12lz8s42b0", "2xl": "tgph-12lz8s42b1" }, defaultClass: "tgph-12lz8s42ax" }, 16: { conditions: { sm: "tgph-12lz8s42b2", md: "tgph-12lz8s42b3", lg: "tgph-12lz8s42b4", xl: "tgph-12lz8s42b5", "2xl": "tgph-12lz8s42b6" }, defaultClass: "tgph-12lz8s42b2" }, 20: { conditions: { sm: "tgph-12lz8s42b7", md: "tgph-12lz8s42b8", lg: "tgph-12lz8s42b9", xl: "tgph-12lz8s42ba", "2xl": "tgph-12lz8s42bb" }, defaultClass: "tgph-12lz8s42b7" }, 24: { conditions: { sm: "tgph-12lz8s42bc", md: "tgph-12lz8s42bd", lg: "tgph-12lz8s42be", xl: "tgph-12lz8s42bf", "2xl": "tgph-12lz8s42bg" }, defaultClass: "tgph-12lz8s42bc" }, 28: { conditions: { sm: "tgph-12lz8s42bh", md: "tgph-12lz8s42bi", lg: "tgph-12lz8s42bj", xl: "tgph-12lz8s42bk", "2xl": "tgph-12lz8s42bl" }, defaultClass: "tgph-12lz8s42bh" }, 32: { conditions: { sm: "tgph-12lz8s42bm", md: "tgph-12lz8s42bn", lg: "tgph-12lz8s42bo", xl: "tgph-12lz8s42bp", "2xl": "tgph-12lz8s42bq" }, defaultClass: "tgph-12lz8s42bm" }, 36: { conditions: { sm: "tgph-12lz8s42br", md: "tgph-12lz8s42bs", lg: "tgph-12lz8s42bt", xl: "tgph-12lz8s42bu", "2xl": "tgph-12lz8s42bv" }, defaultClass: "tgph-12lz8s42br" }, 40: { conditions: { sm: "tgph-12lz8s42bw", md: "tgph-12lz8s42bx", lg: "tgph-12lz8s42by", xl: "tgph-12lz8s42bz", "2xl": "tgph-12lz8s42c0" }, defaultClass: "tgph-12lz8s42bw" }, 44: { conditions: { sm: "tgph-12lz8s42c1", md: "tgph-12lz8s42c2", lg: "tgph-12lz8s42c3", xl: "tgph-12lz8s42c4", "2xl": "tgph-12lz8s42c5" }, defaultClass: "tgph-12lz8s42c1" }, 48: { conditions: { sm: "tgph-12lz8s42c6", md: "tgph-12lz8s42c7", lg: "tgph-12lz8s42c8", xl: "tgph-12lz8s42c9", "2xl": "tgph-12lz8s42ca" }, defaultClass: "tgph-12lz8s42c6" }, 52: { conditions: { sm: "tgph-12lz8s42cb", md: "tgph-12lz8s42cc", lg: "tgph-12lz8s42cd", xl: "tgph-12lz8s42ce", "2xl": "tgph-12lz8s42cf" }, defaultClass: "tgph-12lz8s42cb" }, 56: { conditions: { sm: "tgph-12lz8s42cg", md: "tgph-12lz8s42ch", lg: "tgph-12lz8s42ci", xl: "tgph-12lz8s42cj", "2xl": "tgph-12lz8s42ck" }, defaultClass: "tgph-12lz8s42cg" }, 60: { conditions: { sm: "tgph-12lz8s42cl", md: "tgph-12lz8s42cm", lg: "tgph-12lz8s42cn", xl: "tgph-12lz8s42co", "2xl": "tgph-12lz8s42cp" }, defaultClass: "tgph-12lz8s42cl" }, 64: { conditions: { sm: "tgph-12lz8s42cq", md: "tgph-12lz8s42cr", lg: "tgph-12lz8s42cs", xl: "tgph-12lz8s42ct", "2xl": "tgph-12lz8s42cu" }, defaultClass: "tgph-12lz8s42cq" }, 72: { conditions: { sm: "tgph-12lz8s42cv", md: "tgph-12lz8s42cw", lg: "tgph-12lz8s42cx", xl: "tgph-12lz8s42cy", "2xl": "tgph-12lz8s42cz" }, defaultClass: "tgph-12lz8s42cv" }, 80: { conditions: { sm: "tgph-12lz8s42d0", md: "tgph-12lz8s42d1", lg: "tgph-12lz8s42d2", xl: "tgph-12lz8s42d3", "2xl": "tgph-12lz8s42d4" }, defaultClass: "tgph-12lz8s42d0" }, 96: { conditions: { sm: "tgph-12lz8s42d5", md: "tgph-12lz8s42d6", lg: "tgph-12lz8s42d7", xl: "tgph-12lz8s42d8", "2xl": "tgph-12lz8s42d9" }, defaultClass: "tgph-12lz8s42d5" }, 140: { conditions: { sm: "tgph-12lz8s42da", md: "tgph-12lz8s42db", lg: "tgph-12lz8s42dc", xl: "tgph-12lz8s42dd", "2xl": "tgph-12lz8s42de" }, defaultClass: "tgph-12lz8s42da" }, 160: { conditions: { sm: "tgph-12lz8s42df", md: "tgph-12lz8s42dg", lg: "tgph-12lz8s42dh", xl: "tgph-12lz8s42di", "2xl": "tgph-12lz8s42dj" }, defaultClass: "tgph-12lz8s42df" }, px: { conditions: { sm: "tgph-12lz8s42dk", md: "tgph-12lz8s42dl", lg: "tgph-12lz8s42dm", xl: "tgph-12lz8s42dn", "2xl": "tgph-12lz8s42do" }, defaultClass: "tgph-12lz8s42dk" }, full: { conditions: { sm: "tgph-12lz8s42dp", md: "tgph-12lz8s42dq", lg: "tgph-12lz8s42dr", xl: "tgph-12lz8s42ds", "2xl": "tgph-12lz8s42dt" }, defaultClass: "tgph-12lz8s42dp" }, auto: { conditions: { sm: "tgph-12lz8s42du", md: "tgph-12lz8s42dv", lg: "tgph-12lz8s42dw", xl: "tgph-12lz8s42dx", "2xl": "tgph-12lz8s42dy" }, defaultClass: "tgph-12lz8s42du" } }, responsiveArray: void 0 }, marginRight: { values: { 0: { conditions: { sm: "tgph-12lz8s42dz", md: "tgph-12lz8s42e0", lg: "tgph-12lz8s42e1", xl: "tgph-12lz8s42e2", "2xl": "tgph-12lz8s42e3" }, defaultClass: "tgph-12lz8s42dz" }, 1: { conditions: { sm: "tgph-12lz8s42e4", md: "tgph-12lz8s42e5", lg: "tgph-12lz8s42e6", xl: "tgph-12lz8s42e7", "2xl": "tgph-12lz8s42e8" }, defaultClass: "tgph-12lz8s42e4" }, 2: { conditions: { sm: "tgph-12lz8s42e9", md: "tgph-12lz8s42ea", lg: "tgph-12lz8s42eb", xl: "tgph-12lz8s42ec", "2xl": "tgph-12lz8s42ed" }, defaultClass: "tgph-12lz8s42e9" }, 3: { conditions: { sm: "tgph-12lz8s42ee", md: "tgph-12lz8s42ef", lg: "tgph-12lz8s42eg", xl: "tgph-12lz8s42eh", "2xl": "tgph-12lz8s42ei" }, defaultClass: "tgph-12lz8s42ee" }, 4: { conditions: { sm: "tgph-12lz8s42ej", md: "tgph-12lz8s42ek", lg: "tgph-12lz8s42el", xl: "tgph-12lz8s42em", "2xl": "tgph-12lz8s42en" }, defaultClass: "tgph-12lz8s42ej" }, 5: { conditions: { sm: "tgph-12lz8s42eo", md: "tgph-12lz8s42ep", lg: "tgph-12lz8s42eq", xl: "tgph-12lz8s42er", "2xl": "tgph-12lz8s42es" }, defaultClass: "tgph-12lz8s42eo" }, 6: { conditions: { sm: "tgph-12lz8s42et", md: "tgph-12lz8s42eu", lg: "tgph-12lz8s42ev", xl: "tgph-12lz8s42ew", "2xl": "tgph-12lz8s42ex" }, defaultClass: "tgph-12lz8s42et" }, 7: { conditions: { sm: "tgph-12lz8s42ey", md: "tgph-12lz8s42ez", lg: "tgph-12lz8s42f0", xl: "tgph-12lz8s42f1", "2xl": "tgph-12lz8s42f2" }, defaultClass: "tgph-12lz8s42ey" }, 8: { conditions: { sm: "tgph-12lz8s42f3", md: "tgph-12lz8s42f4", lg: "tgph-12lz8s42f5", xl: "tgph-12lz8s42f6", "2xl": "tgph-12lz8s42f7" }, defaultClass: "tgph-12lz8s42f3" }, 9: { conditions: { sm: "tgph-12lz8s42f8", md: "tgph-12lz8s42f9", lg: "tgph-12lz8s42fa", xl: "tgph-12lz8s42fb", "2xl": "tgph-12lz8s42fc" }, defaultClass: "tgph-12lz8s42f8" }, 10: { conditions: { sm: "tgph-12lz8s42fd", md: "tgph-12lz8s42fe", lg: "tgph-12lz8s42ff", xl: "tgph-12lz8s42fg", "2xl": "tgph-12lz8s42fh" }, defaultClass: "tgph-12lz8s42fd" }, 11: { conditions: { sm: "tgph-12lz8s42fi", md: "tgph-12lz8s42fj", lg: "tgph-12lz8s42fk", xl: "tgph-12lz8s42fl", "2xl": "tgph-12lz8s42fm" }, defaultClass: "tgph-12lz8s42fi" }, 12: { conditions: { sm: "tgph-12lz8s42fn", md: "tgph-12lz8s42fo", lg: "tgph-12lz8s42fp", xl: "tgph-12lz8s42fq", "2xl": "tgph-12lz8s42fr" }, defaultClass: "tgph-12lz8s42fn" }, 14: { conditions: { sm: "tgph-12lz8s42fs", md: "tgph-12lz8s42ft", lg: "tgph-12lz8s42fu", xl: "tgph-12lz8s42fv", "2xl": "tgph-12lz8s42fw" }, defaultClass: "tgph-12lz8s42fs" }, 16: { conditions: { sm: "tgph-12lz8s42fx", md: "tgph-12lz8s42fy", lg: "tgph-12lz8s42fz", xl: "tgph-12lz8s42g0", "2xl": "tgph-12lz8s42g1" }, defaultClass: "tgph-12lz8s42fx" }, 20: { conditions: { sm: "tgph-12lz8s42g2", md: "tgph-12lz8s42g3", lg: "tgph-12lz8s42g4", xl: "tgph-12lz8s42g5", "2xl": "tgph-12lz8s42g6" }, defaultClass: "tgph-12lz8s42g2" }, 24: { conditions: { sm: "tgph-12lz8s42g7", md: "tgph-12lz8s42g8", lg: "tgph-12lz8s42g9", xl: "tgph-12lz8s42ga", "2xl": "tgph-12lz8s42gb" }, defaultClass: "tgph-12lz8s42g7" }, 28: { conditions: { sm: "tgph-12lz8s42gc", md: "tgph-12lz8s42gd", lg: "tgph-12lz8s42ge", xl: "tgph-12lz8s42gf", "2xl": "tgph-12lz8s42gg" }, defaultClass: "tgph-12lz8s42gc" }, 32: { conditions: { sm: "tgph-12lz8s42gh", md: "tgph-12lz8s42gi", lg: "tgph-12lz8s42gj", xl: "tgph-12lz8s42gk", "2xl": "tgph-12lz8s42gl" }, defaultClass: "tgph-12lz8s42gh" }, 36: { conditions: { sm: "tgph-12lz8s42gm", md: "tgph-12lz8s42gn", lg: "tgph-12lz8s42go", xl: "tgph-12lz8s42gp", "2xl": "tgph-12lz8s42gq" }, defaultClass: "tgph-12lz8s42gm" }, 40: { conditions: { sm: "tgph-12lz8s42gr", md: "tgph-12lz8s42gs", lg: "tgph-12lz8s42gt", xl: "tgph-12lz8s42gu", "2xl": "tgph-12lz8s42gv" }, defaultClass: "tgph-12lz8s42gr" }, 44: { conditions: { sm: "tgph-12lz8s42gw", md: "tgph-12lz8s42gx", lg: "tgph-12lz8s42gy", xl: "tgph-12lz8s42gz", "2xl": "tgph-12lz8s42h0" }, defaultClass: "tgph-12lz8s42gw" }, 48: { conditions: { sm: "tgph-12lz8s42h1", md: "tgph-12lz8s42h2", lg: "tgph-12lz8s42h3", xl: "tgph-12lz8s42h4", "2xl": "tgph-12lz8s42h5" }, defaultClass: "tgph-12lz8s42h1" }, 52: { conditions: { sm: "tgph-12lz8s42h6", md: "tgph-12lz8s42h7", lg: "tgph-12lz8s42h8", xl: "tgph-12lz8s42h9", "2xl": "tgph-12lz8s42ha" }, defaultClass: "tgph-12lz8s42h6" }, 56: { conditions: { sm: "tgph-12lz8s42hb", md: "tgph-12lz8s42hc", lg: "tgph-12lz8s42hd", xl: "tgph-12lz8s42he", "2xl": "tgph-12lz8s42hf" }, defaultClass: "tgph-12lz8s42hb" }, 60: { conditions: { sm: "tgph-12lz8s42hg", md: "tgph-12lz8s42hh", lg: "tgph-12lz8s42hi", xl: "tgph-12lz8s42hj", "2xl": "tgph-12lz8s42hk" }, defaultClass: "tgph-12lz8s42hg" }, 64: { conditions: { sm: "tgph-12lz8s42hl", md: "tgph-12lz8s42hm", lg: "tgph-12lz8s42hn", xl: "tgph-12lz8s42ho", "2xl": "tgph-12lz8s42hp" }, defaultClass: "tgph-12lz8s42hl" }, 72: { conditions: { sm: "tgph-12lz8s42hq", md: "tgph-12lz8s42hr", lg: "tgph-12lz8s42hs", xl: "tgph-12lz8s42ht", "2xl": "tgph-12lz8s42hu" }, defaultClass: "tgph-12lz8s42hq" }, 80: { conditions: { sm: "tgph-12lz8s42hv", md: "tgph-12lz8s42hw", lg: "tgph-12lz8s42hx", xl: "tgph-12lz8s42hy", "2xl": "tgph-12lz8s42hz" }, defaultClass: "tgph-12lz8s42hv" }, 96: { conditions: { sm: "tgph-12lz8s42i0", md: "tgph-12lz8s42i1", lg: "tgph-12lz8s42i2", xl: "tgph-12lz8s42i3", "2xl": "tgph-12lz8s42i4" }, defaultClass: "tgph-12lz8s42i0" }, 140: { conditions: { sm: "tgph-12lz8s42i5", md: "tgph-12lz8s42i6", lg: "tgph-12lz8s42i7", xl: "tgph-12lz8s42i8", "2xl": "tgph-12lz8s42i9" }, defaultClass: "tgph-12lz8s42i5" }, 160: { conditions: { sm: "tgph-12lz8s42ia", md: "tgph-12lz8s42ib", lg: "tgph-12lz8s42ic", xl: "tgph-12lz8s42id", "2xl": "tgph-12lz8s42ie" }, defaultClass: "tgph-12lz8s42ia" }, px: { conditions: { sm: "tgph-12lz8s42if", md: "tgph-12lz8s42ig", lg: "tgph-12lz8s42ih", xl: "tgph-12lz8s42ii", "2xl": "tgph-12lz8s42ij" }, defaultClass: "tgph-12lz8s42if" }, full: { conditions: { sm: "tgph-12lz8s42ik", md: "tgph-12lz8s42il", lg: "tgph-12lz8s42im", xl: "tgph-12lz8s42in", "2xl": "tgph-12lz8s42io" }, defaultClass: "tgph-12lz8s42ik" }, auto: { conditions: { sm: "tgph-12lz8s42ip", md: "tgph-12lz8s42iq", lg: "tgph-12lz8s42ir", xl: "tgph-12lz8s42is", "2xl": "tgph-12lz8s42it" }, defaultClass: "tgph-12lz8s42ip" } }, responsiveArray: void 0 }, marginTop: { values: { 0: { conditions: { sm: "tgph-12lz8s42iu", md: "tgph-12lz8s42iv", lg: "tgph-12lz8s42iw", xl: "tgph-12lz8s42ix", "2xl": "tgph-12lz8s42iy" }, defaultClass: "tgph-12lz8s42iu" }, 1: { conditions: { sm: "tgph-12lz8s42iz", md: "tgph-12lz8s42j0", lg: "tgph-12lz8s42j1", xl: "tgph-12lz8s42j2", "2xl": "tgph-12lz8s42j3" }, defaultClass: "tgph-12lz8s42iz" }, 2: { conditions: { sm: "tgph-12lz8s42j4", md: "tgph-12lz8s42j5", lg: "tgph-12lz8s42j6", xl: "tgph-12lz8s42j7", "2xl": "tgph-12lz8s42j8" }, defaultClass: "tgph-12lz8s42j4" }, 3: { conditions: { sm: "tgph-12lz8s42j9", md: "tgph-12lz8s42ja", lg: "tgph-12lz8s42jb", xl: "tgph-12lz8s42jc", "2xl": "tgph-12lz8s42jd" }, defaultClass: "tgph-12lz8s42j9" }, 4: { conditions: { sm: "tgph-12lz8s42je", md: "tgph-12lz8s42jf", lg: "tgph-12lz8s42jg", xl: "tgph-12lz8s42jh", "2xl": "tgph-12lz8s42ji" }, defaultClass: "tgph-12lz8s42je" }, 5: { conditions: { sm: "tgph-12lz8s42jj", md: "tgph-12lz8s42jk", lg: "tgph-12lz8s42jl", xl: "tgph-12lz8s42jm", "2xl": "tgph-12lz8s42jn" }, defaultClass: "tgph-12lz8s42jj" }, 6: { conditions: { sm: "tgph-12lz8s42jo", md: "tgph-12lz8s42jp", lg: "tgph-12lz8s42jq", xl: "tgph-12lz8s42jr", "2xl": "tgph-12lz8s42js" }, defaultClass: "tgph-12lz8s42jo" }, 7: { conditions: { sm: "tgph-12lz8s42jt", md: "tgph-12lz8s42ju", lg: "tgph-12lz8s42jv", xl: "tgph-12lz8s42jw", "2xl": "tgph-12lz8s42jx" }, defaultClass: "tgph-12lz8s42jt" }, 8: { conditions: { sm: "tgph-12lz8s42jy", md: "tgph-12lz8s42jz", lg: "tgph-12lz8s42k0", xl: "tgph-12lz8s42k1", "2xl": "tgph-12lz8s42k2" }, defaultClass: "tgph-12lz8s42jy" }, 9: { conditions: { sm: "tgph-12lz8s42k3", md: "tgph-12lz8s42k4", lg: "tgph-12lz8s42k5", xl: "tgph-12lz8s42k6", "2xl": "tgph-12lz8s42k7" }, defaultClass: "tgph-12lz8s42k3" }, 10: { conditions: { sm: "tgph-12lz8s42k8", md: "tgph-12lz8s42k9", lg: "tgph-12lz8s42ka", xl: "tgph-12lz8s42kb", "2xl": "tgph-12lz8s42kc" }, defaultClass: "tgph-12lz8s42k8" }, 11: { conditions: { sm: "tgph-12lz8s42kd", md: "tgph-12lz8s42ke", lg: "tgph-12lz8s42kf", xl: "tgph-12lz8s42kg", "2xl": "tgph-12lz8s42kh" }, defaultClass: "tgph-12lz8s42kd" }, 12: { conditions: { sm: "tgph-12lz8s42ki", md: "tgph-12lz8s42kj", lg: "tgph-12lz8s42kk", xl: "tgph-12lz8s42kl", "2xl": "tgph-12lz8s42km" }, defaultClass: "tgph-12lz8s42ki" }, 14: { conditions: { sm: "tgph-12lz8s42kn", md: "tgph-12lz8s42ko", lg: "tgph-12lz8s42kp", xl: "tgph-12lz8s42kq", "2xl": "tgph-12lz8s42kr" }, defaultClass: "tgph-12lz8s42kn" }, 16: { conditions: { sm: "tgph-12lz8s42ks", md: "tgph-12lz8s42kt", lg: "tgph-12lz8s42ku", xl: "tgph-12lz8s42kv", "2xl": "tgph-12lz8s42kw" }, defaultClass: "tgph-12lz8s42ks" }, 20: { conditions: { sm: "tgph-12lz8s42kx", md: "tgph-12lz8s42ky", lg: "tgph-12lz8s42kz", xl: "tgph-12lz8s42l0", "2xl": "tgph-12lz8s42l1" }, defaultClass: "tgph-12lz8s42kx" }, 24: { conditions: { sm: "tgph-12lz8s42l2", md: "tgph-12lz8s42l3", lg: "tgph-12lz8s42l4", xl: "tgph-12lz8s42l5", "2xl": "tgph-12lz8s42l6" }, defaultClass: "tgph-12lz8s42l2" }, 28: { conditions: { sm: "tgph-12lz8s42l7", md: "tgph-12lz8s42l8", lg: "tgph-12lz8s42l9", xl: "tgph-12lz8s42la", "2xl": "tgph-12lz8s42lb" }, defaultClass: "tgph-12lz8s42l7" }, 32: { conditions: { sm: "tgph-12lz8s42lc", md: "tgph-12lz8s42ld", lg: "tgph-12lz8s42le", xl: "tgph-12lz8s42lf", "2xl": "tgph-12lz8s42lg" }, defaultClass: "tgph-12lz8s42lc" }, 36: { conditions: { sm: "tgph-12lz8s42lh", md: "tgph-12lz8s42li", lg: "tgph-12lz8s42lj", xl: "tgph-12lz8s42lk", "2xl": "tgph-12lz8s42ll" }, defaultClass: "tgph-12lz8s42lh" }, 40: { conditions: { sm: "tgph-12lz8s42lm", md: "tgph-12lz8s42ln", lg: "tgph-12lz8s42lo", xl: "tgph-12lz8s42lp", "2xl": "tgph-12lz8s42lq" }, defaultClass: "tgph-12lz8s42lm" }, 44: { conditions: { sm: "tgph-12lz8s42lr", md: "tgph-12lz8s42ls", lg: "tgph-12lz8s42lt", xl: "tgph-12lz8s42lu", "2xl": "tgph-12lz8s42lv" }, defaultClass: "tgph-12lz8s42lr" }, 48: { conditions: { sm: "tgph-12lz8s42lw", md: "tgph-12lz8s42lx", lg: "tgph-12lz8s42ly", xl: "tgph-12lz8s42lz", "2xl": "tgph-12lz8s42m0" }, defaultClass: "tgph-12lz8s42lw" }, 52: { conditions: { sm: "tgph-12lz8s42m1", md: "tgph-12lz8s42m2", lg: "tgph-12lz8s42m3", xl: "tgph-12lz8s42m4", "2xl": "tgph-12lz8s42m5" }, defaultClass: "tgph-12lz8s42m1" }, 56: { conditions: { sm: "tgph-12lz8s42m6", md: "tgph-12lz8s42m7", lg: "tgph-12lz8s42m8", xl: "tgph-12lz8s42m9", "2xl": "tgph-12lz8s42ma" }, defaultClass: "tgph-12lz8s42m6" }, 60: { conditions: { sm: "tgph-12lz8s42mb", md: "tgph-12lz8s42mc", lg: "tgph-12lz8s42md", xl: "tgph-12lz8s42me", "2xl": "tgph-12lz8s42mf" }, defaultClass: "tgph-12lz8s42mb" }, 64: { conditions: { sm: "tgph-12lz8s42mg", md: "tgph-12lz8s42mh", lg: "tgph-12lz8s42mi", xl: "tgph-12lz8s42mj", "2xl": "tgph-12lz8s42mk" }, defaultClass: "tgph-12lz8s42mg" }, 72: { conditions: { sm: "tgph-12lz8s42ml", md: "tgph-12lz8s42mm", lg: "tgph-12lz8s42mn", xl: "tgph-12lz8s42mo", "2xl": "tgph-12lz8s42mp" }, defaultClass: "tgph-12lz8s42ml" }, 80: { conditions: { sm: "tgph-12lz8s42mq", md: "tgph-12lz8s42mr", lg: "tgph-12lz8s42ms", xl: "tgph-12lz8s42mt", "2xl": "tgph-12lz8s42mu" }, defaultClass: "tgph-12lz8s42mq" }, 96: { conditions: { sm: "tgph-12lz8s42mv", md: "tgph-12lz8s42mw", lg: "tgph-12lz8s42mx", xl: "tgph-12lz8s42my", "2xl": "tgph-12lz8s42mz" }, defaultClass: "tgph-12lz8s42mv" }, 140: { conditions: { sm: "tgph-12lz8s42n0", md: "tgph-12lz8s42n1", lg: "tgph-12lz8s42n2", xl: "tgph-12lz8s42n3", "2xl": "tgph-12lz8s42n4" }, defaultClass: "tgph-12lz8s42n0" }, 160: { conditions: { sm: "tgph-12lz8s42n5", md: "tgph-12lz8s42n6", lg: "tgph-12lz8s42n7", xl: "tgph-12lz8s42n8", "2xl": "tgph-12lz8s42n9" }, defaultClass: "tgph-12lz8s42n5" }, px: { conditions: { sm: "tgph-12lz8s42na", md: "tgph-12lz8s42nb", lg: "tgph-12lz8s42nc", xl: "tgph-12lz8s42nd", "2xl": "tgph-12lz8s42ne" }, defaultClass: "tgph-12lz8s42na" }, full: { conditions: { sm: "tgph-12lz8s42nf", md: "tgph-12lz8s42ng", lg: "tgph-12lz8s42nh", xl: "tgph-12lz8s42ni", "2xl": "tgph-12lz8s42nj" }, defaultClass: "tgph-12lz8s42nf" }, auto: { conditions: { sm: "tgph-12lz8s42nk", md: "tgph-12lz8s42nl", lg: "tgph-12lz8s42nm", xl: "tgph-12lz8s42nn", "2xl": "tgph-12lz8s42no" }, defaultClass: "tgph-12lz8s42nk" } }, responsiveArray: void 0 }, maxHeight: { values: { 0: { conditions: { sm: "tgph-12lz8s42np", md: "tgph-12lz8s42nq", lg: "tgph-12lz8s42nr", xl: "tgph-12lz8s42ns", "2xl": "tgph-12lz8s42nt" }, defaultClass: "tgph-12lz8s42np" }, 1: { conditions: { sm: "tgph-12lz8s42nu", md: "tgph-12lz8s42nv", lg: "tgph-12lz8s42nw", xl: "tgph-12lz8s42nx", "2xl": "tgph-12lz8s42ny" }, defaultClass: "tgph-12lz8s42nu" }, 2: { conditions: { sm: "tgph-12lz8s42nz", md: "tgph-12lz8s42o0", lg: "tgph-12lz8s42o1", xl: "tgph-12lz8s42o2", "2xl": "tgph-12lz8s42o3" }, defaultClass: "tgph-12lz8s42nz" }, 3: { conditions: { sm: "tgph-12lz8s42o4", md: "tgph-12lz8s42o5", lg: "tgph-12lz8s42o6", xl: "tgph-12lz8s42o7", "2xl": "tgph-12lz8s42o8" }, defaultClass: "tgph-12lz8s42o4" }, 4: { conditions: { sm: "tgph-12lz8s42o9", md: "tgph-12lz8s42oa", lg: "tgph-12lz8s42ob", xl: "tgph-12lz8s42oc", "2xl": "tgph-12lz8s42od" }, defaultClass: "tgph-12lz8s42o9" }, 5: { conditions: { sm: "tgph-12lz8s42oe", md: "tgph-12lz8s42of", lg: "tgph-12lz8s42og", xl: "tgph-12lz8s42oh", "2xl": "tgph-12lz8s42oi" }, defaultClass: "tgph-12lz8s42oe" }, 6: { conditions: { sm: "tgph-12lz8s42oj", md: "tgph-12lz8s42ok", lg: "tgph-12lz8s42ol", xl: "tgph-12lz8s42om", "2xl": "tgph-12lz8s42on" }, defaultClass: "tgph-12lz8s42oj" }, 7: { conditions: { sm: "tgph-12lz8s42oo", md: "tgph-12lz8s42op", lg: "tgph-12lz8s42oq", xl: "tgph-12lz8s42or", "2xl": "tgph-12lz8s42os" }, defaultClass: "tgph-12lz8s42oo" }, 8: { conditions: { sm: "tgph-12lz8s42ot", md: "tgph-12lz8s42ou", lg: "tgph-12lz8s42ov", xl: "tgph-12lz8s42ow", "2xl": "tgph-12lz8s42ox" }, defaultClass: "tgph-12lz8s42ot" }, 9: { conditions: { sm: "tgph-12lz8s42oy", md: "tgph-12lz8s42oz", lg: "tgph-12lz8s42p0", xl: "tgph-12lz8s42p1", "2xl": "tgph-12lz8s42p2" }, defaultClass: "tgph-12lz8s42oy" }, 10: { conditions: { sm: "tgph-12lz8s42p3", md: "tgph-12lz8s42p4", lg: "tgph-12lz8s42p5", xl: "tgph-12lz8s42p6", "2xl": "tgph-12lz8s42p7" }, defaultClass: "tgph-12lz8s42p3" }, 11: { conditions: { sm: "tgph-12lz8s42p8", md: "tgph-12lz8s42p9", lg: "tgph-12lz8s42pa", xl: "tgph-12lz8s42pb", "2xl": "tgph-12lz8s42pc" }, defaultClass: "tgph-12lz8s42p8" }, 12: { conditions: { sm: "tgph-12lz8s42pd", md: "tgph-12lz8s42pe", lg: "tgph-12lz8s42pf", xl: "tgph-12lz8s42pg", "2xl": "tgph-12lz8s42ph" }, defaultClass: "tgph-12lz8s42pd" }, 14: { conditions: { sm: "tgph-12lz8s42pi", md: "tgph-12lz8s42pj", lg: "tgph-12lz8s42pk", xl: "tgph-12lz8s42pl", "2xl": "tgph-12lz8s42pm" }, defaultClass: "tgph-12lz8s42pi" }, 16: { conditions: { sm: "tgph-12lz8s42pn", md: "tgph-12lz8s42po", lg: "tgph-12lz8s42pp", xl: "tgph-12lz8s42pq", "2xl": "tgph-12lz8s42pr" }, defaultClass: "tgph-12lz8s42pn" }, 20: { conditions: { sm: "tgph-12lz8s42ps", md: "tgph-12lz8s42pt", lg: "tgph-12lz8s42pu", xl: "tgph-12lz8s42pv", "2xl": "tgph-12lz8s42pw" }, defaultClass: "tgph-12lz8s42ps" }, 24: { conditions: { sm: "tgph-12lz8s42px", md: "tgph-12lz8s42py", lg: "tgph-12lz8s42pz", xl: "tgph-12lz8s42q0", "2xl": "tgph-12lz8s42q1" }, defaultClass: "tgph-12lz8s42px" }, 28: { conditions: { sm: "tgph-12lz8s42q2", md: "tgph-12lz8s42q3", lg: "tgph-12lz8s42q4", xl: "tgph-12lz8s42q5", "2xl": "tgph-12lz8s42q6" }, defaultClass: "tgph-12lz8s42q2" }, 32: { conditions: { sm: "tgph-12lz8s42q7", md: "tgph-12lz8s42q8", lg: "tgph-12lz8s42q9", xl: "tgph-12lz8s42qa", "2xl": "tgph-12lz8s42qb" }, defaultClass: "tgph-12lz8s42q7" }, 36: { conditions: { sm: "tgph-12lz8s42qc", md: "tgph-12lz8s42qd", lg: "tgph-12lz8s42qe", xl: "tgph-12lz8s42qf", "2xl": "tgph-12lz8s42qg" }, defaultClass: "tgph-12lz8s42qc" }, 40: { conditions: { sm: "tgph-12lz8s42qh", md: "tgph-12lz8s42qi", lg: "tgph-12lz8s42qj", xl: "tgph-12lz8s42qk", "2xl": "tgph-12lz8s42ql" }, defaultClass: "tgph-12lz8s42qh" }, 44: { conditions: { sm: "tgph-12lz8s42qm", md: "tgph-12lz8s42qn", lg: "tgph-12lz8s42qo", xl: "tgph-12lz8s42qp", "2xl": "tgph-12lz8s42qq" }, defaultClass: "tgph-12lz8s42qm" }, 48: { conditions: { sm: "tgph-12lz8s42qr", md: "tgph-12lz8s42qs", lg: "tgph-12lz8s42qt", xl: "tgph-12lz8s42qu", "2xl": "tgph-12lz8s42qv" }, defaultClass: "tgph-12lz8s42qr" }, 52: { conditions: { sm: "tgph-12lz8s42qw", md: "tgph-12lz8s42qx", lg: "tgph-12lz8s42qy", xl: "tgph-12lz8s42qz", "2xl": "tgph-12lz8s42r0" }, defaultClass: "tgph-12lz8s42qw" }, 56: { conditions: { sm: "tgph-12lz8s42r1", md: "tgph-12lz8s42r2", lg: "tgph-12lz8s42r3", xl: "tgph-12lz8s42r4", "2xl": "tgph-12lz8s42r5" }, defaultClass: "tgph-12lz8s42r1" }, 60: { conditions: { sm: "tgph-12lz8s42r6", md: "tgph-12lz8s42r7", lg: "tgph-12lz8s42r8", xl: "tgph-12lz8s42r9", "2xl": "tgph-12lz8s42ra" }, defaultClass: "tgph-12lz8s42r6" }, 64: { conditions: { sm: "tgph-12lz8s42rb", md: "tgph-12lz8s42rc", lg: "tgph-12lz8s42rd", xl: "tgph-12lz8s42re", "2xl": "tgph-12lz8s42rf" }, defaultClass: "tgph-12lz8s42rb" }, 72: { conditions: { sm: "tgph-12lz8s42rg", md: "tgph-12lz8s42rh", lg: "tgph-12lz8s42ri", xl: "tgph-12lz8s42rj", "2xl": "tgph-12lz8s42rk" }, defaultClass: "tgph-12lz8s42rg" }, 80: { conditions: { sm: "tgph-12lz8s42rl", md: "tgph-12lz8s42rm", lg: "tgph-12lz8s42rn", xl: "tgph-12lz8s42ro", "2xl": "tgph-12lz8s42rp" }, defaultClass: "tgph-12lz8s42rl" }, 96: { conditions: { sm: "tgph-12lz8s42rq", md: "tgph-12lz8s42rr", lg: "tgph-12lz8s42rs", xl: "tgph-12lz8s42rt", "2xl": "tgph-12lz8s42ru" }, defaultClass: "tgph-12lz8s42rq" }, 140: { conditions: { sm: "tgph-12lz8s42rv", md: "tgph-12lz8s42rw", lg: "tgph-12lz8s42rx", xl: "tgph-12lz8s42ry", "2xl": "tgph-12lz8s42rz" }, defaultClass: "tgph-12lz8s42rv" }, 160: { conditions: { sm: "tgph-12lz8s42s0", md: "tgph-12lz8s42s1", lg: "tgph-12lz8s42s2", xl: "tgph-12lz8s42s3", "2xl": "tgph-12lz8s42s4" }, defaultClass: "tgph-12lz8s42s0" }, px: { conditions: { sm: "tgph-12lz8s42s5", md: "tgph-12lz8s42s6", lg: "tgph-12lz8s42s7", xl: "tgph-12lz8s42s8", "2xl": "tgph-12lz8s42s9" }, defaultClass: "tgph-12lz8s42s5" }, full: { conditions: { sm: "tgph-12lz8s42sa", md: "tgph-12lz8s42sb", lg: "tgph-12lz8s42sc", xl: "tgph-12lz8s42sd", "2xl": "tgph-12lz8s42se" }, defaultClass: "tgph-12lz8s42sa" }, auto: { conditions: { sm: "tgph-12lz8s42sf", md: "tgph-12lz8s42sg", lg: "tgph-12lz8s42sh", xl: "tgph-12lz8s42si", "2xl": "tgph-12lz8s42sj" }, defaultClass: "tgph-12lz8s42sf" } }, responsiveArray: void 0 }, maxWidth: { values: { 0: { conditions: { sm: "tgph-12lz8s42sk", md: "tgph-12lz8s42sl", lg: "tgph-12lz8s42sm", xl: "tgph-12lz8s42sn", "2xl": "tgph-12lz8s42so" }, defaultClass: "tgph-12lz8s42sk" }, 1: { conditions: { sm: "tgph-12lz8s42sp", md: "tgph-12lz8s42sq", lg: "tgph-12lz8s42sr", xl: "tgph-12lz8s42ss", "2xl": "tgph-12lz8s42st" }, defaultClass: "tgph-12lz8s42sp" }, 2: { conditions: { sm: "tgph-12lz8s42su", md: "tgph-12lz8s42sv", lg: "tgph-12lz8s42sw", xl: "tgph-12lz8s42sx", "2xl": "tgph-12lz8s42sy" }, defaultClass: "tgph-12lz8s42su" }, 3: { conditions: { sm: "tgph-12lz8s42sz", md: "tgph-12lz8s42t0", lg: "tgph-12lz8s42t1", xl: "tgph-12lz8s42t2", "2xl": "tgph-12lz8s42t3" }, defaultClass: "tgph-12lz8s42sz" }, 4: { conditions: { sm: "tgph-12lz8s42t4", md: "tgph-12lz8s42t5", lg: "tgph-12lz8s42t6", xl: "tgph-12lz8s42t7", "2xl": "tgph-12lz8s42t8" }, defaultClass: "tgph-12lz8s42t4" }, 5: { conditions: { sm: "tgph-12lz8s42t9", md: "tgph-12lz8s42ta", lg: "tgph-12lz8s42tb", xl: "tgph-12lz8s42tc", "2xl": "tgph-12lz8s42td" }, defaultClass: "tgph-12lz8s42t9" }, 6: { conditions: { sm: "tgph-12lz8s42te", md: "tgph-12lz8s42tf", lg: "tgph-12lz8s42tg", xl: "tgph-12lz8s42th", "2xl": "tgph-12lz8s42ti" }, defaultClass: "tgph-12lz8s42te" }, 7: { conditions: { sm: "tgph-12lz8s42tj", md: "tgph-12lz8s42tk", lg: "tgph-12lz8s42tl", xl: "tgph-12lz8s42tm", "2xl": "tgph-12lz8s42tn" }, defaultClass: "tgph-12lz8s42tj" }, 8: { conditions: { sm: "tgph-12lz8s42to", md: "tgph-12lz8s42tp", lg: "tgph-12lz8s42tq", xl: "tgph-12lz8s42tr", "2xl": "tgph-12lz8s42ts" }, defaultClass: "tgph-12lz8s42to" }, 9: { conditions: { sm: "tgph-12lz8s42tt", md: "tgph-12lz8s42tu", lg: "tgph-12lz8s42tv", xl: "tgph-12lz8s42tw", "2xl": "tgph-12lz8s42tx" }, defaultClass: "tgph-12lz8s42tt" }, 10: { conditions: { sm: "tgph-12lz8s42ty", md: "tgph-12lz8s42tz", lg: "tgph-12lz8s42u0", xl: "tgph-12lz8s42u1", "2xl": "tgph-12lz8s42u2" }, defaultClass: "tgph-12lz8s42ty" }, 11: { conditions: { sm: "tgph-12lz8s42u3", md: "tgph-12lz8s42u4", lg: "tgph-12lz8s42u5", xl: "tgph-12lz8s42u6", "2xl": "tgph-12lz8s42u7" }, defaultClass: "tgph-12lz8s42u3" }, 12: { conditions: { sm: "tgph-12lz8s42u8", md: "tgph-12lz8s42u9", lg: "tgph-12lz8s42ua", xl: "tgph-12lz8s42ub", "2xl": "tgph-12lz8s42uc" }, defaultClass: "tgph-12lz8s42u8" }, 14: { conditions: { sm: "tgph-12lz8s42ud", md: "tgph-12lz8s42ue", lg: "tgph-12lz8s42uf", xl: "tgph-12lz8s42ug", "2xl": "tgph-12lz8s42uh" }, defaultClass: "tgph-12lz8s42ud" }, 16: { conditions: { sm: "tgph-12lz8s42ui", md: "tgph-12lz8s42uj", lg: "tgph-12lz8s42uk", xl: "tgph-12lz8s42ul", "2xl": "tgph-12lz8s42um" }, defaultClass: "tgph-12lz8s42ui" }, 20: { conditions: { sm: "tgph-12lz8s42un", md: "tgph-12lz8s42uo", lg: "tgph-12lz8s42up", xl: "tgph-12lz8s42uq", "2xl": "tgph-12lz8s42ur" }, defaultClass: "tgph-12lz8s42un" }, 24: { conditions: { sm: "tgph-12lz8s42us", md: "tgph-12lz8s42ut", lg: "tgph-12lz8s42uu", xl: "tgph-12lz8s42uv", "2xl": "tgph-12lz8s42uw" }, defaultClass: "tgph-12lz8s42us" }, 28: { conditions: { sm: "tgph-12lz8s42ux", md: "tgph-12lz8s42uy", lg: "tgph-12lz8s42uz", xl: "tgph-12lz8s42v0", "2xl": "tgph-12lz8s42v1" }, defaultClass: "tgph-12lz8s42ux" }, 32: { conditions: { sm: "tgph-12lz8s42v2", md: "tgph-12lz8s42v3", lg: "tgph-12lz8s42v4", xl: "tgph-12lz8s42v5", "2xl": "tgph-12lz8s42v6" }, defaultClass: "tgph-12lz8s42v2" }, 36: { conditions: { sm: "tgph-12lz8s42v7", md: "tgph-12lz8s42v8", lg: "tgph-12lz8s42v9", xl: "tgph-12lz8s42va", "2xl": "tgph-12lz8s42vb" }, defaultClass: "tgph-12lz8s42v7" }, 40: { conditions: { sm: "tgph-12lz8s42vc", md: "tgph-12lz8s42vd", lg: "tgph-12lz8s42ve", xl: "tgph-12lz8s42vf", "2xl": "tgph-12lz8s42vg" }, defaultClass: "tgph-12lz8s42vc" }, 44: { conditions: { sm: "tgph-12lz8s42vh", md: "tgph-12lz8s42vi", lg: "tgph-12lz8s42vj", xl: "tgph-12lz8s42vk", "2xl": "tgph-12lz8s42vl" }, defaultClass: "tgph-12lz8s42vh" }, 48: { conditions: { sm: "tgph-12lz8s42vm", md: "tgph-12lz8s42vn", lg: "tgph-12lz8s42vo", xl: "tgph-12lz8s42vp", "2xl": "tgph-12lz8s42vq" }, defaultClass: "tgph-12lz8s42vm" }, 52: { conditions: { sm: "tgph-12lz8s42vr", md: "tgph-12lz8s42vs", lg: "tgph-12lz8s42vt", xl: "tgph-12lz8s42vu", "2xl": "tgph-12lz8s42vv" }, defaultClass: "tgph-12lz8s42vr" }, 56: { conditions: { sm: "tgph-12lz8s42vw", md: "tgph-12lz8s42vx", lg: "tgph-12lz8s42vy", xl: "tgph-12lz8s42vz", "2xl": "tgph-12lz8s42w0" }, defaultClass: "tgph-12lz8s42vw" }, 60: { conditions: { sm: "tgph-12lz8s42w1", md: "tgph-12lz8s42w2", lg: "tgph-12lz8s42w3", xl: "tgph-12lz8s42w4", "2xl": "tgph-12lz8s42w5" }, defaultClass: "tgph-12lz8s42w1" }, 64: { conditions: { sm: "tgph-12lz8s42w6", md: "tgph-12lz8s42w7", lg: "tgph-12lz8s42w8", xl: "tgph-12lz8s42w9", "2xl": "tgph-12lz8s42wa" }, defaultClass: "tgph-12lz8s42w6" }, 72: { conditions: { sm: "tgph-12lz8s42wb", md: "tgph-12lz8s42wc", lg: "tgph-12lz8s42wd", xl: "tgph-12lz8s42we", "2xl": "tgph-12lz8s42wf" }, defaultClass: "tgph-12lz8s42wb" }, 80: { conditions: { sm: "tgph-12lz8s42wg", md: "tgph-12lz8s42wh", lg: "tgph-12lz8s42wi", xl: "tgph-12lz8s42wj", "2xl": "tgph-12lz8s42wk" }, defaultClass: "tgph-12lz8s42wg" }, 96: { conditions: { sm: "tgph-12lz8s42wl", md: "tgph-12lz8s42wm", lg: "tgph-12lz8s42wn", xl: "tgph-12lz8s42wo", "2xl": "tgph-12lz8s42wp" }, defaultClass: "tgph-12lz8s42wl" }, 140: { conditions: { sm: "tgph-12lz8s42wq", md: "tgph-12lz8s42wr", lg: "tgph-12lz8s42ws", xl: "tgph-12lz8s42wt", "2xl": "tgph-12lz8s42wu" }, defaultClass: "tgph-12lz8s42wq" }, 160: { conditions: { sm: "tgph-12lz8s42wv", md: "tgph-12lz8s42ww", lg: "tgph-12lz8s42wx", xl: "tgph-12lz8s42wy", "2xl": "tgph-12lz8s42wz" }, defaultClass: "tgph-12lz8s42wv" }, px: { conditions: { sm: "tgph-12lz8s42x0", md: "tgph-12lz8s42x1", lg: "tgph-12lz8s42x2", xl: "tgph-12lz8s42x3", "2xl": "tgph-12lz8s42x4" }, defaultClass: "tgph-12lz8s42x0" }, full: { conditions: { sm: "tgph-12lz8s42x5", md: "tgph-12lz8s42x6", lg: "tgph-12lz8s42x7", xl: "tgph-12lz8s42x8", "2xl": "tgph-12lz8s42x9" }, defaultClass: "tgph-12lz8s42x5" }, auto: { conditions: { sm: "tgph-12lz8s42xa", md: "tgph-12lz8s42xb", lg: "tgph-12lz8s42xc", xl: "tgph-12lz8s42xd", "2xl": "tgph-12lz8s42xe" }, defaultClass: "tgph-12lz8s42xa" } }, responsiveArray: void 0 }, padding: { values: { 0: { conditions: { sm: "tgph-12lz8s42xf", md: "tgph-12lz8s42xg", lg: "tgph-12lz8s42xh", xl: "tgph-12lz8s42xi", "2xl": "tgph-12lz8s42xj" }, defaultClass: "tgph-12lz8s42xf" }, 1: { conditions: { sm: "tgph-12lz8s42xk", md: "tgph-12lz8s42xl", lg: "tgph-12lz8s42xm", xl: "tgph-12lz8s42xn", "2xl": "tgph-12lz8s42xo" }, defaultClass: "tgph-12lz8s42xk" }, 2: { conditions: { sm: "tgph-12lz8s42xp", md: "tgph-12lz8s42xq", lg: "tgph-12lz8s42xr", xl: "tgph-12lz8s42xs", "2xl": "tgph-12lz8s42xt" }, defaultClass: "tgph-12lz8s42xp" }, 3: { conditions: { sm: "tgph-12lz8s42xu", md: "tgph-12lz8s42xv", lg: "tgph-12lz8s42xw", xl: "tgph-12lz8s42xx", "2xl": "tgph-12lz8s42xy" }, defaultClass: "tgph-12lz8s42xu" }, 4: { conditions: { sm: "tgph-12lz8s42xz", md: "tgph-12lz8s42y0", lg: "tgph-12lz8s42y1", xl: "tgph-12lz8s42y2", "2xl": "tgph-12lz8s42y3" }, defaultClass: "tgph-12lz8s42xz" }, 5: { conditions: { sm: "tgph-12lz8s42y4", md: "tgph-12lz8s42y5", lg: "tgph-12lz8s42y6", xl: "tgph-12lz8s42y7", "2xl": "tgph-12lz8s42y8" }, defaultClass: "tgph-12lz8s42y4" }, 6: { conditions: { sm: "tgph-12lz8s42y9", md: "tgph-12lz8s42ya", lg: "tgph-12lz8s42yb", xl: "tgph-12lz8s42yc", "2xl": "tgph-12lz8s42yd" }, defaultClass: "tgph-12lz8s42y9" }, 7: { conditions: { sm: "tgph-12lz8s42ye", md: "tgph-12lz8s42yf", lg: "tgph-12lz8s42yg", xl: "tgph-12lz8s42yh", "2xl": "tgph-12lz8s42yi" }, defaultClass: "tgph-12lz8s42ye" }, 8: { conditions: { sm: "tgph-12lz8s42yj", md: "tgph-12lz8s42yk", lg: "tgph-12lz8s42yl", xl: "tgph-12lz8s42ym", "2xl": "tgph-12lz8s42yn" }, defaultClass: "tgph-12lz8s42yj" }, 9: { conditions: { sm: "tgph-12lz8s42yo", md: "tgph-12lz8s42yp", lg: "tgph-12lz8s42yq", xl: "tgph-12lz8s42yr", "2xl": "tgph-12lz8s42ys" }, defaultClass: "tgph-12lz8s42yo" }, 10: { conditions: { sm: "tgph-12lz8s42yt", md: "tgph-12lz8s42yu", lg: "tgph-12lz8s42yv", xl: "tgph-12lz8s42yw", "2xl": "tgph-12lz8s42yx" }, defaultClass: "tgph-12lz8s42yt" }, 11: { conditions: { sm: "tgph-12lz8s42yy", md: "tgph-12lz8s42yz", lg: "tgph-12lz8s42z0", xl: "tgph-12lz8s42z1", "2xl": "tgph-12lz8s42z2" }, defaultClass: "tgph-12lz8s42yy" }, 12: { conditions: { sm: "tgph-12lz8s42z3", md: "tgph-12lz8s42z4", lg: "tgph-12lz8s42z5", xl: "tgph-12lz8s42z6", "2xl": "tgph-12lz8s42z7" }, defaultClass: "tgph-12lz8s42z3" }, 14: { conditions: { sm: "tgph-12lz8s42z8", md: "tgph-12lz8s42z9", lg: "tgph-12lz8s42za", xl: "tgph-12lz8s42zb", "2xl": "tgph-12lz8s42zc" }, defaultClass: "tgph-12lz8s42z8" }, 16: { conditions: { sm: "tgph-12lz8s42zd", md: "tgph-12lz8s42ze", lg: "tgph-12lz8s42zf", xl: "tgph-12lz8s42zg", "2xl": "tgph-12lz8s42zh" }, defaultClass: "tgph-12lz8s42zd" }, 20: { conditions: { sm: "tgph-12lz8s42zi", md: "tgph-12lz8s42zj", lg: "tgph-12lz8s42zk", xl: "tgph-12lz8s42zl", "2xl": "tgph-12lz8s42zm" }, defaultClass: "tgph-12lz8s42zi" }, 24: { conditions: { sm: "tgph-12lz8s42zn", md: "tgph-12lz8s42zo", lg: "tgph-12lz8s42zp", xl: "tgph-12lz8s42zq", "2xl": "tgph-12lz8s42zr" }, defaultClass: "tgph-12lz8s42zn" }, 28: { conditions: { sm: "tgph-12lz8s42zs", md: "tgph-12lz8s42zt", lg: "tgph-12lz8s42zu", xl: "tgph-12lz8s42zv", "2xl": "tgph-12lz8s42zw" }, defaultClass: "tgph-12lz8s42zs" }, 32: { conditions: { sm: "tgph-12lz8s42zx", md: "tgph-12lz8s42zy", lg: "tgph-12lz8s42zz", xl: "tgph-12lz8s4300", "2xl": "tgph-12lz8s4301" }, defaultClass: "tgph-12lz8s42zx" }, 36: { conditions: { sm: "tgph-12lz8s4302", md: "tgph-12lz8s4303", lg: "tgph-12lz8s4304", xl: "tgph-12lz8s4305", "2xl": "tgph-12lz8s4306" }, defaultClass: "tgph-12lz8s4302" }, 40: { conditions: { sm: "tgph-12lz8s4307", md: "tgph-12lz8s4308", lg: "tgph-12lz8s4309", xl: "tgph-12lz8s430a", "2xl": "tgph-12lz8s430b" }, defaultClass: "tgph-12lz8s4307" }, 44: { conditions: { sm: "tgph-12lz8s430c", md: "tgph-12lz8s430d", lg: "tgph-12lz8s430e", xl: "tgph-12lz8s430f", "2xl": "tgph-12lz8s430g" }, defaultClass: "tgph-12lz8s430c" }, 48: { conditions: { sm: "tgph-12lz8s430h", md: "tgph-12lz8s430i", lg: "tgph-12lz8s430j", xl: "tgph-12lz8s430k", "2xl": "tgph-12lz8s430l" }, defaultClass: "tgph-12lz8s430h" }, 52: { conditions: { sm: "tgph-12lz8s430m", md: "tgph-12lz8s430n", lg: "tgph-12lz8s430o", xl: "tgph-12lz8s430p", "2xl": "tgph-12lz8s430q" }, defaultClass: "tgph-12lz8s430m" }, 56: { conditions: { sm: "tgph-12lz8s430r", md: "tgph-12lz8s430s", lg: "tgph-12lz8s430t", xl: "tgph-12lz8s430u", "2xl": "tgph-12lz8s430v" }, defaultClass: "tgph-12lz8s430r" }, 60: { conditions: { sm: "tgph-12lz8s430w", md: "tgph-12lz8s430x", lg: "tgph-12lz8s430y", xl: "tgph-12lz8s430z", "2xl": "tgph-12lz8s4310" }, defaultClass: "tgph-12lz8s430w" }, 64: { conditions: { sm: "tgph-12lz8s4311", md: "tgph-12lz8s4312", lg: "tgph-12lz8s4313", xl: "tgph-12lz8s4314", "2xl": "tgph-12lz8s4315" }, defaultClass: "tgph-12lz8s4311" }, 72: { conditions: { sm: "tgph-12lz8s4316", md: "tgph-12lz8s4317", lg: "tgph-12lz8s4318", xl: "tgph-12lz8s4319", "2xl": "tgph-12lz8s431a" }, defaultClass: "tgph-12lz8s4316" }, 80: { conditions: { sm: "tgph-12lz8s431b", md: "tgph-12lz8s431c", lg: "tgph-12lz8s431d", xl: "tgph-12lz8s431e", "2xl": "tgph-12lz8s431f" }, defaultClass: "tgph-12lz8s431b" }, 96: { conditions: { sm: "tgph-12lz8s431g", md: "tgph-12lz8s431h", lg: "tgph-12lz8s431i", xl: "tgph-12lz8s431j", "2xl": "tgph-12lz8s431k" }, defaultClass: "tgph-12lz8s431g" }, 140: { conditions: { sm: "tgph-12lz8s431l", md: "tgph-12lz8s431m", lg: "tgph-12lz8s431n", xl: "tgph-12lz8s431o", "2xl": "tgph-12lz8s431p" }, defaultClass: "tgph-12lz8s431l" }, 160: { conditions: { sm: "tgph-12lz8s431q", md: "tgph-12lz8s431r", lg: "tgph-12lz8s431s", xl: "tgph-12lz8s431t", "2xl": "tgph-12lz8s431u" }, defaultClass: "tgph-12lz8s431q" }, px: { conditions: { sm: "tgph-12lz8s431v", md: "tgph-12lz8s431w", lg: "tgph-12lz8s431x", xl: "tgph-12lz8s431y", "2xl": "tgph-12lz8s431z" }, defaultClass: "tgph-12lz8s431v" }, full: { conditions: { sm: "tgph-12lz8s4320", md: "tgph-12lz8s4321", lg: "tgph-12lz8s4322", xl: "tgph-12lz8s4323", "2xl": "tgph-12lz8s4324" }, defaultClass: "tgph-12lz8s4320" }, auto: { conditions: { sm: "tgph-12lz8s4325", md: "tgph-12lz8s4326", lg: "tgph-12lz8s4327", xl: "tgph-12lz8s4328", "2xl": "tgph-12lz8s4329" }, defaultClass: "tgph-12lz8s4325" } }, responsiveArray: void 0 }, paddingBottom: { values: { 0: { conditions: { sm: "tgph-12lz8s432a", md: "tgph-12lz8s432b", lg: "tgph-12lz8s432c", xl: "tgph-12lz8s432d", "2xl": "tgph-12lz8s432e" }, defaultClass: "tgph-12lz8s432a" }, 1: { conditions: { sm: "tgph-12lz8s432f", md: "tgph-12lz8s432g", lg: "tgph-12lz8s432h", xl: "tgph-12lz8s432i", "2xl": "tgph-12lz8s432j" }, defaultClass: "tgph-12lz8s432f" }, 2: { conditions: { sm: "tgph-12lz8s432k", md: "tgph-12lz8s432l", lg: "tgph-12lz8s432m", xl: "tgph-12lz8s432n", "2xl": "tgph-12lz8s432o" }, defaultClass: "tgph-12lz8s432k" }, 3: { conditions: { sm: "tgph-12lz8s432p", md: "tgph-12lz8s432q", lg: "tgph-12lz8s432r", xl: "tgph-12lz8s432s", "2xl": "tgph-12lz8s432t" }, defaultClass: "tgph-12lz8s432p" }, 4: { conditions: { sm: "tgph-12lz8s432u", md: "tgph-12lz8s432v", lg: "tgph-12lz8s432w", xl: "tgph-12lz8s432x", "2xl": "tgph-12lz8s432y" }, defaultClass: "tgph-12lz8s432u" }, 5: { conditions: { sm: "tgph-12lz8s432z", md: "tgph-12lz8s4330", lg: "tgph-12lz8s4331", xl: "tgph-12lz8s4332", "2xl": "tgph-12lz8s4333" }, defaultClass: "tgph-12lz8s432z" }, 6: { conditions: { sm: "tgph-12lz8s4334", md: "tgph-12lz8s4335", lg: "tgph-12lz8s4336", xl: "tgph-12lz8s4337", "2xl": "tgph-12lz8s4338" }, defaultClass: "tgph-12lz8s4334" }, 7: { conditions: { sm: "tgph-12lz8s4339", md: "tgph-12lz8s433a", lg: "tgph-12lz8s433b", xl: "tgph-12lz8s433c", "2xl": "tgph-12lz8s433d" }, defaultClass: "tgph-12lz8s4339" }, 8: { conditions: { sm: "tgph-12lz8s433e", md: "tgph-12lz8s433f", lg: "tgph-12lz8s433g", xl: "tgph-12lz8s433h", "2xl": "tgph-12lz8s433i" }, defaultClass: "tgph-12lz8s433e" }, 9: { conditions: { sm: "tgph-12lz8s433j", md: "tgph-12lz8s433k", lg: "tgph-12lz8s433l", xl: "tgph-12lz8s433m", "2xl": "tgph-12lz8s433n" }, defaultClass: "tgph-12lz8s433j" }, 10: { conditions: { sm: "tgph-12lz8s433o", md: "tgph-12lz8s433p", lg: "tgph-12lz8s433q", xl: "tgph-12lz8s433r", "2xl": "tgph-12lz8s433s" }, defaultClass: "tgph-12lz8s433o" }, 11: { conditions: { sm: "tgph-12lz8s433t", md: "tgph-12lz8s433u", lg: "tgph-12lz8s433v", xl: "tgph-12lz8s433w", "2xl": "tgph-12lz8s433x" }, defaultClass: "tgph-12lz8s433t" }, 12: { conditions: { sm: "tgph-12lz8s433y", md: "tgph-12lz8s433z", lg: "tgph-12lz8s4340", xl: "tgph-12lz8s4341", "2xl": "tgph-12lz8s4342" }, defaultClass: "tgph-12lz8s433y" }, 14: { conditions: { sm: "tgph-12lz8s4343", md: "tgph-12lz8s4344", lg: "tgph-12lz8s4345", xl: "tgph-12lz8s4346", "2xl": "tgph-12lz8s4347" }, defaultClass: "tgph-12lz8s4343" }, 16: { conditions: { sm: "tgph-12lz8s4348", md: "tgph-12lz8s4349", lg: "tgph-12lz8s434a", xl: "tgph-12lz8s434b", "2xl": "tgph-12lz8s434c" }, defaultClass: "tgph-12lz8s4348" }, 20: { conditions: { sm: "tgph-12lz8s434d", md: "tgph-12lz8s434e", lg: "tgph-12lz8s434f", xl: "tgph-12lz8s434g", "2xl": "tgph-12lz8s434h" }, defaultClass: "tgph-12lz8s434d" }, 24: { conditions: { sm: "tgph-12lz8s434i", md: "tgph-12lz8s434j", lg: "tgph-12lz8s434k", xl: "tgph-12lz8s434l", "2xl": "tgph-12lz8s434m" }, defaultClass: "tgph-12lz8s434i" }, 28: { conditions: { sm: "tgph-12lz8s434n", md: "tgph-12lz8s434o", lg: "tgph-12lz8s434p", xl: "tgph-12lz8s434q", "2xl": "tgph-12lz8s434r" }, defaultClass: "tgph-12lz8s434n" }, 32: { conditions: { sm: "tgph-12lz8s434s", md: "tgph-12lz8s434t", lg: "tgph-12lz8s434u", xl: "tgph-12lz8s434v", "2xl": "tgph-12lz8s434w" }, defaultClass: "tgph-12lz8s434s" }, 36: { conditions: { sm: "tgph-12lz8s434x", md: "tgph-12lz8s434y", lg: "tgph-12lz8s434z", xl: "tgph-12lz8s4350", "2xl": "tgph-12lz8s4351" }, defaultClass: "tgph-12lz8s434x" }, 40: { conditions: { sm: "tgph-12lz8s4352", md: "tgph-12lz8s4353", lg: "tgph-12lz8s4354", xl: "tgph-12lz8s4355", "2xl": "tgph-12lz8s4356" }, defaultClass: "tgph-12lz8s4352" }, 44: { conditions: { sm: "tgph-12lz8s4357", md: "tgph-12lz8s4358", lg: "tgph-12lz8s4359", xl: "tgph-12lz8s435a", "2xl": "tgph-12lz8s435b" }, defaultClass: "tgph-12lz8s4357" }, 48: { conditions: { sm: "tgph-12lz8s435c", md: "tgph-12lz8s435d", lg: "tgph-12lz8s435e", xl: "tgph-12lz8s435f", "2xl": "tgph-12lz8s435g" }, defaultClass: "tgph-12lz8s435c" }, 52: { conditions: { sm: "tgph-12lz8s435h", md: "tgph-12lz8s435i", lg: "tgph-12lz8s435j", xl: "tgph-12lz8s435k", "2xl": "tgph-12lz8s435l" }, defaultClass: "tgph-12lz8s435h" }, 56: { conditions: { sm: "tgph-12lz8s435m", md: "tgph-12lz8s435n", lg: "tgph-12lz8s435o", xl: "tgph-12lz8s435p", "2xl": "tgph-12lz8s435q" }, defaultClass: "tgph-12lz8s435m" }, 60: { conditions: { sm: "tgph-12lz8s435r", md: "tgph-12lz8s435s", lg: "tgph-12lz8s435t", xl: "tgph-12lz8s435u", "2xl": "tgph-12lz8s435v" }, defaultClass: "tgph-12lz8s435r" }, 64: { conditions: { sm: "tgph-12lz8s435w", md: "tgph-12lz8s435x", lg: "tgph-12lz8s435y", xl: "tgph-12lz8s435z", "2xl": "tgph-12lz8s4360" }, defaultClass: "tgph-12lz8s435w" }, 72: { conditions: { sm: "tgph-12lz8s4361", md: "tgph-12lz8s4362", lg: "tgph-12lz8s4363", xl: "tgph-12lz8s4364", "2xl": "tgph-12lz8s4365" }, defaultClass: "tgph-12lz8s4361" }, 80: { conditions: { sm: "tgph-12lz8s4366", md: "tgph-12lz8s4367", lg: "tgph-12lz8s4368", xl: "tgph-12lz8s4369", "2xl": "tgph-12lz8s436a" }, defaultClass: "tgph-12lz8s4366" }, 96: { conditions: { sm: "tgph-12lz8s436b", md: "tgph-12lz8s436c", lg: "tgph-12lz8s436d", xl: "tgph-12lz8s436e", "2xl": "tgph-12lz8s436f" }, defaultClass: "tgph-12lz8s436b" }, 140: { conditions: { sm: "tgph-12lz8s436g", md: "tgph-12lz8s436h", lg: "tgph-12lz8s436i", xl: "tgph-12lz8s436j", "2xl": "tgph-12lz8s436k" }, defaultClass: "tgph-12lz8s436g" }, 160: { conditions: { sm: "tgph-12lz8s436l", md: "tgph-12lz8s436m", lg: "tgph-12lz8s436n", xl: "tgph-12lz8s436o", "2xl": "tgph-12lz8s436p" }, defaultClass: "tgph-12lz8s436l" }, px: { conditions: { sm: "tgph-12lz8s436q", md: "tgph-12lz8s436r", lg: "tgph-12lz8s436s", xl: "tgph-12lz8s436t", "2xl": "tgph-12lz8s436u" }, defaultClass: "tgph-12lz8s436q" }, full: { conditions: { sm: "tgph-12lz8s436v", md: "tgph-12lz8s436w", lg: "tgph-12lz8s436x", xl: "tgph-12lz8s436y", "2xl": "tgph-12lz8s436z" }, defaultClass: "tgph-12lz8s436v" }, auto: { conditions: { sm: "tgph-12lz8s4370", md: "tgph-12lz8s4371", lg: "tgph-12lz8s4372", xl: "tgph-12lz8s4373", "2xl": "tgph-12lz8s4374" }, defaultClass: "tgph-12lz8s4370" } }, responsiveArray: void 0 }, paddingLeft: { values: { 0: { conditions: { sm: "tgph-12lz8s4375", md: "tgph-12lz8s4376", lg: "tgph-12lz8s4377", xl: "tgph-12lz8s4378", "2xl": "tgph-12lz8s4379" }, defaultClass: "tgph-12lz8s4375" }, 1: { conditions: { sm: "tgph-12lz8s437a", md: "tgph-12lz8s437b", lg: "tgph-12lz8s437c", xl: "tgph-12lz8s437d", "2xl": "tgph-12lz8s437e" }, defaultClass: "tgph-12lz8s437a" }, 2: { conditions: { sm: "tgph-12lz8s437f", md: "tgph-12lz8s437g", lg: "tgph-12lz8s437h", xl: "tgph-12lz8s437i", "2xl": "tgph-12lz8s437j" }, defaultClass: "tgph-12lz8s437f" }, 3: { conditions: { sm: "tgph-12lz8s437k", md: "tgph-12lz8s437l", lg: "tgph-12lz8s437m", xl: "tgph-12lz8s437n", "2xl": "tgph-12lz8s437o" }, defaultClass: "tgph-12lz8s437k" }, 4: { conditions: { sm: "tgph-12lz8s437p", md: "tgph-12lz8s437q", lg: "tgph-12lz8s437r", xl: "tgph-12lz8s437s", "2xl": "tgph-12lz8s437t" }, defaultClass: "tgph-12lz8s437p" }, 5: { conditions: { sm: "tgph-12lz8s437u", md: "tgph-12lz8s437v", lg: "tgph-12lz8s437w", xl: "tgph-12lz8s437x", "2xl": "tgph-12lz8s437y" }, defaultClass: "tgph-12lz8s437u" }, 6: { conditions: { sm: "tgph-12lz8s437z", md: "tgph-12lz8s4380", lg: "tgph-12lz8s4381", xl: "tgph-12lz8s4382", "2xl": "tgph-12lz8s4383" }, defaultClass: "tgph-12lz8s437z" }, 7: { conditions: { sm: "tgph-12lz8s4384", md: "tgph-12lz8s4385", lg: "tgph-12lz8s4386", xl: "tgph-12lz8s4387", "2xl": "tgph-12lz8s4388" }, defaultClass: "tgph-12lz8s4384" }, 8: { conditions: { sm: "tgph-12lz8s4389", md: "tgph-12lz8s438a", lg: "tgph-12lz8s438b", xl: "tgph-12lz8s438c", "2xl": "tgph-12lz8s438d" }, defaultClass: "tgph-12lz8s4389" }, 9: { conditions: { sm: "tgph-12lz8s438e", md: "tgph-12lz8s438f", lg: "tgph-12lz8s438g", xl: "tgph-12lz8s438h", "2xl": "tgph-12lz8s438i" }, defaultClass: "tgph-12lz8s438e" }, 10: { conditions: { sm: "tgph-12lz8s438j", md: "tgph-12lz8s438k", lg: "tgph-12lz8s438l", xl: "tgph-12lz8s438m", "2xl": "tgph-12lz8s438n" }, defaultClass: "tgph-12lz8s438j" }, 11: { conditions: { sm: "tgph-12lz8s438o", md: "tgph-12lz8s438p", lg: "tgph-12lz8s438q", xl: "tgph-12lz8s438r", "2xl": "tgph-12lz8s438s" }, defaultClass: "tgph-12lz8s438o" }, 12: { conditions: { sm: "tgph-12lz8s438t", md: "tgph-12lz8s438u", lg: "tgph-12lz8s438v", xl: "tgph-12lz8s438w", "2xl": "tgph-12lz8s438x" }, defaultClass: "tgph-12lz8s438t" }, 14: { conditions: { sm: "tgph-12lz8s438y", md: "tgph-12lz8s438z", lg: "tgph-12lz8s4390", xl: "tgph-12lz8s4391", "2xl": "tgph-12lz8s4392" }, defaultClass: "tgph-12lz8s438y" }, 16: { conditions: { sm: "tgph-12lz8s4393", md: "tgph-12lz8s4394", lg: "tgph-12lz8s4395", xl: "tgph-12lz8s4396", "2xl": "tgph-12lz8s4397" }, defaultClass: "tgph-12lz8s4393" }, 20: { conditions: { sm: "tgph-12lz8s4398", md: "tgph-12lz8s4399", lg: "tgph-12lz8s439a", xl: "tgph-12lz8s439b", "2xl": "tgph-12lz8s439c" }, defaultClass: "tgph-12lz8s4398" }, 24: { conditions: { sm: "tgph-12lz8s439d", md: "tgph-12lz8s439e", lg: "tgph-12lz8s439f", xl: "tgph-12lz8s439g", "2xl": "tgph-12lz8s439h" }, defaultClass: "tgph-12lz8s439d" }, 28: { conditions: { sm: "tgph-12lz8s439i", md: "tgph-12lz8s439j", lg: "tgph-12lz8s439k", xl: "tgph-12lz8s439l", "2xl": "tgph-12lz8s439m" }, defaultClass: "tgph-12lz8s439i" }, 32: { conditions: { sm: "tgph-12lz8s439n", md: "tgph-12lz8s439o", lg: "tgph-12lz8s439p", xl: "tgph-12lz8s439q", "2xl": "tgph-12lz8s439r" }, defaultClass: "tgph-12lz8s439n" }, 36: { conditions: { sm: "tgph-12lz8s439s", md: "tgph-12lz8s439t", lg: "tgph-12lz8s439u", xl: "tgph-12lz8s439v", "2xl": "tgph-12lz8s439w" }, defaultClass: "tgph-12lz8s439s" }, 40: { conditions: { sm: "tgph-12lz8s439x", md: "tgph-12lz8s439y", lg: "tgph-12lz8s439z", xl: "tgph-12lz8s43a0", "2xl": "tgph-12lz8s43a1" }, defaultClass: "tgph-12lz8s439x" }, 44: { conditions: { sm: "tgph-12lz8s43a2", md: "tgph-12lz8s43a3", lg: "tgph-12lz8s43a4", xl: "tgph-12lz8s43a5", "2xl": "tgph-12lz8s43a6" }, defaultClass: "tgph-12lz8s43a2" }, 48: { conditions: { sm: "tgph-12lz8s43a7", md: "tgph-12lz8s43a8", lg: "tgph-12lz8s43a9", xl: "tgph-12lz8s43aa", "2xl": "tgph-12lz8s43ab" }, defaultClass: "tgph-12lz8s43a7" }, 52: { conditions: { sm: "tgph-12lz8s43ac", md: "tgph-12lz8s43ad", lg: "tgph-12lz8s43ae", xl: "tgph-12lz8s43af", "2xl": "tgph-12lz8s43ag" }, defaultClass: "tgph-12lz8s43ac" }, 56: { conditions: { sm: "tgph-12lz8s43ah", md: "tgph-12lz8s43ai", lg: "tgph-12lz8s43aj", xl: "tgph-12lz8s43ak", "2xl": "tgph-12lz8s43al" }, defaultClass: "tgph-12lz8s43ah" }, 60: { conditions: { sm: "tgph-12lz8s43am", md: "tgph-12lz8s43an", lg: "tgph-12lz8s43ao", xl: "tgph-12lz8s43ap", "2xl": "tgph-12lz8s43aq" }, defaultClass: "tgph-12lz8s43am" }, 64: { conditions: { sm: "tgph-12lz8s43ar", md: "tgph-12lz8s43as", lg: "tgph-12lz8s43at", xl: "tgph-12lz8s43au", "2xl": "tgph-12lz8s43av" }, defaultClass: "tgph-12lz8s43ar" }, 72: { conditions: { sm: "tgph-12lz8s43aw", md: "tgph-12lz8s43ax", lg: "tgph-12lz8s43ay", xl: "tgph-12lz8s43az", "2xl": "tgph-12lz8s43b0" }, defaultClass: "tgph-12lz8s43aw" }, 80: { conditions: { sm: "tgph-12lz8s43b1", md: "tgph-12lz8s43b2", lg: "tgph-12lz8s43b3", xl: "tgph-12lz8s43b4", "2xl": "tgph-12lz8s43b5" }, defaultClass: "tgph-12lz8s43b1" }, 96: { conditions: { sm: "tgph-12lz8s43b6", md: "tgph-12lz8s43b7", lg: "tgph-12lz8s43b8", xl: "tgph-12lz8s43b9", "2xl": "tgph-12lz8s43ba" }, defaultClass: "tgph-12lz8s43b6" }, 140: { conditions: { sm: "tgph-12lz8s43bb", md: "tgph-12lz8s43bc", lg: "tgph-12lz8s43bd", xl: "tgph-12lz8s43be", "2xl": "tgph-12lz8s43bf" }, defaultClass: "tgph-12lz8s43bb" }, 160: { conditions: { sm: "tgph-12lz8s43bg", md: "tgph-12lz8s43bh", lg: "tgph-12lz8s43bi", xl: "tgph-12lz8s43bj", "2xl": "tgph-12lz8s43bk" }, defaultClass: "tgph-12lz8s43bg" }, px: { conditions: { sm: "tgph-12lz8s43bl", md: "tgph-12lz8s43bm", lg: "tgph-12lz8s43bn", xl: "tgph-12lz8s43bo", "2xl": "tgph-12lz8s43bp" }, defaultClass: "tgph-12lz8s43bl" }, full: { conditions: { sm: "tgph-12lz8s43bq", md: "tgph-12lz8s43br", lg: "tgph-12lz8s43bs", xl: "tgph-12lz8s43bt", "2xl": "tgph-12lz8s43bu" }, defaultClass: "tgph-12lz8s43bq" }, auto: { conditions: { sm: "tgph-12lz8s43bv", md: "tgph-12lz8s43bw", lg: "tgph-12lz8s43bx", xl: "tgph-12lz8s43by", "2xl": "tgph-12lz8s43bz" }, defaultClass: "tgph-12lz8s43bv" } }, responsiveArray: void 0 }, paddingRight: { values: { 0: { conditions: { sm: "tgph-12lz8s43c0", md: "tgph-12lz8s43c1", lg: "tgph-12lz8s43c2", xl: "tgph-12lz8s43c3", "2xl": "tgph-12lz8s43c4" }, defaultClass: "tgph-12lz8s43c0" }, 1: { conditions: { sm: "tgph-12lz8s43c5", md: "tgph-12lz8s43c6", lg: "tgph-12lz8s43c7", xl: "tgph-12lz8s43c8", "2xl": "tgph-12lz8s43c9" }, defaultClass: "tgph-12lz8s43c5" }, 2: { conditions: { sm: "tgph-12lz8s43ca", md: "tgph-12lz8s43cb", lg: "tgph-12lz8s43cc", xl: "tgph-12lz8s43cd", "2xl": "tgph-12lz8s43ce" }, defaultClass: "tgph-12lz8s43ca" }, 3: { conditions: { sm: "tgph-12lz8s43cf", md: "tgph-12lz8s43cg", lg: "tgph-12lz8s43ch", xl: "tgph-12lz8s43ci", "2xl": "tgph-12lz8s43cj" }, defaultClass: "tgph-12lz8s43cf" }, 4: { conditions: { sm: "tgph-12lz8s43ck", md: "tgph-12lz8s43cl", lg: "tgph-12lz8s43cm", xl: "tgph-12lz8s43cn", "2xl": "tgph-12lz8s43co" }, defaultClass: "tgph-12lz8s43ck" }, 5: { conditions: { sm: "tgph-12lz8s43cp", md: "tgph-12lz8s43cq", lg: "tgph-12lz8s43cr", xl: "tgph-12lz8s43cs", "2xl": "tgph-12lz8s43ct" }, defaultClass: "tgph-12lz8s43cp" }, 6: { conditions: { sm: "tgph-12lz8s43cu", md: "tgph-12lz8s43cv", lg: "tgph-12lz8s43cw", xl: "tgph-12lz8s43cx", "2xl": "tgph-12lz8s43cy" }, defaultClass: "tgph-12lz8s43cu" }, 7: { conditions: { sm: "tgph-12lz8s43cz", md: "tgph-12lz8s43d0", lg: "tgph-12lz8s43d1", xl: "tgph-12lz8s43d2", "2xl": "tgph-12lz8s43d3" }, defaultClass: "tgph-12lz8s43cz" }, 8: { conditions: { sm: "tgph-12lz8s43d4", md: "tgph-12lz8s43d5", lg: "tgph-12lz8s43d6", xl: "tgph-12lz8s43d7", "2xl": "tgph-12lz8s43d8" }, defaultClass: "tgph-12lz8s43d4" }, 9: { conditions: { sm: "tgph-12lz8s43d9", md: "tgph-12lz8s43da", lg: "tgph-12lz8s43db", xl: "tgph-12lz8s43dc", "2xl": "tgph-12lz8s43dd" }, defaultClass: "tgph-12lz8s43d9" }, 10: { conditions: { sm: "tgph-12lz8s43de", md: "tgph-12lz8s43df", lg: "tgph-12lz8s43dg", xl: "tgph-12lz8s43dh", "2xl": "tgph-12lz8s43di" }, defaultClass: "tgph-12lz8s43de" }, 11: { conditions: { sm: "tgph-12lz8s43dj", md: "tgph-12lz8s43dk", lg: "tgph-12lz8s43dl", xl: "tgph-12lz8s43dm", "2xl": "tgph-12lz8s43dn" }, defaultClass: "tgph-12lz8s43dj" }, 12: { conditions: { sm: "tgph-12lz8s43do", md: "tgph-12lz8s43dp", lg: "tgph-12lz8s43dq", xl: "tgph-12lz8s43dr", "2xl": "tgph-12lz8s43ds" }, defaultClass: "tgph-12lz8s43do" }, 14: { conditions: { sm: "tgph-12lz8s43dt", md: "tgph-12lz8s43du", lg: "tgph-12lz8s43dv", xl: "tgph-12lz8s43dw", "2xl": "tgph-12lz8s43dx" }, defaultClass: "tgph-12lz8s43dt" }, 16: { conditions: { sm: "tgph-12lz8s43dy", md: "tgph-12lz8s43dz", lg: "tgph-12lz8s43e0", xl: "tgph-12lz8s43e1", "2xl": "tgph-12lz8s43e2" }, defaultClass: "tgph-12lz8s43dy" }, 20: { conditions: { sm: "tgph-12lz8s43e3", md: "tgph-12lz8s43e4", lg: "tgph-12lz8s43e5", xl: "tgph-12lz8s43e6", "2xl": "tgph-12lz8s43e7" }, defaultClass: "tgph-12lz8s43e3" }, 24: { conditions: { sm: "tgph-12lz8s43e8", md: "tgph-12lz8s43e9", lg: "tgph-12lz8s43ea", xl: "tgph-12lz8s43eb", "2xl": "tgph-12lz8s43ec" }, defaultClass: "tgph-12lz8s43e8" }, 28: { conditions: { sm: "tgph-12lz8s43ed", md: "tgph-12lz8s43ee", lg: "tgph-12lz8s43ef", xl: "tgph-12lz8s43eg", "2xl": "tgph-12lz8s43eh" }, defaultClass: "tgph-12lz8s43ed" }, 32: { conditions: { sm: "tgph-12lz8s43ei", md: "tgph-12lz8s43ej", lg: "tgph-12lz8s43ek", xl: "tgph-12lz8s43el", "2xl": "tgph-12lz8s43em" }, defaultClass: "tgph-12lz8s43ei" }, 36: { conditions: { sm: "tgph-12lz8s43en", md: "tgph-12lz8s43eo", lg: "tgph-12lz8s43ep", xl: "tgph-12lz8s43eq", "2xl": "tgph-12lz8s43er" }, defaultClass: "tgph-12lz8s43en" }, 40: { conditions: { sm: "tgph-12lz8s43es", md: "tgph-12lz8s43et", lg: "tgph-12lz8s43eu", xl: "tgph-12lz8s43ev", "2xl": "tgph-12lz8s43ew" }, defaultClass: "tgph-12lz8s43es" }, 44: { conditions: { sm: "tgph-12lz8s43ex", md: "tgph-12lz8s43ey", lg: "tgph-12lz8s43ez", xl: "tgph-12lz8s43f0", "2xl": "tgph-12lz8s43f1" }, defaultClass: "tgph-12lz8s43ex" }, 48: { conditions: { sm: "tgph-12lz8s43f2", md: "tgph-12lz8s43f3", lg: "tgph-12lz8s43f4", xl: "tgph-12lz8s43f5", "2xl": "tgph-12lz8s43f6" }, defaultClass: "tgph-12lz8s43f2" }, 52: { conditions: { sm: "tgph-12lz8s43f7", md: "tgph-12lz8s43f8", lg: "tgph-12lz8s43f9", xl: "tgph-12lz8s43fa", "2xl": "tgph-12lz8s43fb" }, defaultClass: "tgph-12lz8s43f7" }, 56: { conditions: { sm: "tgph-12lz8s43fc", md: "tgph-12lz8s43fd", lg: "tgph-12lz8s43fe", xl: "tgph-12lz8s43ff", "2xl": "tgph-12lz8s43fg" }, defaultClass: "tgph-12lz8s43fc" }, 60: { conditions: { sm: "tgph-12lz8s43fh", md: "tgph-12lz8s43fi", lg: "tgph-12lz8s43fj", xl: "tgph-12lz8s43fk", "2xl": "tgph-12lz8s43fl" }, defaultClass: "tgph-12lz8s43fh" }, 64: { conditions: { sm: "tgph-12lz8s43fm", md: "tgph-12lz8s43fn", lg: "tgph-12lz8s43fo", xl: "tgph-12lz8s43fp", "2xl": "tgph-12lz8s43fq" }, defaultClass: "tgph-12lz8s43fm" }, 72: { conditions: { sm: "tgph-12lz8s43fr", md: "tgph-12lz8s43fs", lg: "tgph-12lz8s43ft", xl: "tgph-12lz8s43fu", "2xl": "tgph-12lz8s43fv" }, defaultClass: "tgph-12lz8s43fr" }, 80: { conditions: { sm: "tgph-12lz8s43fw", md: "tgph-12lz8s43fx", lg: "tgph-12lz8s43fy", xl: "tgph-12lz8s43fz", "2xl": "tgph-12lz8s43g0" }, defaultClass: "tgph-12lz8s43fw" }, 96: { conditions: { sm: "tgph-12lz8s43g1", md: "tgph-12lz8s43g2", lg: "tgph-12lz8s43g3", xl: "tgph-12lz8s43g4", "2xl": "tgph-12lz8s43g5" }, defaultClass: "tgph-12lz8s43g1" }, 140: { conditions: { sm: "tgph-12lz8s43g6", md: "tgph-12lz8s43g7", lg: "tgph-12lz8s43g8", xl: "tgph-12lz8s43g9", "2xl": "tgph-12lz8s43ga" }, defaultClass: "tgph-12lz8s43g6" }, 160: { conditions: { sm: "tgph-12lz8s43gb", md: "tgph-12lz8s43gc", lg: "tgph-12lz8s43gd", xl: "tgph-12lz8s43ge", "2xl": "tgph-12lz8s43gf" }, defaultClass: "tgph-12lz8s43gb" }, px: { conditions: { sm: "tgph-12lz8s43gg", md: "tgph-12lz8s43gh", lg: "tgph-12lz8s43gi", xl: "tgph-12lz8s43gj", "2xl": "tgph-12lz8s43gk" }, defaultClass: "tgph-12lz8s43gg" }, full: { conditions: { sm: "tgph-12lz8s43gl", md: "tgph-12lz8s43gm", lg: "tgph-12lz8s43gn", xl: "tgph-12lz8s43go", "2xl": "tgph-12lz8s43gp" }, defaultClass: "tgph-12lz8s43gl" }, auto: { conditions: { sm: "tgph-12lz8s43gq", md: "tgph-12lz8s43gr", lg: "tgph-12lz8s43gs", xl: "tgph-12lz8s43gt", "2xl": "tgph-12lz8s43gu" }, defaultClass: "tgph-12lz8s43gq" } }, responsiveArray: void 0 }, paddingTop: { values: { 0: { conditions: { sm: "tgph-12lz8s43gv", md: "tgph-12lz8s43gw", lg: "tgph-12lz8s43gx", xl: "tgph-12lz8s43gy", "2xl": "tgph-12lz8s43gz" }, defaultClass: "tgph-12lz8s43gv" }, 1: { conditions: { sm: "tgph-12lz8s43h0", md: "tgph-12lz8s43h1", lg: "tgph-12lz8s43h2", xl: "tgph-12lz8s43h3", "2xl": "tgph-12lz8s43h4" }, defaultClass: "tgph-12lz8s43h0" }, 2: { conditions: { sm: "tgph-12lz8s43h5", md: "tgph-12lz8s43h6", lg: "tgph-12lz8s43h7", xl: "tgph-12lz8s43h8", "2xl": "tgph-12lz8s43h9" }, defaultClass: "tgph-12lz8s43h5" }, 3: { conditions: { sm: "tgph-12lz8s43ha", md: "tgph-12lz8s43hb", lg: "tgph-12lz8s43hc", xl: "tgph-12lz8s43hd", "2xl": "tgph-12lz8s43he" }, defaultClass: "tgph-12lz8s43ha" }, 4: { conditions: { sm: "tgph-12lz8s43hf", md: "tgph-12lz8s43hg", lg: "tgph-12lz8s43hh", xl: "tgph-12lz8s43hi", "2xl": "tgph-12lz8s43hj" }, defaultClass: "tgph-12lz8s43hf" }, 5: { conditions: { sm: "tgph-12lz8s43hk", md: "tgph-12lz8s43hl", lg: "tgph-12lz8s43hm", xl: "tgph-12lz8s43hn", "2xl": "tgph-12lz8s43ho" }, defaultClass: "tgph-12lz8s43hk" }, 6: { conditions: { sm: "tgph-12lz8s43hp", md: "tgph-12lz8s43hq", lg: "tgph-12lz8s43hr", xl: "tgph-12lz8s43hs", "2xl": "tgph-12lz8s43ht" }, defaultClass: "tgph-12lz8s43hp" }, 7: { conditions: { sm: "tgph-12lz8s43hu", md: "tgph-12lz8s43hv", lg: "tgph-12lz8s43hw", xl: "tgph-12lz8s43hx", "2xl": "tgph-12lz8s43hy" }, defaultClass: "tgph-12lz8s43hu" }, 8: { conditions: { sm: "tgph-12lz8s43hz", md: "tgph-12lz8s43i0", lg: "tgph-12lz8s43i1", xl: "tgph-12lz8s43i2", "2xl": "tgph-12lz8s43i3" }, defaultClass: "tgph-12lz8s43hz" }, 9: { conditions: { sm: "tgph-12lz8s43i4", md: "tgph-12lz8s43i5", lg: "tgph-12lz8s43i6", xl: "tgph-12lz8s43i7", "2xl": "tgph-12lz8s43i8" }, defaultClass: "tgph-12lz8s43i4" }, 10: { conditions: { sm: "tgph-12lz8s43i9", md: "tgph-12lz8s43ia", lg: "tgph-12lz8s43ib", xl: "tgph-12lz8s43ic", "2xl": "tgph-12lz8s43id" }, defaultClass: "tgph-12lz8s43i9" }, 11: { conditions: { sm: "tgph-12lz8s43ie", md: "tgph-12lz8s43if", lg: "tgph-12lz8s43ig", xl: "tgph-12lz8s43ih", "2xl": "tgph-12lz8s43ii" }, defaultClass: "tgph-12lz8s43ie" }, 12: { conditions: { sm: "tgph-12lz8s43ij", md: "tgph-12lz8s43ik", lg: "tgph-12lz8s43il", xl: "tgph-12lz8s43im", "2xl": "tgph-12lz8s43in" }, defaultClass: "tgph-12lz8s43ij" }, 14: { conditions: { sm: "tgph-12lz8s43io", md: "tgph-12lz8s43ip", lg: "tgph-12lz8s43iq", xl: "tgph-12lz8s43ir", "2xl": "tgph-12lz8s43is" }, defaultClass: "tgph-12lz8s43io" }, 16: { conditions: { sm: "tgph-12lz8s43it", md: "tgph-12lz8s43iu", lg: "tgph-12lz8s43iv", xl: "tgph-12lz8s43iw", "2xl": "tgph-12lz8s43ix" }, defaultClass: "tgph-12lz8s43it" }, 20: { conditions: { sm: "tgph-12lz8s43iy", md: "tgph-12lz8s43iz", lg: "tgph-12lz8s43j0", xl: "tgph-12lz8s43j1", "2xl": "tgph-12lz8s43j2" }, defaultClass: "tgph-12lz8s43iy" }, 24: { conditions: { sm: "tgph-12lz8s43j3", md: "tgph-12lz8s43j4", lg: "tgph-12lz8s43j5", xl: "tgph-12lz8s43j6", "2xl": "tgph-12lz8s43j7" }, defaultClass: "tgph-12lz8s43j3" }, 28: { conditions: { sm: "tgph-12lz8s43j8", md: "tgph-12lz8s43j9", lg: "tgph-12lz8s43ja", xl: "tgph-12lz8s43jb", "2xl": "tgph-12lz8s43jc" }, defaultClass: "tgph-12lz8s43j8" }, 32: { conditions: { sm: "tgph-12lz8s43jd", md: "tgph-12lz8s43je", lg: "tgph-12lz8s43jf", xl: "tgph-12lz8s43jg", "2xl": "tgph-12lz8s43jh" }, defaultClass: "tgph-12lz8s43jd" }, 36: { conditions: { sm: "tgph-12lz8s43ji", md: "tgph-12lz8s43jj", lg: "tgph-12lz8s43jk", xl: "tgph-12lz8s43jl", "2xl": "tgph-12lz8s43jm" }, defaultClass: "tgph-12lz8s43ji" }, 40: { conditions: { sm: "tgph-12lz8s43jn", md: "tgph-12lz8s43jo", lg: "tgph-12lz8s43jp", xl: "tgph-12lz8s43jq", "2xl": "tgph-12lz8s43jr" }, defaultClass: "tgph-12lz8s43jn" }, 44: { conditions: { sm: "tgph-12lz8s43js", md: "tgph-12lz8s43jt", lg: "tgph-12lz8s43ju", xl: "tgph-12lz8s43jv", "2xl": "tgph-12lz8s43jw" }, defaultClass: "tgph-12lz8s43js" }, 48: { conditions: { sm: "tgph-12lz8s43jx", md: "tgph-12lz8s43jy", lg: "tgph-12lz8s43jz", xl: "tgph-12lz8s43k0", "2xl": "tgph-12lz8s43k1" }, defaultClass: "tgph-12lz8s43jx" }, 52: { conditions: { sm: "tgph-12lz8s43k2", md: "tgph-12lz8s43k3", lg: "tgph-12lz8s43k4", xl: "tgph-12lz8s43k5", "2xl": "tgph-12lz8s43k6" }, defaultClass: "tgph-12lz8s43k2" }, 56: { conditions: { sm: "tgph-12lz8s43k7", md: "tgph-12lz8s43k8", lg: "tgph-12lz8s43k9", xl: "tgph-12lz8s43ka", "2xl": "tgph-12lz8s43kb" }, defaultClass: "tgph-12lz8s43k7" }, 60: { conditions: { sm: "tgph-12lz8s43kc", md: "tgph-12lz8s43kd", lg: "tgph-12lz8s43ke", xl: "tgph-12lz8s43kf", "2xl": "tgph-12lz8s43kg" }, defaultClass: "tgph-12lz8s43kc" }, 64: { conditions: { sm: "tgph-12lz8s43kh", md: "tgph-12lz8s43ki", lg: "tgph-12lz8s43kj", xl: "tgph-12lz8s43kk", "2xl": "tgph-12lz8s43kl" }, defaultClass: "tgph-12lz8s43kh" }, 72: { conditions: { sm: "tgph-12lz8s43km", md: "tgph-12lz8s43kn", lg: "tgph-12lz8s43ko", xl: "tgph-12lz8s43kp", "2xl": "tgph-12lz8s43kq" }, defaultClass: "tgph-12lz8s43km" }, 80: { conditions: { sm: "tgph-12lz8s43kr", md: "tgph-12lz8s43ks", lg: "tgph-12lz8s43kt", xl: "tgph-12lz8s43ku", "2xl": "tgph-12lz8s43kv" }, defaultClass: "tgph-12lz8s43kr" }, 96: { conditions: { sm: "tgph-12lz8s43kw", md: "tgph-12lz8s43kx", lg: "tgph-12lz8s43ky", xl: "tgph-12lz8s43kz", "2xl": "tgph-12lz8s43l0" }, defaultClass: "tgph-12lz8s43kw" }, 140: { conditions: { sm: "tgph-12lz8s43l1", md: "tgph-12lz8s43l2", lg: "tgph-12lz8s43l3", xl: "tgph-12lz8s43l4", "2xl": "tgph-12lz8s43l5" }, defaultClass: "tgph-12lz8s43l1" }, 160: { conditions: { sm: "tgph-12lz8s43l6", md: "tgph-12lz8s43l7", lg: "tgph-12lz8s43l8", xl: "tgph-12lz8s43l9", "2xl": "tgph-12lz8s43la" }, defaultClass: "tgph-12lz8s43l6" }, px: { conditions: { sm: "tgph-12lz8s43lb", md: "tgph-12lz8s43lc", lg: "tgph-12lz8s43ld", xl: "tgph-12lz8s43le", "2xl": "tgph-12lz8s43lf" }, defaultClass: "tgph-12lz8s43lb" }, full: { conditions: { sm: "tgph-12lz8s43lg", md: "tgph-12lz8s43lh", lg: "tgph-12lz8s43li", xl: "tgph-12lz8s43lj", "2xl": "tgph-12lz8s43lk" }, defaultClass: "tgph-12lz8s43lg" }, auto: { conditions: { sm: "tgph-12lz8s43ll", md: "tgph-12lz8s43lm", lg: "tgph-12lz8s43ln", xl: "tgph-12lz8s43lo", "2xl": "tgph-12lz8s43lp" }, defaultClass: "tgph-12lz8s43ll" } }, responsiveArray: void 0 }, width: { values: { 0: { conditions: { sm: "tgph-12lz8s43lq", md: "tgph-12lz8s43lr", lg: "tgph-12lz8s43ls", xl: "tgph-12lz8s43lt", "2xl": "tgph-12lz8s43lu" }, defaultClass: "tgph-12lz8s43lq" }, 1: { conditions: { sm: "tgph-12lz8s43lv", md: "tgph-12lz8s43lw", lg: "tgph-12lz8s43lx", xl: "tgph-12lz8s43ly", "2xl": "tgph-12lz8s43lz" }, defaultClass: "tgph-12lz8s43lv" }, 2: { conditions: { sm: "tgph-12lz8s43m0", md: "tgph-12lz8s43m1", lg: "tgph-12lz8s43m2", xl: "tgph-12lz8s43m3", "2xl": "tgph-12lz8s43m4" }, defaultClass: "tgph-12lz8s43m0" }, 3: { conditions: { sm: "tgph-12lz8s43m5", md: "tgph-12lz8s43m6", lg: "tgph-12lz8s43m7", xl: "tgph-12lz8s43m8", "2xl": "tgph-12lz8s43m9" }, defaultClass: "tgph-12lz8s43m5" }, 4: { conditions: { sm: "tgph-12lz8s43ma", md: "tgph-12lz8s43mb", lg: "tgph-12lz8s43mc", xl: "tgph-12lz8s43md", "2xl": "tgph-12lz8s43me" }, defaultClass: "tgph-12lz8s43ma" }, 5: { conditions: { sm: "tgph-12lz8s43mf", md: "tgph-12lz8s43mg", lg: "tgph-12lz8s43mh", xl: "tgph-12lz8s43mi", "2xl": "tgph-12lz8s43mj" }, defaultClass: "tgph-12lz8s43mf" }, 6: { conditions: { sm: "tgph-12lz8s43mk", md: "tgph-12lz8s43ml", lg: "tgph-12lz8s43mm", xl: "tgph-12lz8s43mn", "2xl": "tgph-12lz8s43mo" }, defaultClass: "tgph-12lz8s43mk" }, 7: { conditions: { sm: "tgph-12lz8s43mp", md: "tgph-12lz8s43mq", lg: "tgph-12lz8s43mr", xl: "tgph-12lz8s43ms", "2xl": "tgph-12lz8s43mt" }, defaultClass: "tgph-12lz8s43mp" }, 8: { conditions: { sm: "tgph-12lz8s43mu", md: "tgph-12lz8s43mv", lg: "tgph-12lz8s43mw", xl: "tgph-12lz8s43mx", "2xl": "tgph-12lz8s43my" }, defaultClass: "tgph-12lz8s43mu" }, 9: { conditions: { sm: "tgph-12lz8s43mz", md: "tgph-12lz8s43n0", lg: "tgph-12lz8s43n1", xl: "tgph-12lz8s43n2", "2xl": "tgph-12lz8s43n3" }, defaultClass: "tgph-12lz8s43mz" }, 10: { conditions: { sm: "tgph-12lz8s43n4", md: "tgph-12lz8s43n5", lg: "tgph-12lz8s43n6", xl: "tgph-12lz8s43n7", "2xl": "tgph-12lz8s43n8" }, defaultClass: "tgph-12lz8s43n4" }, 11: { conditions: { sm: "tgph-12lz8s43n9", md: "tgph-12lz8s43na", lg: "tgph-12lz8s43nb", xl: "tgph-12lz8s43nc", "2xl": "tgph-12lz8s43nd" }, defaultClass: "tgph-12lz8s43n9" }, 12: { conditions: { sm: "tgph-12lz8s43ne", md: "tgph-12lz8s43nf", lg: "tgph-12lz8s43ng", xl: "tgph-12lz8s43nh", "2xl": "tgph-12lz8s43ni" }, defaultClass: "tgph-12lz8s43ne" }, 14: { conditions: { sm: "tgph-12lz8s43nj", md: "tgph-12lz8s43nk", lg: "tgph-12lz8s43nl", xl: "tgph-12lz8s43nm", "2xl": "tgph-12lz8s43nn" }, defaultClass: "tgph-12lz8s43nj" }, 16: { conditions: { sm: "tgph-12lz8s43no", md: "tgph-12lz8s43np", lg: "tgph-12lz8s43nq", xl: "tgph-12lz8s43nr", "2xl": "tgph-12lz8s43ns" }, defaultClass: "tgph-12lz8s43no" }, 20: { conditions: { sm: "tgph-12lz8s43nt", md: "tgph-12lz8s43nu", lg: "tgph-12lz8s43nv", xl: "tgph-12lz8s43nw", "2xl": "tgph-12lz8s43nx" }, defaultClass: "tgph-12lz8s43nt" }, 24: { conditions: { sm: "tgph-12lz8s43ny", md: "tgph-12lz8s43nz", lg: "tgph-12lz8s43o0", xl: "tgph-12lz8s43o1", "2xl": "tgph-12lz8s43o2" }, defaultClass: "tgph-12lz8s43ny" }, 28: { conditions: { sm: "tgph-12lz8s43o3", md: "tgph-12lz8s43o4", lg: "tgph-12lz8s43o5", xl: "tgph-12lz8s43o6", "2xl": "tgph-12lz8s43o7" }, defaultClass: "tgph-12lz8s43o3" }, 32: { conditions: { sm: "tgph-12lz8s43o8", md: "tgph-12lz8s43o9", lg: "tgph-12lz8s43oa", xl: "tgph-12lz8s43ob", "2xl": "tgph-12lz8s43oc" }, defaultClass: "tgph-12lz8s43o8" }, 36: { conditions: { sm: "tgph-12lz8s43od", md: "tgph-12lz8s43oe", lg: "tgph-12lz8s43of", xl: "tgph-12lz8s43og", "2xl": "tgph-12lz8s43oh" }, defaultClass: "tgph-12lz8s43od" }, 40: { conditions: { sm: "tgph-12lz8s43oi", md: "tgph-12lz8s43oj", lg: "tgph-12lz8s43ok", xl: "tgph-12lz8s43ol", "2xl": "tgph-12lz8s43om" }, defaultClass: "tgph-12lz8s43oi" }, 44: { conditions: { sm: "tgph-12lz8s43on", md: "tgph-12lz8s43oo", lg: "tgph-12lz8s43op", xl: "tgph-12lz8s43oq", "2xl": "tgph-12lz8s43or" }, defaultClass: "tgph-12lz8s43on" }, 48: { conditions: { sm: "tgph-12lz8s43os", md: "tgph-12lz8s43ot", lg: "tgph-12lz8s43ou", xl: "tgph-12lz8s43ov", "2xl": "tgph-12lz8s43ow" }, defaultClass: "tgph-12lz8s43os" }, 52: { conditions: { sm: "tgph-12lz8s43ox", md: "tgph-12lz8s43oy", lg: "tgph-12lz8s43oz", xl: "tgph-12lz8s43p0", "2xl": "tgph-12lz8s43p1" }, defaultClass: "tgph-12lz8s43ox" }, 56: { conditions: { sm: "tgph-12lz8s43p2", md: "tgph-12lz8s43p3", lg: "tgph-12lz8s43p4", xl: "tgph-12lz8s43p5", "2xl": "tgph-12lz8s43p6" }, defaultClass: "tgph-12lz8s43p2" }, 60: { conditions: { sm: "tgph-12lz8s43p7", md: "tgph-12lz8s43p8", lg: "tgph-12lz8s43p9", xl: "tgph-12lz8s43pa", "2xl": "tgph-12lz8s43pb" }, defaultClass: "tgph-12lz8s43p7" }, 64: { conditions: { sm: "tgph-12lz8s43pc", md: "tgph-12lz8s43pd", lg: "tgph-12lz8s43pe", xl: "tgph-12lz8s43pf", "2xl": "tgph-12lz8s43pg" }, defaultClass: "tgph-12lz8s43pc" }, 72: { conditions: { sm: "tgph-12lz8s43ph", md: "tgph-12lz8s43pi", lg: "tgph-12lz8s43pj", xl: "tgph-12lz8s43pk", "2xl": "tgph-12lz8s43pl" }, defaultClass: "tgph-12lz8s43ph" }, 80: { conditions: { sm: "tgph-12lz8s43pm", md: "tgph-12lz8s43pn", lg: "tgph-12lz8s43po", xl: "tgph-12lz8s43pp", "2xl": "tgph-12lz8s43pq" }, defaultClass: "tgph-12lz8s43pm" }, 96: { conditions: { sm: "tgph-12lz8s43pr", md: "tgph-12lz8s43ps", lg: "tgph-12lz8s43pt", xl: "tgph-12lz8s43pu", "2xl": "tgph-12lz8s43pv" }, defaultClass: "tgph-12lz8s43pr" }, 140: { conditions: { sm: "tgph-12lz8s43pw", md: "tgph-12lz8s43px", lg: "tgph-12lz8s43py", xl: "tgph-12lz8s43pz", "2xl": "tgph-12lz8s43q0" }, defaultClass: "tgph-12lz8s43pw" }, 160: { conditions: { sm: "tgph-12lz8s43q1", md: "tgph-12lz8s43q2", lg: "tgph-12lz8s43q3", xl: "tgph-12lz8s43q4", "2xl": "tgph-12lz8s43q5" }, defaultClass: "tgph-12lz8s43q1" }, px: { conditions: { sm: "tgph-12lz8s43q6", md: "tgph-12lz8s43q7", lg: "tgph-12lz8s43q8", xl: "tgph-12lz8s43q9", "2xl": "tgph-12lz8s43qa" }, defaultClass: "tgph-12lz8s43q6" }, full: { conditions: { sm: "tgph-12lz8s43qb", md: "tgph-12lz8s43qc", lg: "tgph-12lz8s43qd", xl: "tgph-12lz8s43qe", "2xl": "tgph-12lz8s43qf" }, defaultClass: "tgph-12lz8s43qb" }, auto: { conditions: { sm: "tgph-12lz8s43qg", md: "tgph-12lz8s43qh", lg: "tgph-12lz8s43qi", xl: "tgph-12lz8s43qj", "2xl": "tgph-12lz8s43qk" }, defaultClass: "tgph-12lz8s43qg" } }, responsiveArray: void 0 }, zIndex: { values: { hidden: { conditions: { sm: "tgph-12lz8s43ql", md: "tgph-12lz8s43qm", lg: "tgph-12lz8s43qn", xl: "tgph-12lz8s43qo", "2xl": "tgph-12lz8s43qp" }, defaultClass: "tgph-12lz8s43ql" }, base: { conditions: { sm: "tgph-12lz8s43qq", md: "tgph-12lz8s43qr", lg: "tgph-12lz8s43qs", xl: "tgph-12lz8s43qt", "2xl": "tgph-12lz8s43qu" }, defaultClass: "tgph-12lz8s43qq" }, auto: { conditions: { sm: "tgph-12lz8s43qv", md: "tgph-12lz8s43qw", lg: "tgph-12lz8s43qx", xl: "tgph-12lz8s43qy", "2xl": "tgph-12lz8s43qz" }, defaultClass: "tgph-12lz8s43qv" }, dropdown: { conditions: { sm: "tgph-12lz8s43r0", md: "tgph-12lz8s43r1", lg: "tgph-12lz8s43r2", xl: "tgph-12lz8s43r3", "2xl": "tgph-12lz8s43r4" }, defaultClass: "tgph-12lz8s43r0" }, sticky: { conditions: { sm: "tgph-12lz8s43r5", md: "tgph-12lz8s43r6", lg: "tgph-12lz8s43r7", xl: "tgph-12lz8s43r8", "2xl": "tgph-12lz8s43r9" }, defaultClass: "tgph-12lz8s43r5" }, banner: { conditions: { sm: "tgph-12lz8s43ra", md: "tgph-12lz8s43rb", lg: "tgph-12lz8s43rc", xl: "tgph-12lz8s43rd", "2xl": "tgph-12lz8s43re" }, defaultClass: "tgph-12lz8s43ra" }, overlay: { conditions: { sm: "tgph-12lz8s43rf", md: "tgph-12lz8s43rg", lg: "tgph-12lz8s43rh", xl: "tgph-12lz8s43ri", "2xl": "tgph-12lz8s43rj" }, defaultClass: "tgph-12lz8s43rf" }, modal: { conditions: { sm: "tgph-12lz8s43rk", md: "tgph-12lz8s43rl", lg: "tgph-12lz8s43rm", xl: "tgph-12lz8s43rn", "2xl": "tgph-12lz8s43ro" }, defaultClass: "tgph-12lz8s43rk" }, popover: { conditions: { sm: "tgph-12lz8s43rp", md: "tgph-12lz8s43rq", lg: "tgph-12lz8s43rr", xl: "tgph-12lz8s43rs", "2xl": "tgph-12lz8s43rt" }, defaultClass: "tgph-12lz8s43rp" }, skipLink: { conditions: { sm: "tgph-12lz8s43ru", md: "tgph-12lz8s43rv", lg: "tgph-12lz8s43rw", xl: "tgph-12lz8s43rx", "2xl": "tgph-12lz8s43ry" }, defaultClass: "tgph-12lz8s43ru" }, toast: { conditions: { sm: "tgph-12lz8s43rz", md: "tgph-12lz8s43s0", lg: "tgph-12lz8s43s1", xl: "tgph-12lz8s43s2", "2xl": "tgph-12lz8s43s3" }, defaultClass: "tgph-12lz8s43rz" }, tooltip: { conditions: { sm: "tgph-12lz8s43s4", md: "tgph-12lz8s43s5", lg: "tgph-12lz8s43s6", xl: "tgph-12lz8s43s7", "2xl": "tgph-12lz8s43s8" }, defaultClass: "tgph-12lz8s43s4" } }, responsiveArray: void 0 } } };
|
|
2268
|
+
return s.styles.backgroundColor.responsiveArray = s.conditions.responsiveArray, s.styles.borderWidth.responsiveArray = s.conditions.responsiveArray, s.styles.borderBottomWidth.responsiveArray = s.conditions.responsiveArray, s.styles.borderLeftWidth.responsiveArray = s.conditions.responsiveArray, s.styles.borderRightWidth.responsiveArray = s.conditions.responsiveArray, s.styles.borderTopWidth.responsiveArray = s.conditions.responsiveArray, s.styles.borderColor.responsiveArray = s.conditions.responsiveArray, s.styles.borderStyle.responsiveArray = s.conditions.responsiveArray, s.styles.borderRadius.responsiveArray = s.conditions.responsiveArray, s.styles.borderRadiusBottomLeft.responsiveArray = s.conditions.responsiveArray, s.styles.borderRadiusBottomRight.responsiveArray = s.conditions.responsiveArray, s.styles.borderRadiusTopLeft.responsiveArray = s.conditions.responsiveArray, s.styles.borderRadiusTopRight.responsiveArray = s.conditions.responsiveArray, s.styles.boxShadow.responsiveArray = s.conditions.responsiveArray, s.styles.display.responsiveArray = s.conditions.responsiveArray, s.styles.height.responsiveArray = s.conditions.responsiveArray, s.styles.margin.responsiveArray = s.conditions.responsiveArray, s.styles.marginBottom.responsiveArray = s.conditions.responsiveArray, s.styles.marginLeft.responsiveArray = s.conditions.responsiveArray, s.styles.marginRight.responsiveArray = s.conditions.responsiveArray, s.styles.marginTop.responsiveArray = s.conditions.responsiveArray, s.styles.maxHeight.responsiveArray = s.conditions.responsiveArray, s.styles.maxWidth.responsiveArray = s.conditions.responsiveArray, s.styles.padding.responsiveArray = s.conditions.responsiveArray, s.styles.paddingBottom.responsiveArray = s.conditions.responsiveArray, s.styles.paddingLeft.responsiveArray = s.conditions.responsiveArray, s.styles.paddingRight.responsiveArray = s.conditions.responsiveArray, s.styles.paddingTop.responsiveArray = s.conditions.responsiveArray, s.styles.width.responsiveArray = s.conditions.responsiveArray, s.styles.zIndex.responsiveArray = s.conditions.responsiveArray, s;
|
|
2269
|
+
}());
|
|
2270
|
+
const Rt = ({
|
|
2271
|
+
as: s,
|
|
2272
|
+
className: l,
|
|
412
2273
|
tgphRef: t,
|
|
2274
|
+
borderColor: g = "gray-4",
|
|
2275
|
+
borderStyle: h = "solid",
|
|
2276
|
+
borderWidth: p = "0",
|
|
413
2277
|
...e
|
|
414
2278
|
}) => {
|
|
415
|
-
const
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
2279
|
+
const z = s || "div", { styleClassName: n, componentProps: o } = $l({
|
|
2280
|
+
props: { ...e, borderColor: g, borderStyle: h, borderWidth: p },
|
|
2281
|
+
stylePropsFn: Et
|
|
2282
|
+
});
|
|
2283
|
+
return /* @__PURE__ */ q(
|
|
2284
|
+
z,
|
|
2285
|
+
{
|
|
2286
|
+
className: Rl("tgph-box", l, n),
|
|
2287
|
+
ref: t,
|
|
2288
|
+
...o
|
|
2289
|
+
}
|
|
421
2290
|
);
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
2291
|
+
};
|
|
2292
|
+
var St = function() {
|
|
2293
|
+
var s = { conditions: { defaultCondition: "sm", conditionNames: ["sm", "md", "lg", "xl", "2xl"], responsiveArray: ["sm", "md", "lg", "xl", "2xl"] }, styles: { align: { mappings: ["alignItems"] }, justify: { mappings: ["justifyContent"] }, direction: { mappings: ["flexDirection"] }, alignItems: { values: { "flex-start": { conditions: { sm: "tgph-8sk2m50", md: "tgph-8sk2m51", lg: "tgph-8sk2m52", xl: "tgph-8sk2m53", "2xl": "tgph-8sk2m54" }, defaultClass: "tgph-8sk2m50" }, center: { conditions: { sm: "tgph-8sk2m55", md: "tgph-8sk2m56", lg: "tgph-8sk2m57", xl: "tgph-8sk2m58", "2xl": "tgph-8sk2m59" }, defaultClass: "tgph-8sk2m55" }, "flex-end": { conditions: { sm: "tgph-8sk2m5a", md: "tgph-8sk2m5b", lg: "tgph-8sk2m5c", xl: "tgph-8sk2m5d", "2xl": "tgph-8sk2m5e" }, defaultClass: "tgph-8sk2m5a" }, stretch: { conditions: { sm: "tgph-8sk2m5f", md: "tgph-8sk2m5g", lg: "tgph-8sk2m5h", xl: "tgph-8sk2m5i", "2xl": "tgph-8sk2m5j" }, defaultClass: "tgph-8sk2m5f" } }, responsiveArray: void 0 }, flexDirection: { values: { row: { conditions: { sm: "tgph-8sk2m5k", md: "tgph-8sk2m5l", lg: "tgph-8sk2m5m", xl: "tgph-8sk2m5n", "2xl": "tgph-8sk2m5o" }, defaultClass: "tgph-8sk2m5k" }, "row-reverse": { conditions: { sm: "tgph-8sk2m5p", md: "tgph-8sk2m5q", lg: "tgph-8sk2m5r", xl: "tgph-8sk2m5s", "2xl": "tgph-8sk2m5t" }, defaultClass: "tgph-8sk2m5p" }, column: { conditions: { sm: "tgph-8sk2m5u", md: "tgph-8sk2m5v", lg: "tgph-8sk2m5w", xl: "tgph-8sk2m5x", "2xl": "tgph-8sk2m5y" }, defaultClass: "tgph-8sk2m5u" }, "column-reverse": { conditions: { sm: "tgph-8sk2m5z", md: "tgph-8sk2m510", lg: "tgph-8sk2m511", xl: "tgph-8sk2m512", "2xl": "tgph-8sk2m513" }, defaultClass: "tgph-8sk2m5z" } }, responsiveArray: void 0 }, gap: { values: { 0: { conditions: { sm: "tgph-8sk2m514", md: "tgph-8sk2m515", lg: "tgph-8sk2m516", xl: "tgph-8sk2m517", "2xl": "tgph-8sk2m518" }, defaultClass: "tgph-8sk2m514" }, 1: { conditions: { sm: "tgph-8sk2m519", md: "tgph-8sk2m51a", lg: "tgph-8sk2m51b", xl: "tgph-8sk2m51c", "2xl": "tgph-8sk2m51d" }, defaultClass: "tgph-8sk2m519" }, 2: { conditions: { sm: "tgph-8sk2m51e", md: "tgph-8sk2m51f", lg: "tgph-8sk2m51g", xl: "tgph-8sk2m51h", "2xl": "tgph-8sk2m51i" }, defaultClass: "tgph-8sk2m51e" }, 3: { conditions: { sm: "tgph-8sk2m51j", md: "tgph-8sk2m51k", lg: "tgph-8sk2m51l", xl: "tgph-8sk2m51m", "2xl": "tgph-8sk2m51n" }, defaultClass: "tgph-8sk2m51j" }, 4: { conditions: { sm: "tgph-8sk2m51o", md: "tgph-8sk2m51p", lg: "tgph-8sk2m51q", xl: "tgph-8sk2m51r", "2xl": "tgph-8sk2m51s" }, defaultClass: "tgph-8sk2m51o" }, 5: { conditions: { sm: "tgph-8sk2m51t", md: "tgph-8sk2m51u", lg: "tgph-8sk2m51v", xl: "tgph-8sk2m51w", "2xl": "tgph-8sk2m51x" }, defaultClass: "tgph-8sk2m51t" }, 6: { conditions: { sm: "tgph-8sk2m51y", md: "tgph-8sk2m51z", lg: "tgph-8sk2m520", xl: "tgph-8sk2m521", "2xl": "tgph-8sk2m522" }, defaultClass: "tgph-8sk2m51y" }, 7: { conditions: { sm: "tgph-8sk2m523", md: "tgph-8sk2m524", lg: "tgph-8sk2m525", xl: "tgph-8sk2m526", "2xl": "tgph-8sk2m527" }, defaultClass: "tgph-8sk2m523" }, 8: { conditions: { sm: "tgph-8sk2m528", md: "tgph-8sk2m529", lg: "tgph-8sk2m52a", xl: "tgph-8sk2m52b", "2xl": "tgph-8sk2m52c" }, defaultClass: "tgph-8sk2m528" }, 9: { conditions: { sm: "tgph-8sk2m52d", md: "tgph-8sk2m52e", lg: "tgph-8sk2m52f", xl: "tgph-8sk2m52g", "2xl": "tgph-8sk2m52h" }, defaultClass: "tgph-8sk2m52d" }, 10: { conditions: { sm: "tgph-8sk2m52i", md: "tgph-8sk2m52j", lg: "tgph-8sk2m52k", xl: "tgph-8sk2m52l", "2xl": "tgph-8sk2m52m" }, defaultClass: "tgph-8sk2m52i" }, 11: { conditions: { sm: "tgph-8sk2m52n", md: "tgph-8sk2m52o", lg: "tgph-8sk2m52p", xl: "tgph-8sk2m52q", "2xl": "tgph-8sk2m52r" }, defaultClass: "tgph-8sk2m52n" }, 12: { conditions: { sm: "tgph-8sk2m52s", md: "tgph-8sk2m52t", lg: "tgph-8sk2m52u", xl: "tgph-8sk2m52v", "2xl": "tgph-8sk2m52w" }, defaultClass: "tgph-8sk2m52s" }, 14: { conditions: { sm: "tgph-8sk2m52x", md: "tgph-8sk2m52y", lg: "tgph-8sk2m52z", xl: "tgph-8sk2m530", "2xl": "tgph-8sk2m531" }, defaultClass: "tgph-8sk2m52x" }, 16: { conditions: { sm: "tgph-8sk2m532", md: "tgph-8sk2m533", lg: "tgph-8sk2m534", xl: "tgph-8sk2m535", "2xl": "tgph-8sk2m536" }, defaultClass: "tgph-8sk2m532" }, 20: { conditions: { sm: "tgph-8sk2m537", md: "tgph-8sk2m538", lg: "tgph-8sk2m539", xl: "tgph-8sk2m53a", "2xl": "tgph-8sk2m53b" }, defaultClass: "tgph-8sk2m537" }, 24: { conditions: { sm: "tgph-8sk2m53c", md: "tgph-8sk2m53d", lg: "tgph-8sk2m53e", xl: "tgph-8sk2m53f", "2xl": "tgph-8sk2m53g" }, defaultClass: "tgph-8sk2m53c" }, 28: { conditions: { sm: "tgph-8sk2m53h", md: "tgph-8sk2m53i", lg: "tgph-8sk2m53j", xl: "tgph-8sk2m53k", "2xl": "tgph-8sk2m53l" }, defaultClass: "tgph-8sk2m53h" }, 32: { conditions: { sm: "tgph-8sk2m53m", md: "tgph-8sk2m53n", lg: "tgph-8sk2m53o", xl: "tgph-8sk2m53p", "2xl": "tgph-8sk2m53q" }, defaultClass: "tgph-8sk2m53m" }, 36: { conditions: { sm: "tgph-8sk2m53r", md: "tgph-8sk2m53s", lg: "tgph-8sk2m53t", xl: "tgph-8sk2m53u", "2xl": "tgph-8sk2m53v" }, defaultClass: "tgph-8sk2m53r" }, 40: { conditions: { sm: "tgph-8sk2m53w", md: "tgph-8sk2m53x", lg: "tgph-8sk2m53y", xl: "tgph-8sk2m53z", "2xl": "tgph-8sk2m540" }, defaultClass: "tgph-8sk2m53w" }, 44: { conditions: { sm: "tgph-8sk2m541", md: "tgph-8sk2m542", lg: "tgph-8sk2m543", xl: "tgph-8sk2m544", "2xl": "tgph-8sk2m545" }, defaultClass: "tgph-8sk2m541" }, 48: { conditions: { sm: "tgph-8sk2m546", md: "tgph-8sk2m547", lg: "tgph-8sk2m548", xl: "tgph-8sk2m549", "2xl": "tgph-8sk2m54a" }, defaultClass: "tgph-8sk2m546" }, 52: { conditions: { sm: "tgph-8sk2m54b", md: "tgph-8sk2m54c", lg: "tgph-8sk2m54d", xl: "tgph-8sk2m54e", "2xl": "tgph-8sk2m54f" }, defaultClass: "tgph-8sk2m54b" }, 56: { conditions: { sm: "tgph-8sk2m54g", md: "tgph-8sk2m54h", lg: "tgph-8sk2m54i", xl: "tgph-8sk2m54j", "2xl": "tgph-8sk2m54k" }, defaultClass: "tgph-8sk2m54g" }, 60: { conditions: { sm: "tgph-8sk2m54l", md: "tgph-8sk2m54m", lg: "tgph-8sk2m54n", xl: "tgph-8sk2m54o", "2xl": "tgph-8sk2m54p" }, defaultClass: "tgph-8sk2m54l" }, 64: { conditions: { sm: "tgph-8sk2m54q", md: "tgph-8sk2m54r", lg: "tgph-8sk2m54s", xl: "tgph-8sk2m54t", "2xl": "tgph-8sk2m54u" }, defaultClass: "tgph-8sk2m54q" }, 72: { conditions: { sm: "tgph-8sk2m54v", md: "tgph-8sk2m54w", lg: "tgph-8sk2m54x", xl: "tgph-8sk2m54y", "2xl": "tgph-8sk2m54z" }, defaultClass: "tgph-8sk2m54v" }, 80: { conditions: { sm: "tgph-8sk2m550", md: "tgph-8sk2m551", lg: "tgph-8sk2m552", xl: "tgph-8sk2m553", "2xl": "tgph-8sk2m554" }, defaultClass: "tgph-8sk2m550" }, 96: { conditions: { sm: "tgph-8sk2m555", md: "tgph-8sk2m556", lg: "tgph-8sk2m557", xl: "tgph-8sk2m558", "2xl": "tgph-8sk2m559" }, defaultClass: "tgph-8sk2m555" }, 140: { conditions: { sm: "tgph-8sk2m55a", md: "tgph-8sk2m55b", lg: "tgph-8sk2m55c", xl: "tgph-8sk2m55d", "2xl": "tgph-8sk2m55e" }, defaultClass: "tgph-8sk2m55a" }, 160: { conditions: { sm: "tgph-8sk2m55f", md: "tgph-8sk2m55g", lg: "tgph-8sk2m55h", xl: "tgph-8sk2m55i", "2xl": "tgph-8sk2m55j" }, defaultClass: "tgph-8sk2m55f" }, px: { conditions: { sm: "tgph-8sk2m55k", md: "tgph-8sk2m55l", lg: "tgph-8sk2m55m", xl: "tgph-8sk2m55n", "2xl": "tgph-8sk2m55o" }, defaultClass: "tgph-8sk2m55k" }, full: { conditions: { sm: "tgph-8sk2m55p", md: "tgph-8sk2m55q", lg: "tgph-8sk2m55r", xl: "tgph-8sk2m55s", "2xl": "tgph-8sk2m55t" }, defaultClass: "tgph-8sk2m55p" }, auto: { conditions: { sm: "tgph-8sk2m55u", md: "tgph-8sk2m55v", lg: "tgph-8sk2m55w", xl: "tgph-8sk2m55x", "2xl": "tgph-8sk2m55y" }, defaultClass: "tgph-8sk2m55u" } }, responsiveArray: void 0 }, wrap: { values: { nowrap: { conditions: { sm: "tgph-8sk2m55z", md: "tgph-8sk2m560", lg: "tgph-8sk2m561", xl: "tgph-8sk2m562", "2xl": "tgph-8sk2m563" }, defaultClass: "tgph-8sk2m55z" }, wrap: { conditions: { sm: "tgph-8sk2m564", md: "tgph-8sk2m565", lg: "tgph-8sk2m566", xl: "tgph-8sk2m567", "2xl": "tgph-8sk2m568" }, defaultClass: "tgph-8sk2m564" }, "wrap-reverse": { conditions: { sm: "tgph-8sk2m569", md: "tgph-8sk2m56a", lg: "tgph-8sk2m56b", xl: "tgph-8sk2m56c", "2xl": "tgph-8sk2m56d" }, defaultClass: "tgph-8sk2m569" } }, responsiveArray: void 0 }, justifyContent: { values: { "flex-start": { conditions: { sm: "tgph-8sk2m56e", md: "tgph-8sk2m56f", lg: "tgph-8sk2m56g", xl: "tgph-8sk2m56h", "2xl": "tgph-8sk2m56i" }, defaultClass: "tgph-8sk2m56e" }, center: { conditions: { sm: "tgph-8sk2m56j", md: "tgph-8sk2m56k", lg: "tgph-8sk2m56l", xl: "tgph-8sk2m56m", "2xl": "tgph-8sk2m56n" }, defaultClass: "tgph-8sk2m56j" }, "flex-end": { conditions: { sm: "tgph-8sk2m56o", md: "tgph-8sk2m56p", lg: "tgph-8sk2m56q", xl: "tgph-8sk2m56r", "2xl": "tgph-8sk2m56s" }, defaultClass: "tgph-8sk2m56o" }, "space-between": { conditions: { sm: "tgph-8sk2m56t", md: "tgph-8sk2m56u", lg: "tgph-8sk2m56v", xl: "tgph-8sk2m56w", "2xl": "tgph-8sk2m56x" }, defaultClass: "tgph-8sk2m56t" }, "space-around": { conditions: { sm: "tgph-8sk2m56y", md: "tgph-8sk2m56z", lg: "tgph-8sk2m570", xl: "tgph-8sk2m571", "2xl": "tgph-8sk2m572" }, defaultClass: "tgph-8sk2m56y" } }, responsiveArray: void 0 } } };
|
|
2294
|
+
return s.styles.alignItems.responsiveArray = s.conditions.responsiveArray, s.styles.flexDirection.responsiveArray = s.conditions.responsiveArray, s.styles.gap.responsiveArray = s.conditions.responsiveArray, s.styles.wrap.responsiveArray = s.conditions.responsiveArray, s.styles.justifyContent.responsiveArray = s.conditions.responsiveArray, s;
|
|
2295
|
+
}(), Pt = Fl(St);
|
|
2296
|
+
const Tt = ({
|
|
2297
|
+
className: s,
|
|
2298
|
+
display: l = "flex",
|
|
2299
|
+
...t
|
|
2300
|
+
}) => {
|
|
2301
|
+
const { styleClassName: g, componentProps: h } = $l({
|
|
2302
|
+
props: { ...t, display: l },
|
|
2303
|
+
stylePropsFn: Pt
|
|
2304
|
+
});
|
|
2305
|
+
return /* @__PURE__ */ q(
|
|
2306
|
+
Rt,
|
|
430
2307
|
{
|
|
431
|
-
className:
|
|
432
|
-
|
|
433
|
-
...l.rest
|
|
2308
|
+
className: Rl("tgph-stack", g, s),
|
|
2309
|
+
...h
|
|
434
2310
|
}
|
|
435
2311
|
);
|
|
436
|
-
},
|
|
2312
|
+
}, Lt = {
|
|
437
2313
|
Root: {
|
|
438
2314
|
0: "h-5",
|
|
439
2315
|
1: "h-6",
|
|
440
2316
|
2: "h-8"
|
|
441
2317
|
}
|
|
442
|
-
},
|
|
2318
|
+
}, _l = {
|
|
443
2319
|
Root: {
|
|
444
2320
|
0: "1",
|
|
445
2321
|
1: "2",
|
|
@@ -450,7 +2326,7 @@ const g = ["sm", "md", "lg", "xl", "2xl"], G = (o) => {
|
|
|
450
2326
|
1: "2",
|
|
451
2327
|
2: "2"
|
|
452
2328
|
}
|
|
453
|
-
},
|
|
2329
|
+
}, H = {
|
|
454
2330
|
Root: {
|
|
455
2331
|
solid: {
|
|
456
2332
|
default: "bg-gray-9",
|
|
@@ -539,160 +2415,160 @@ const g = ["sm", "md", "lg", "xl", "2xl"], G = (o) => {
|
|
|
539
2415
|
purple: "purple"
|
|
540
2416
|
}
|
|
541
2417
|
}
|
|
542
|
-
},
|
|
2418
|
+
}, G = E.createContext({
|
|
543
2419
|
size: "1",
|
|
544
2420
|
color: "default",
|
|
545
2421
|
variant: "soft"
|
|
546
|
-
}),
|
|
547
|
-
as:
|
|
548
|
-
size:
|
|
549
|
-
color:
|
|
550
|
-
variant:
|
|
551
|
-
className:
|
|
552
|
-
...
|
|
553
|
-
}) => /* @__PURE__ */
|
|
554
|
-
|
|
2422
|
+
}), Ul = ({
|
|
2423
|
+
as: s = "span",
|
|
2424
|
+
size: l = "1",
|
|
2425
|
+
color: t = "default",
|
|
2426
|
+
variant: g = "soft",
|
|
2427
|
+
className: h,
|
|
2428
|
+
...p
|
|
2429
|
+
}) => /* @__PURE__ */ q(G.Provider, { value: { size: l, color: t, variant: g }, children: /* @__PURE__ */ q(
|
|
2430
|
+
Tt,
|
|
555
2431
|
{
|
|
556
|
-
as:
|
|
2432
|
+
as: s,
|
|
557
2433
|
display: "inline-flex",
|
|
558
2434
|
align: "center",
|
|
559
2435
|
rounded: "3",
|
|
560
|
-
pl:
|
|
561
|
-
className:
|
|
562
|
-
...
|
|
2436
|
+
pl: _l.Root[l],
|
|
2437
|
+
className: ll(Lt.Root[l], H.Root[g][t], h),
|
|
2438
|
+
...p,
|
|
563
2439
|
"data-tag": !0
|
|
564
2440
|
}
|
|
565
|
-
) }),
|
|
566
|
-
as:
|
|
567
|
-
...
|
|
2441
|
+
) }), Vl = ({
|
|
2442
|
+
as: s = "span",
|
|
2443
|
+
...l
|
|
568
2444
|
}) => {
|
|
569
|
-
const
|
|
570
|
-
return /* @__PURE__ */
|
|
571
|
-
|
|
2445
|
+
const t = E.useContext(G);
|
|
2446
|
+
return /* @__PURE__ */ q(
|
|
2447
|
+
ss,
|
|
572
2448
|
{
|
|
573
|
-
as:
|
|
574
|
-
size:
|
|
575
|
-
color:
|
|
2449
|
+
as: s,
|
|
2450
|
+
size: t.size,
|
|
2451
|
+
color: H.Text[t.variant][t.color],
|
|
576
2452
|
weight: "medium",
|
|
577
|
-
mr:
|
|
578
|
-
...
|
|
2453
|
+
mr: _l.Text[t.size],
|
|
2454
|
+
...l
|
|
579
2455
|
}
|
|
580
2456
|
);
|
|
581
|
-
},
|
|
582
|
-
onClick:
|
|
583
|
-
textToCopy:
|
|
584
|
-
className:
|
|
585
|
-
...
|
|
2457
|
+
}, Hl = ({
|
|
2458
|
+
onClick: s,
|
|
2459
|
+
textToCopy: l,
|
|
2460
|
+
className: t,
|
|
2461
|
+
...g
|
|
586
2462
|
}) => {
|
|
587
|
-
const
|
|
588
|
-
return
|
|
589
|
-
if (
|
|
590
|
-
const
|
|
591
|
-
return () => clearTimeout(
|
|
592
|
-
}
|
|
593
|
-
}, [
|
|
594
|
-
|
|
2463
|
+
const h = E.useContext(G), [p, e] = E.useState(!1);
|
|
2464
|
+
return E.useEffect(() => {
|
|
2465
|
+
if (p) {
|
|
2466
|
+
const z = setTimeout(() => e(!1), 2e3);
|
|
2467
|
+
return () => clearTimeout(z);
|
|
2468
|
+
}
|
|
2469
|
+
}, [p]), /* @__PURE__ */ q(ts, { mode: "wait", initial: !1, children: /* @__PURE__ */ q(ls, { label: "Copy text", children: /* @__PURE__ */ q(
|
|
2470
|
+
X.Root,
|
|
595
2471
|
{
|
|
596
|
-
onClick: (
|
|
597
|
-
var
|
|
598
|
-
|
|
2472
|
+
onClick: (z) => {
|
|
2473
|
+
var n;
|
|
2474
|
+
s == null || s(z), e(!0), l && navigator.clipboard.writeText(l), (n = z.currentTarget) == null || n.blur();
|
|
599
2475
|
},
|
|
600
|
-
size:
|
|
601
|
-
color:
|
|
602
|
-
variant:
|
|
603
|
-
className:
|
|
2476
|
+
size: h.size,
|
|
2477
|
+
color: H.Button[h.variant][h.color],
|
|
2478
|
+
variant: h.variant,
|
|
2479
|
+
className: ll("overflow-hidden", t),
|
|
604
2480
|
roundedTopRight: "3",
|
|
605
2481
|
roundedBottomRight: "3",
|
|
606
2482
|
roundedTopLeft: "0",
|
|
607
2483
|
roundedBottomLeft: "0",
|
|
608
|
-
...
|
|
609
|
-
children:
|
|
610
|
-
|
|
2484
|
+
...g,
|
|
2485
|
+
children: p ? /* @__PURE__ */ q(
|
|
2486
|
+
X.Icon,
|
|
611
2487
|
{
|
|
612
|
-
as:
|
|
2488
|
+
as: ml.span,
|
|
613
2489
|
initial: { y: "100%" },
|
|
614
2490
|
animate: { y: 0 },
|
|
615
2491
|
exit: { y: "100%" },
|
|
616
2492
|
transition: { duration: 0.2, type: "spring", bounce: 0 },
|
|
617
|
-
icon:
|
|
2493
|
+
icon: J.Check,
|
|
618
2494
|
alt: "Copied text"
|
|
619
2495
|
},
|
|
620
2496
|
"check icon"
|
|
621
|
-
) : /* @__PURE__ */
|
|
622
|
-
|
|
2497
|
+
) : /* @__PURE__ */ q(
|
|
2498
|
+
X.Icon,
|
|
623
2499
|
{
|
|
624
|
-
as:
|
|
2500
|
+
as: ml.span,
|
|
625
2501
|
initial: { y: "-100%" },
|
|
626
2502
|
animate: { y: 0 },
|
|
627
2503
|
exit: { y: "-100%" },
|
|
628
2504
|
transition: { duration: 0.2, type: "spring", bounce: 0 },
|
|
629
|
-
icon:
|
|
2505
|
+
icon: J.Copy,
|
|
630
2506
|
alt: "Copy text"
|
|
631
2507
|
},
|
|
632
2508
|
"copy icon"
|
|
633
2509
|
)
|
|
634
2510
|
}
|
|
635
2511
|
) }) });
|
|
636
|
-
},
|
|
637
|
-
className:
|
|
638
|
-
...
|
|
2512
|
+
}, Gl = ({
|
|
2513
|
+
className: s,
|
|
2514
|
+
...l
|
|
639
2515
|
}) => {
|
|
640
|
-
const
|
|
641
|
-
return /* @__PURE__ */
|
|
642
|
-
|
|
2516
|
+
const t = E.useContext(G);
|
|
2517
|
+
return /* @__PURE__ */ q(
|
|
2518
|
+
X,
|
|
643
2519
|
{
|
|
644
|
-
size:
|
|
645
|
-
color:
|
|
646
|
-
variant:
|
|
647
|
-
icon: { icon:
|
|
648
|
-
className:
|
|
649
|
-
...
|
|
2520
|
+
size: t.size,
|
|
2521
|
+
color: H.Button[t.variant][t.color],
|
|
2522
|
+
variant: t.variant,
|
|
2523
|
+
icon: { icon: J.X, alt: "close" },
|
|
2524
|
+
className: ll("rounded-tl-0 rounded-bl-0", s),
|
|
2525
|
+
...l
|
|
650
2526
|
}
|
|
651
2527
|
);
|
|
652
|
-
},
|
|
653
|
-
icon:
|
|
654
|
-
alt:
|
|
655
|
-
"aria-hidden":
|
|
656
|
-
className:
|
|
657
|
-
...
|
|
2528
|
+
}, Ql = ({
|
|
2529
|
+
icon: s,
|
|
2530
|
+
alt: l,
|
|
2531
|
+
"aria-hidden": t,
|
|
2532
|
+
className: g,
|
|
2533
|
+
...h
|
|
658
2534
|
}) => {
|
|
659
|
-
const
|
|
660
|
-
return /* @__PURE__ */
|
|
661
|
-
|
|
2535
|
+
const p = E.useContext(G), e = l ? { alt: l } : { "aria-hidden": t };
|
|
2536
|
+
return /* @__PURE__ */ q(
|
|
2537
|
+
Zl,
|
|
662
2538
|
{
|
|
663
|
-
icon:
|
|
664
|
-
size:
|
|
665
|
-
color:
|
|
666
|
-
className:
|
|
667
|
-
...
|
|
668
|
-
...
|
|
2539
|
+
icon: s,
|
|
2540
|
+
size: p.size,
|
|
2541
|
+
color: H.Icon[p.variant][p.color],
|
|
2542
|
+
className: ll("rounded-tl-0 rounded-bl-0 mr-1", g),
|
|
2543
|
+
...e,
|
|
2544
|
+
...h
|
|
669
2545
|
}
|
|
670
2546
|
);
|
|
671
|
-
},
|
|
672
|
-
color:
|
|
673
|
-
size:
|
|
674
|
-
variant:
|
|
675
|
-
icon:
|
|
676
|
-
onRemove:
|
|
677
|
-
onCopy:
|
|
678
|
-
textToCopy:
|
|
679
|
-
children:
|
|
680
|
-
...
|
|
681
|
-
}) => /* @__PURE__ */
|
|
682
|
-
|
|
683
|
-
/* @__PURE__ */
|
|
684
|
-
|
|
685
|
-
|
|
2547
|
+
}, Xl = ({
|
|
2548
|
+
color: s = "default",
|
|
2549
|
+
size: l = "1",
|
|
2550
|
+
variant: t = "soft",
|
|
2551
|
+
icon: g,
|
|
2552
|
+
onRemove: h,
|
|
2553
|
+
onCopy: p,
|
|
2554
|
+
textToCopy: e,
|
|
2555
|
+
children: z,
|
|
2556
|
+
...n
|
|
2557
|
+
}) => /* @__PURE__ */ Kl(Ul, { color: s, size: l, variant: t, ...n, children: [
|
|
2558
|
+
g && /* @__PURE__ */ q(Ql, { ...g }),
|
|
2559
|
+
/* @__PURE__ */ q(Vl, { as: "span", children: z }),
|
|
2560
|
+
h && /* @__PURE__ */ q(Gl, { onClick: h, icon: { icon: J.X, alt: "Remove" } }),
|
|
2561
|
+
p && /* @__PURE__ */ q(Hl, { onClick: p, textToCopy: e })
|
|
686
2562
|
] });
|
|
687
|
-
Object.assign(
|
|
688
|
-
Root:
|
|
689
|
-
Button:
|
|
690
|
-
Text:
|
|
691
|
-
Icon:
|
|
692
|
-
CopyButton:
|
|
2563
|
+
Object.assign(Xl, {
|
|
2564
|
+
Root: Ul,
|
|
2565
|
+
Button: Gl,
|
|
2566
|
+
Text: Vl,
|
|
2567
|
+
Icon: Ql,
|
|
2568
|
+
CopyButton: Hl
|
|
693
2569
|
});
|
|
694
|
-
const
|
|
2570
|
+
const _t = Xl;
|
|
695
2571
|
export {
|
|
696
|
-
|
|
2572
|
+
_t as Tag
|
|
697
2573
|
};
|
|
698
2574
|
//# sourceMappingURL=index.mjs.map
|