@e7w/easy-routes 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -19,8 +19,15 @@ declare abstract class Permission {
19
19
  abstract init(req: Ctx["req"]): Promise<void> | void;
20
20
  }
21
21
  declare const PermissionSchema: z.ZodType<Permission, Permission>;
22
+ type Menu = {
23
+ name: string;
24
+ icon?: string;
25
+ path: string;
26
+ children?: Menu[];
27
+ };
22
28
  //#endregion
23
29
  //#region src/router.d.ts
24
30
  declare const routes: RouteObject[];
31
+ declare const menu: Menu;
25
32
  //#endregion
26
- export { type Ctx, Permission, PermissionSchema, routes };
33
+ export { type Ctx, Permission, PermissionSchema, menu, routes };
package/dist/index.mjs CHANGED
@@ -456,11 +456,12 @@ filePaths.forEach((filePath) => {
456
456
  if (finished1 && finished2) break;
457
457
  }
458
458
  });
459
- obj["/"].errorElement = /* @__PURE__ */ jsx(ErrorBoundary, {});
460
459
  routes.push({
461
460
  path: "/",
462
461
  element: /* @__PURE__ */ jsx(ProgressLayout, {}),
463
- children: [obj["/"]]
462
+ children: [obj["/"]],
463
+ errorElement: /* @__PURE__ */ jsx(ErrorBoundary, {}),
464
+ hydrateFallbackElement: /* @__PURE__ */ jsx(Loading, {})
464
465
  });
465
466
  routes.push({
466
467
  path: "*",
@@ -469,6 +470,6 @@ routes.push({
469
470
  replace: true
470
471
  })
471
472
  });
472
- menuObj["/"];
473
+ const menu = menuObj["/"];
473
474
  //#endregion
474
- export { Permission, PermissionSchema, routes };
475
+ export { Permission, PermissionSchema, menu, routes };
package/dist/style.css CHANGED
@@ -1,838 +1,468 @@
1
+ /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
1
4
  @layer theme {
2
- @theme default {
3
- --font-sans:
4
- ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
5
7
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
6
- --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
7
- --font-mono:
8
- ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
-
11
- --color-red-50: oklch(97.1% .013 17.38);
12
- --color-red-100: oklch(93.6% .032 17.717);
13
- --color-red-200: oklch(88.5% .062 18.334);
14
- --color-red-300: oklch(80.8% .114 19.571);
15
- --color-red-400: oklch(70.4% .191 22.216);
16
- --color-red-500: oklch(63.7% .237 25.331);
17
- --color-red-600: oklch(57.7% .245 27.325);
18
- --color-red-700: oklch(50.5% .213 27.518);
19
- --color-red-800: oklch(44.4% .177 26.899);
20
- --color-red-900: oklch(39.6% .141 25.723);
21
- --color-red-950: oklch(25.8% .092 26.042);
22
-
23
- --color-orange-50: oklch(98% .016 73.684);
24
- --color-orange-100: oklch(95.4% .038 75.164);
25
- --color-orange-200: oklch(90.1% .076 70.697);
26
- --color-orange-300: oklch(83.7% .128 66.29);
27
- --color-orange-400: oklch(75% .183 55.934);
28
- --color-orange-500: oklch(70.5% .213 47.604);
29
- --color-orange-600: oklch(64.6% .222 41.116);
30
- --color-orange-700: oklch(55.3% .195 38.402);
31
- --color-orange-800: oklch(47% .157 37.304);
32
- --color-orange-900: oklch(40.8% .123 38.172);
33
- --color-orange-950: oklch(26.6% .079 36.259);
34
-
35
- --color-amber-50: oklch(98.7% .022 95.277);
36
- --color-amber-100: oklch(96.2% .059 95.617);
37
- --color-amber-200: oklch(92.4% .12 95.746);
38
- --color-amber-300: oklch(87.9% .169 91.605);
39
- --color-amber-400: oklch(82.8% .189 84.429);
40
- --color-amber-500: oklch(76.9% .188 70.08);
41
- --color-amber-600: oklch(66.6% .179 58.318);
42
- --color-amber-700: oklch(55.5% .163 48.998);
43
- --color-amber-800: oklch(47.3% .137 46.201);
44
- --color-amber-900: oklch(41.4% .112 45.904);
45
- --color-amber-950: oklch(27.9% .077 45.635);
46
-
47
- --color-yellow-50: oklch(98.7% .026 102.212);
48
- --color-yellow-100: oklch(97.3% .071 103.193);
49
- --color-yellow-200: oklch(94.5% .129 101.54);
50
- --color-yellow-300: oklch(90.5% .182 98.111);
51
- --color-yellow-400: oklch(85.2% .199 91.936);
52
- --color-yellow-500: oklch(79.5% .184 86.047);
53
- --color-yellow-600: oklch(68.1% .162 75.834);
54
- --color-yellow-700: oklch(55.4% .135 66.442);
55
- --color-yellow-800: oklch(47.6% .114 61.907);
56
- --color-yellow-900: oklch(42.1% .095 57.708);
57
- --color-yellow-950: oklch(28.6% .066 53.813);
58
-
59
- --color-lime-50: oklch(98.6% .031 120.757);
60
- --color-lime-100: oklch(96.7% .067 122.328);
61
- --color-lime-200: oklch(93.8% .127 124.321);
62
- --color-lime-300: oklch(89.7% .196 126.665);
63
- --color-lime-400: oklch(84.1% .238 128.85);
64
- --color-lime-500: oklch(76.8% .233 130.85);
65
- --color-lime-600: oklch(64.8% .2 131.684);
66
- --color-lime-700: oklch(53.2% .157 131.589);
67
- --color-lime-800: oklch(45.3% .124 130.933);
68
- --color-lime-900: oklch(40.5% .101 131.063);
69
- --color-lime-950: oklch(27.4% .072 132.109);
70
-
71
- --color-green-50: oklch(98.2% .018 155.826);
72
- --color-green-100: oklch(96.2% .044 156.743);
73
- --color-green-200: oklch(92.5% .084 155.995);
74
- --color-green-300: oklch(87.1% .15 154.449);
75
- --color-green-400: oklch(79.2% .209 151.711);
76
- --color-green-500: oklch(72.3% .219 149.579);
77
- --color-green-600: oklch(62.7% .194 149.214);
78
- --color-green-700: oklch(52.7% .154 150.069);
79
- --color-green-800: oklch(44.8% .119 151.328);
80
- --color-green-900: oklch(39.3% .095 152.535);
81
- --color-green-950: oklch(26.6% .065 152.934);
82
-
83
- --color-emerald-50: oklch(97.9% .021 166.113);
84
- --color-emerald-100: oklch(95% .052 163.051);
85
- --color-emerald-200: oklch(90.5% .093 164.15);
86
- --color-emerald-300: oklch(84.5% .143 164.978);
87
- --color-emerald-400: oklch(76.5% .177 163.223);
88
- --color-emerald-500: oklch(69.6% .17 162.48);
89
- --color-emerald-600: oklch(59.6% .145 163.225);
90
- --color-emerald-700: oklch(50.8% .118 165.612);
91
- --color-emerald-800: oklch(43.2% .095 166.913);
92
- --color-emerald-900: oklch(37.8% .077 168.94);
93
- --color-emerald-950: oklch(26.2% .051 172.552);
94
-
95
- --color-teal-50: oklch(98.4% .014 180.72);
96
- --color-teal-100: oklch(95.3% .051 180.801);
97
- --color-teal-200: oklch(91% .096 180.426);
98
- --color-teal-300: oklch(85.5% .138 181.071);
99
- --color-teal-400: oklch(77.7% .152 181.912);
100
- --color-teal-500: oklch(70.4% .14 182.503);
101
- --color-teal-600: oklch(60% .118 184.704);
102
- --color-teal-700: oklch(51.1% .096 186.391);
103
- --color-teal-800: oklch(43.7% .078 188.216);
104
- --color-teal-900: oklch(38.6% .063 188.416);
105
- --color-teal-950: oklch(27.7% .046 192.524);
106
-
107
- --color-cyan-50: oklch(98.4% .019 200.873);
108
- --color-cyan-100: oklch(95.6% .045 203.388);
109
- --color-cyan-200: oklch(91.7% .08 205.041);
110
- --color-cyan-300: oklch(86.5% .127 207.078);
111
- --color-cyan-400: oklch(78.9% .154 211.53);
112
- --color-cyan-500: oklch(71.5% .143 215.221);
113
- --color-cyan-600: oklch(60.9% .126 221.723);
114
- --color-cyan-700: oklch(52% .105 223.128);
115
- --color-cyan-800: oklch(45% .085 224.283);
116
- --color-cyan-900: oklch(39.8% .07 227.392);
117
- --color-cyan-950: oklch(30.2% .056 229.695);
118
-
119
- --color-sky-50: oklch(97.7% .013 236.62);
120
- --color-sky-100: oklch(95.1% .026 236.824);
121
- --color-sky-200: oklch(90.1% .058 230.902);
122
- --color-sky-300: oklch(82.8% .111 230.318);
123
- --color-sky-400: oklch(74.6% .16 232.661);
124
- --color-sky-500: oklch(68.5% .169 237.323);
125
- --color-sky-600: oklch(58.8% .158 241.966);
126
- --color-sky-700: oklch(50% .134 242.749);
127
- --color-sky-800: oklch(44.3% .11 240.79);
128
- --color-sky-900: oklch(39.1% .09 240.876);
129
- --color-sky-950: oklch(29.3% .066 243.157);
130
-
131
- --color-blue-50: oklch(97% .014 254.604);
132
- --color-blue-100: oklch(93.2% .032 255.585);
133
- --color-blue-200: oklch(88.2% .059 254.128);
134
- --color-blue-300: oklch(80.9% .105 251.813);
135
- --color-blue-400: oklch(70.7% .165 254.624);
136
- --color-blue-500: oklch(62.3% .214 259.815);
137
- --color-blue-600: oklch(54.6% .245 262.881);
138
- --color-blue-700: oklch(48.8% .243 264.376);
139
- --color-blue-800: oklch(42.4% .199 265.638);
140
- --color-blue-900: oklch(37.9% .146 265.522);
141
- --color-blue-950: oklch(28.2% .091 267.935);
142
-
143
- --color-indigo-50: oklch(96.2% .018 272.314);
144
- --color-indigo-100: oklch(93% .034 272.788);
145
- --color-indigo-200: oklch(87% .065 274.039);
146
- --color-indigo-300: oklch(78.5% .115 274.713);
147
- --color-indigo-400: oklch(67.3% .182 276.935);
148
- --color-indigo-500: oklch(58.5% .233 277.117);
149
- --color-indigo-600: oklch(51.1% .262 276.966);
150
- --color-indigo-700: oklch(45.7% .24 277.023);
151
- --color-indigo-800: oklch(39.8% .195 277.366);
152
- --color-indigo-900: oklch(35.9% .144 278.697);
153
- --color-indigo-950: oklch(25.7% .09 281.288);
154
-
155
- --color-violet-50: oklch(96.9% .016 293.756);
156
- --color-violet-100: oklch(94.3% .029 294.588);
157
- --color-violet-200: oklch(89.4% .057 293.283);
158
- --color-violet-300: oklch(81.1% .111 293.571);
159
- --color-violet-400: oklch(70.2% .183 293.541);
160
- --color-violet-500: oklch(60.6% .25 292.717);
161
- --color-violet-600: oklch(54.1% .281 293.009);
162
- --color-violet-700: oklch(49.1% .27 292.581);
163
- --color-violet-800: oklch(43.2% .232 292.759);
164
- --color-violet-900: oklch(38% .189 293.745);
165
- --color-violet-950: oklch(28.3% .141 291.089);
166
-
167
- --color-purple-50: oklch(97.7% .014 308.299);
168
- --color-purple-100: oklch(94.6% .033 307.174);
169
- --color-purple-200: oklch(90.2% .063 306.703);
170
- --color-purple-300: oklch(82.7% .119 306.383);
171
- --color-purple-400: oklch(71.4% .203 305.504);
172
- --color-purple-500: oklch(62.7% .265 303.9);
173
- --color-purple-600: oklch(55.8% .288 302.321);
174
- --color-purple-700: oklch(49.6% .265 301.924);
175
- --color-purple-800: oklch(43.8% .218 303.724);
176
- --color-purple-900: oklch(38.1% .176 304.987);
177
- --color-purple-950: oklch(29.1% .149 302.717);
178
-
179
- --color-fuchsia-50: oklch(97.7% .017 320.058);
180
- --color-fuchsia-100: oklch(95.2% .037 318.852);
181
- --color-fuchsia-200: oklch(90.3% .076 319.62);
182
- --color-fuchsia-300: oklch(83.3% .145 321.434);
183
- --color-fuchsia-400: oklch(74% .238 322.16);
184
- --color-fuchsia-500: oklch(66.7% .295 322.15);
185
- --color-fuchsia-600: oklch(59.1% .293 322.896);
186
- --color-fuchsia-700: oklch(51.8% .253 323.949);
187
- --color-fuchsia-800: oklch(45.2% .211 324.591);
188
- --color-fuchsia-900: oklch(40.1% .17 325.612);
189
- --color-fuchsia-950: oklch(29.3% .136 325.661);
190
-
191
- --color-pink-50: oklch(97.1% .014 343.198);
192
- --color-pink-100: oklch(94.8% .028 342.258);
193
- --color-pink-200: oklch(89.9% .061 343.231);
194
- --color-pink-300: oklch(82.3% .12 346.018);
195
- --color-pink-400: oklch(71.8% .202 349.761);
196
- --color-pink-500: oklch(65.6% .241 354.308);
197
- --color-pink-600: oklch(59.2% .249 .584);
198
- --color-pink-700: oklch(52.5% .223 3.958);
199
- --color-pink-800: oklch(45.9% .187 3.815);
200
- --color-pink-900: oklch(40.8% .153 2.432);
201
- --color-pink-950: oklch(28.4% .109 3.907);
202
-
203
- --color-rose-50: oklch(96.9% .015 12.422);
204
- --color-rose-100: oklch(94.1% .03 12.58);
205
- --color-rose-200: oklch(89.2% .058 10.001);
206
- --color-rose-300: oklch(81% .117 11.638);
207
- --color-rose-400: oklch(71.2% .194 13.428);
208
- --color-rose-500: oklch(64.5% .246 16.439);
209
- --color-rose-600: oklch(58.6% .253 17.585);
210
- --color-rose-700: oklch(51.4% .222 16.935);
211
- --color-rose-800: oklch(45.5% .188 13.697);
212
- --color-rose-900: oklch(41% .159 10.272);
213
- --color-rose-950: oklch(27.1% .105 12.094);
214
-
215
- --color-slate-50: oklch(98.4% .003 247.858);
216
- --color-slate-100: oklch(96.8% .007 247.896);
217
- --color-slate-200: oklch(92.9% .013 255.508);
218
- --color-slate-300: oklch(86.9% .022 252.894);
219
- --color-slate-400: oklch(70.4% .04 256.788);
220
- --color-slate-500: oklch(55.4% .046 257.417);
221
- --color-slate-600: oklch(44.6% .043 257.281);
222
- --color-slate-700: oklch(37.2% .044 257.287);
223
- --color-slate-800: oklch(27.9% .041 260.031);
224
- --color-slate-900: oklch(20.8% .042 265.755);
225
- --color-slate-950: oklch(12.9% .042 264.695);
226
-
227
- --color-gray-50: oklch(98.5% .002 247.839);
228
- --color-gray-100: oklch(96.7% .003 264.542);
229
- --color-gray-200: oklch(92.8% .006 264.531);
230
- --color-gray-300: oklch(87.2% .01 258.338);
231
- --color-gray-400: oklch(70.7% .022 261.325);
232
- --color-gray-500: oklch(55.1% .027 264.364);
233
- --color-gray-600: oklch(44.6% .03 256.802);
234
- --color-gray-700: oklch(37.3% .034 259.733);
235
- --color-gray-800: oklch(27.8% .033 256.848);
236
- --color-gray-900: oklch(21% .034 264.665);
237
- --color-gray-950: oklch(13% .028 261.692);
238
-
239
- --color-zinc-50: oklch(98.5% 0 0);
240
- --color-zinc-100: oklch(96.7% .001 286.375);
241
- --color-zinc-200: oklch(92% .004 286.32);
242
- --color-zinc-300: oklch(87.1% .006 286.286);
243
- --color-zinc-400: oklch(70.5% .015 286.067);
244
- --color-zinc-500: oklch(55.2% .016 285.938);
245
- --color-zinc-600: oklch(44.2% .017 285.786);
246
- --color-zinc-700: oklch(37% .013 285.805);
247
- --color-zinc-800: oklch(27.4% .006 286.033);
248
- --color-zinc-900: oklch(21% .006 285.885);
249
- --color-zinc-950: oklch(14.1% .005 285.823);
250
-
251
- --color-neutral-50: oklch(98.5% 0 0);
252
- --color-neutral-100: oklch(97% 0 0);
253
- --color-neutral-200: oklch(92.2% 0 0);
254
- --color-neutral-300: oklch(87% 0 0);
255
- --color-neutral-400: oklch(70.8% 0 0);
256
- --color-neutral-500: oklch(55.6% 0 0);
257
- --color-neutral-600: oklch(43.9% 0 0);
258
- --color-neutral-700: oklch(37.1% 0 0);
259
- --color-neutral-800: oklch(26.9% 0 0);
260
- --color-neutral-900: oklch(20.5% 0 0);
261
- --color-neutral-950: oklch(14.5% 0 0);
262
-
263
- --color-stone-50: oklch(98.5% .001 106.423);
264
- --color-stone-100: oklch(97% .001 106.424);
265
- --color-stone-200: oklch(92.3% .003 48.717);
266
- --color-stone-300: oklch(86.9% .005 56.366);
267
- --color-stone-400: oklch(70.9% .01 56.259);
268
- --color-stone-500: oklch(55.3% .013 58.071);
269
- --color-stone-600: oklch(44.4% .011 73.639);
270
- --color-stone-700: oklch(37.4% .01 67.558);
271
- --color-stone-800: oklch(26.8% .007 34.298);
272
- --color-stone-900: oklch(21.6% .006 56.043);
273
- --color-stone-950: oklch(14.7% .004 49.25);
274
-
275
- --color-mauve-50: oklch(98.5% 0 0);
276
- --color-mauve-100: oklch(96% .003 325.6);
277
- --color-mauve-200: oklch(92.2% .005 325.62);
278
- --color-mauve-300: oklch(86.5% .012 325.68);
279
- --color-mauve-400: oklch(71.1% .019 323.02);
280
- --color-mauve-500: oklch(54.2% .034 322.5);
281
- --color-mauve-600: oklch(43.5% .029 321.78);
282
- --color-mauve-700: oklch(36.4% .029 323.89);
283
- --color-mauve-800: oklch(26.3% .024 320.12);
284
- --color-mauve-900: oklch(21.2% .019 322.12);
285
- --color-mauve-950: oklch(14.5% .008 326);
286
-
287
- --color-olive-50: oklch(98.8% .003 106.5);
288
- --color-olive-100: oklch(96.6% .005 106.5);
289
- --color-olive-200: oklch(93% .007 106.5);
290
- --color-olive-300: oklch(88% .011 106.6);
291
- --color-olive-400: oklch(73.7% .021 106.9);
292
- --color-olive-500: oklch(58% .031 107.3);
293
- --color-olive-600: oklch(46.6% .025 107.3);
294
- --color-olive-700: oklch(39.4% .023 107.4);
295
- --color-olive-800: oklch(28.6% .016 107.4);
296
- --color-olive-900: oklch(22.8% .013 107.4);
297
- --color-olive-950: oklch(15.3% .006 107.1);
298
-
299
- --color-mist-50: oklch(98.7% .002 197.1);
300
- --color-mist-100: oklch(96.3% .002 197.1);
301
- --color-mist-200: oklch(92.5% .005 214.3);
302
- --color-mist-300: oklch(87.2% .007 219.6);
303
- --color-mist-400: oklch(72.3% .014 214.4);
304
- --color-mist-500: oklch(56% .021 213.5);
305
- --color-mist-600: oklch(45% .017 213.2);
306
- --color-mist-700: oklch(37.8% .015 216);
307
- --color-mist-800: oklch(27.5% .011 216.9);
308
- --color-mist-900: oklch(21.8% .008 223.9);
309
- --color-mist-950: oklch(14.8% .004 228.8);
310
-
311
- --color-taupe-50: oklch(98.6% .002 67.8);
312
- --color-taupe-100: oklch(96% .002 17.2);
313
- --color-taupe-200: oklch(92.2% .005 34.3);
314
- --color-taupe-300: oklch(86.8% .007 39.5);
315
- --color-taupe-400: oklch(71.4% .014 41.2);
316
- --color-taupe-500: oklch(54.7% .021 43.1);
317
- --color-taupe-600: oklch(43.8% .017 39.3);
318
- --color-taupe-700: oklch(36.7% .016 35.7);
319
- --color-taupe-800: oklch(26.8% .011 36.5);
320
- --color-taupe-900: oklch(21.4% .009 43.1);
321
- --color-taupe-950: oklch(14.7% .004 49.3);
322
-
10
+ --color-red-300: oklch(80.8% 0.114 19.571);
11
+ --color-orange-400: oklch(75% 0.183 55.934);
12
+ --color-green-400: oklch(79.2% 0.209 151.711);
13
+ --color-blue-400: oklch(70.7% 0.165 254.624);
323
14
  --color-black: #000;
324
15
  --color-white: #fff;
325
-
326
- --spacing: .25rem;
327
-
328
- --breakpoint-sm: 40rem;
329
- --breakpoint-md: 48rem;
330
- --breakpoint-lg: 64rem;
331
- --breakpoint-xl: 80rem;
332
- --breakpoint-2xl: 96rem;
333
-
334
- --container-3xs: 16rem;
335
- --container-2xs: 18rem;
336
- --container-xs: 20rem;
337
- --container-sm: 24rem;
338
- --container-md: 28rem;
339
- --container-lg: 32rem;
340
- --container-xl: 36rem;
341
- --container-2xl: 42rem;
342
- --container-3xl: 48rem;
343
- --container-4xl: 56rem;
344
- --container-5xl: 64rem;
345
- --container-6xl: 72rem;
346
- --container-7xl: 80rem;
347
-
348
- --text-xs: .75rem;
349
- --text-xs--line-height: calc(1 / .75);
350
- --text-sm: .875rem;
351
- --text-sm--line-height: calc(1.25 / .875);
352
- --text-base: 1rem;
353
- --text-base--line-height: calc(1.5 / 1);
354
- --text-lg: 1.125rem;
355
- --text-lg--line-height: calc(1.75 / 1.125);
356
- --text-xl: 1.25rem;
357
- --text-xl--line-height: calc(1.75 / 1.25);
16
+ --spacing: 0.25rem;
358
17
  --text-2xl: 1.5rem;
359
18
  --text-2xl--line-height: calc(2 / 1.5);
360
- --text-3xl: 1.875rem;
361
- --text-3xl--line-height: calc(2.25 / 1.875);
362
- --text-4xl: 2.25rem;
363
- --text-4xl--line-height: calc(2.5 / 2.25);
364
- --text-5xl: 3rem;
365
- --text-5xl--line-height: 1;
366
- --text-6xl: 3.75rem;
367
- --text-6xl--line-height: 1;
368
- --text-7xl: 4.5rem;
369
- --text-7xl--line-height: 1;
370
- --text-8xl: 6rem;
371
- --text-8xl--line-height: 1;
372
- --text-9xl: 8rem;
373
- --text-9xl--line-height: 1;
374
-
375
- --font-weight-thin: 100;
376
- --font-weight-extralight: 200;
377
- --font-weight-light: 300;
378
- --font-weight-normal: 400;
379
- --font-weight-medium: 500;
380
- --font-weight-semibold: 600;
381
19
  --font-weight-bold: 700;
382
- --font-weight-extrabold: 800;
383
- --font-weight-black: 900;
384
-
385
- --tracking-tighter: -.05em;
386
- --tracking-tight: -.025em;
387
- --tracking-normal: 0em;
388
- --tracking-wide: .025em;
389
- --tracking-wider: .05em;
390
- --tracking-widest: .1em;
391
-
392
- --leading-tight: 1.25;
393
- --leading-snug: 1.375;
394
- --leading-normal: 1.5;
395
- --leading-relaxed: 1.625;
396
- --leading-loose: 2;
397
-
398
- --radius-xs: .125rem;
399
- --radius-sm: .25rem;
400
- --radius-md: .375rem;
401
- --radius-lg: .5rem;
402
- --radius-xl: .75rem;
403
- --radius-2xl: 1rem;
404
- --radius-3xl: 1.5rem;
405
- --radius-4xl: 2rem;
406
-
407
- --shadow-2xs: 0 1px #0000000d;
408
- --shadow-xs: 0 1px 2px 0 #0000000d;
409
- --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
410
- --shadow-md:
411
- 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
412
- --shadow-lg:
413
- 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
414
- --shadow-xl:
415
- 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
416
- --shadow-2xl: 0 25px 50px -12px #00000040;
417
-
418
- --inset-shadow-2xs: inset 0 1px #0000000d;
419
- --inset-shadow-xs: inset 0 1px 1px #0000000d;
420
- --inset-shadow-sm: inset 0 2px 4px #0000000d;
421
-
422
- --drop-shadow-xs: 0 1px 1px #0000000d;
423
- --drop-shadow-sm: 0 1px 2px #00000026;
424
- --drop-shadow-md: 0 3px 3px #0000001f;
425
- --drop-shadow-lg: 0 4px 4px #00000026;
426
- --drop-shadow-xl: 0 9px 7px #0000001a;
427
- --drop-shadow-2xl: 0 25px 25px #00000026;
428
-
429
- --text-shadow-2xs: 0px 1px 0px #00000026;
430
- --text-shadow-xs: 0px 1px 1px #0003;
431
- --text-shadow-sm:
432
- 0px 1px 0px #00000013, 0px 1px 1px #00000013,
433
- 0px 2px 2px #00000013;
434
- --text-shadow-md:
435
- 0px 1px 1px #0000001a, 0px 1px 2px #0000001a,
436
- 0px 2px 4px #0000001a;
437
- --text-shadow-lg:
438
- 0px 1px 2px #0000001a, 0px 3px 2px #0000001a,
439
- 0px 4px 8px #0000001a;
440
-
441
- --ease-in: cubic-bezier(.4, 0, 1, 1);
442
- --ease-out: cubic-bezier(0, 0, .2, 1);
443
- --ease-in-out: cubic-bezier(.4, 0, .2, 1);
444
-
445
- --animate-spin: spin 1s linear infinite;
446
- --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
447
- --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
448
- --animate-bounce: bounce 1s infinite;
449
-
450
- @keyframes spin {
451
- to {
452
- transform: rotate(360deg);
453
- }
454
- }
455
-
456
- @keyframes ping {
457
- 75%,
458
- 100% {
459
- transform: scale(2);
460
- opacity: 0;
461
- }
462
- }
463
-
464
- @keyframes pulse {
465
- 50% {
466
- opacity: .5;
467
- }
468
- }
469
-
470
- @keyframes bounce {
471
- 0%,
472
- 100% {
473
- transform: translateY(-25%);
474
- animation-timing-function: cubic-bezier(.8, 0, 1, 1);
475
- }
476
-
477
- 50% {
478
- transform: none;
479
- animation-timing-function: cubic-bezier(0, 0, .2, 1);
480
- }
481
- }
482
-
483
- --blur-xs: 4px;
484
20
  --blur-sm: 8px;
485
- --blur-md: 12px;
486
- --blur-lg: 16px;
487
- --blur-xl: 24px;
488
- --blur-2xl: 40px;
489
- --blur-3xl: 64px;
490
-
491
- --perspective-dramatic: 100px;
492
- --perspective-near: 300px;
493
- --perspective-normal: 500px;
494
- --perspective-midrange: 800px;
495
- --perspective-distant: 1200px;
496
-
497
- --aspect-video: 16 / 9;
498
-
499
- --default-transition-duration: .15s;
500
- --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
501
- --default-font-family: --theme(--font-sans, initial);
502
- --default-font-feature-settings: --theme(--font-sans--font-feature-settings,
503
- initial);
504
- --default-font-variation-settings: --theme(--font-sans--font-variation-settings,
505
- initial);
506
- --default-mono-font-family: --theme(--font-mono, initial);
507
- --default-mono-font-feature-settings: --theme(--font-mono--font-feature-settings,
508
- initial);
509
- --default-mono-font-variation-settings: --theme(--font-mono--font-variation-settings,
510
- initial);
511
- }
512
-
513
- @theme default inline reference {
514
- --blur: 8px;
515
- --shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
516
- --shadow-inner: inset 0 2px 4px 0 #0000000d;
517
- --drop-shadow: 0 1px 2px #0000001a, 0 1px 1px #0000000f;
518
- --radius: .25rem;
519
- --max-width-prose: 65ch;
21
+ --default-font-family: var(--font-sans);
22
+ --default-mono-font-family: var(--font-mono);
520
23
  }
521
24
  }
522
-
523
25
  @layer base {
524
- *, :after, :before, ::backdrop, ::file-selector-button {
26
+ *,
27
+ ::after,
28
+ ::before,
29
+ ::backdrop,
30
+ ::file-selector-button {
525
31
  box-sizing: border-box;
526
- border: 0 solid;
527
32
  margin: 0;
528
33
  padding: 0;
34
+ border: 0 solid;
529
35
  }
530
-
531
- html, :host {
532
- -webkit-text-size-adjust: 100%;
533
- tab-size: 4;
36
+ html,
37
+ :host {
534
38
  line-height: 1.5;
535
- font-family: --theme(--default-font-family,
536
- ui-sans-serif,
537
- system-ui,
538
- sans-serif,
539
- "Apple Color Emoji",
540
- "Segoe UI Emoji",
541
- "Segoe UI Symbol",
542
- "Noto Color Emoji");
543
- font-feature-settings: --theme(--default-font-feature-settings,
544
- normal);
545
- font-variation-settings: --theme(--default-font-variation-settings,
546
- normal);
39
+ -webkit-text-size-adjust: 100%;
40
+ -moz-tab-size: 4;
41
+ -o-tab-size: 4;
42
+ tab-size: 4;
43
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
44
+ font-feature-settings: var(--default-font-feature-settings, normal);
45
+ font-variation-settings: var(--default-font-variation-settings, normal);
547
46
  -webkit-tap-highlight-color: transparent;
548
47
  }
549
-
550
48
  hr {
551
49
  height: 0;
552
50
  color: inherit;
553
51
  border-top-width: 1px;
554
52
  }
555
-
556
53
  abbr:where([title]) {
54
+ -webkit-text-decoration: underline dotted;
557
55
  text-decoration: underline dotted;
558
56
  }
559
-
560
- h1, h2, h3, h4, h5, h6 {
57
+ h1,
58
+ h2,
59
+ h3,
60
+ h4,
61
+ h5,
62
+ h6 {
561
63
  font-size: inherit;
562
64
  font-weight: inherit;
563
65
  }
564
-
565
66
  a {
566
67
  color: inherit;
567
68
  -webkit-text-decoration: inherit;
568
69
  text-decoration: inherit;
569
70
  }
570
-
571
- b, strong {
71
+ b,
72
+ strong {
572
73
  font-weight: bolder;
573
74
  }
574
-
575
- code, kbd, samp, pre {
576
- font-family: --theme(--default-mono-font-family,
577
- ui-monospace,
578
- SFMono-Regular,
579
- Menlo,
580
- Monaco,
581
- Consolas,
582
- "Liberation Mono",
583
- "Courier New",
584
- monospace);
585
- font-feature-settings: --theme(--default-mono-font-feature-settings,
586
- normal);
587
- font-variation-settings: --theme(--default-mono-font-variation-settings,
588
- normal);
75
+ code,
76
+ kbd,
77
+ samp,
78
+ pre {
79
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
80
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
81
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
589
82
  font-size: 1em;
590
83
  }
591
-
592
84
  small {
593
85
  font-size: 80%;
594
86
  }
595
-
596
- sub, sup {
597
- vertical-align: baseline;
87
+ sub,
88
+ sup {
598
89
  font-size: 75%;
599
90
  line-height: 0;
600
91
  position: relative;
92
+ vertical-align: baseline;
601
93
  }
602
-
603
94
  sub {
604
- bottom: -.25em;
95
+ bottom: -0.25em;
605
96
  }
606
-
607
97
  sup {
608
- top: -.5em;
98
+ top: -0.5em;
609
99
  }
610
-
611
100
  table {
612
101
  text-indent: 0;
613
102
  border-color: inherit;
614
103
  border-collapse: collapse;
615
104
  }
616
-
617
105
  :-moz-focusring {
618
106
  outline: auto;
619
107
  }
620
-
621
108
  progress {
622
109
  vertical-align: baseline;
623
110
  }
624
-
625
111
  summary {
626
112
  display: list-item;
627
113
  }
628
-
629
- ol, ul, menu {
114
+ ol,
115
+ ul,
116
+ menu {
630
117
  list-style: none;
631
118
  }
632
-
633
- img, svg, video, canvas, audio, iframe, embed, object {
634
- vertical-align: middle;
119
+ img,
120
+ svg,
121
+ video,
122
+ canvas,
123
+ audio,
124
+ iframe,
125
+ embed,
126
+ object {
635
127
  display: block;
128
+ vertical-align: middle;
636
129
  }
637
-
638
- img, video {
130
+ img,
131
+ video {
639
132
  max-width: 100%;
640
133
  height: auto;
641
134
  }
642
-
643
- button, input, select, optgroup, textarea, ::file-selector-button {
135
+ button,
136
+ input,
137
+ select,
138
+ optgroup,
139
+ textarea,
140
+ ::file-selector-button {
644
141
  font: inherit;
645
142
  font-feature-settings: inherit;
646
143
  font-variation-settings: inherit;
647
144
  letter-spacing: inherit;
648
145
  color: inherit;
649
- opacity: 1;
650
- background-color: #0000;
651
146
  border-radius: 0;
147
+ background-color: transparent;
148
+ opacity: 1;
652
149
  }
653
-
654
150
  :where(select:is([multiple], [size])) optgroup {
655
151
  font-weight: bolder;
656
152
  }
657
-
658
153
  :where(select:is([multiple], [size])) optgroup option {
659
154
  padding-inline-start: 20px;
660
155
  }
661
-
662
156
  ::file-selector-button {
663
157
  margin-inline-end: 4px;
664
158
  }
665
-
159
+ ::-moz-placeholder {
160
+ opacity: 1;
161
+ }
666
162
  ::placeholder {
667
163
  opacity: 1;
668
164
  }
669
-
670
- @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
165
+ @supports (not (-webkit-appearance: -apple-pay-button)) or
166
+ (contain-intrinsic-size: 1px) {
167
+ ::-moz-placeholder {
168
+ color: currentcolor;
169
+ @supports (color: color-mix(in lab, red, red)) {
170
+ color: color-mix(in oklab, currentcolor 50%, transparent);
171
+ }
172
+ }
671
173
  ::placeholder {
672
- color: color-mix(in oklab, currentcolor 50%, transparent);
174
+ color: currentcolor;
175
+ @supports (color: color-mix(in lab, red, red)) {
176
+ color: color-mix(in oklab, currentcolor 50%, transparent);
177
+ }
673
178
  }
674
179
  }
675
-
676
180
  textarea {
677
181
  resize: vertical;
678
182
  }
679
-
680
183
  ::-webkit-search-decoration {
681
184
  -webkit-appearance: none;
682
185
  }
683
-
684
186
  ::-webkit-date-and-time-value {
685
187
  min-height: 1lh;
686
188
  text-align: inherit;
687
189
  }
688
-
689
190
  ::-webkit-datetime-edit {
690
191
  display: inline-flex;
691
192
  }
692
-
693
193
  ::-webkit-datetime-edit-fields-wrapper {
694
194
  padding: 0;
695
195
  }
696
-
697
- ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
196
+ ::-webkit-datetime-edit,
197
+ ::-webkit-datetime-edit-year-field,
198
+ ::-webkit-datetime-edit-month-field,
199
+ ::-webkit-datetime-edit-day-field,
200
+ ::-webkit-datetime-edit-hour-field,
201
+ ::-webkit-datetime-edit-minute-field,
202
+ ::-webkit-datetime-edit-second-field,
203
+ ::-webkit-datetime-edit-millisecond-field,
204
+ ::-webkit-datetime-edit-meridiem-field {
698
205
  padding-block: 0;
699
206
  }
700
-
701
207
  ::-webkit-calendar-picker-indicator {
702
208
  line-height: 1;
703
209
  }
704
-
705
210
  :-moz-ui-invalid {
706
211
  box-shadow: none;
707
212
  }
708
-
709
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
710
- appearance: button;
213
+ button,
214
+ input:where([type="button"], [type="reset"], [type="submit"]),
215
+ ::file-selector-button {
216
+ -webkit-appearance: button;
217
+ -moz-appearance: button;
218
+ appearance: button;
711
219
  }
712
-
713
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
220
+ ::-webkit-inner-spin-button,
221
+ ::-webkit-outer-spin-button {
714
222
  height: auto;
715
223
  }
716
-
717
224
  [hidden]:where(:not([hidden="until-found"])) {
718
225
  display: none !important;
719
226
  }
720
227
  }
721
-
722
- @layer components;
723
-
724
228
  @layer utilities {
725
- @tailwind utilities;
229
+ .visible {
230
+ visibility: visible;
231
+ }
232
+ .mb-4 {
233
+ margin-bottom: calc(var(--spacing) * 4);
234
+ }
235
+ .flex {
236
+ display: flex;
237
+ }
238
+ .h-screen {
239
+ height: 100vh;
240
+ }
241
+ .w-full {
242
+ width: 100%;
243
+ }
244
+ .flex-col {
245
+ flex-direction: column;
246
+ }
247
+ .items-center {
248
+ align-items: center;
249
+ }
250
+ .justify-center {
251
+ justify-content: center;
252
+ }
253
+ .text-2xl {
254
+ font-size: var(--text-2xl);
255
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
256
+ }
257
+ .font-bold {
258
+ --tw-font-weight: var(--font-weight-bold);
259
+ font-weight: var(--font-weight-bold);
260
+ }
261
+ .text-red-300 {
262
+ color: var(--color-red-300);
263
+ }
726
264
  }
727
-
728
265
  @keyframes spin {
729
266
  from {
730
267
  transform: rotate(0);
731
268
  }
732
-
733
269
  to {
734
270
  transform: rotate(359deg);
735
271
  }
736
272
  }
737
-
738
273
  @keyframes spin3D {
739
274
  from {
740
- transform: rotate3d(.5, .5, .5, 360deg);
275
+ transform: rotate3d(0.5, 0.5, 0.5, 360deg);
741
276
  }
742
-
743
277
  to {
744
278
  transform: rotate3d(0deg);
745
279
  }
746
280
  }
747
-
748
281
  @keyframes configure-clockwise {
749
282
  0% {
750
283
  transform: rotate(0);
751
284
  }
752
-
753
285
  25% {
754
286
  transform: rotate(90deg);
755
287
  }
756
-
757
288
  50% {
758
289
  transform: rotate(180deg);
759
290
  }
760
-
761
291
  75% {
762
292
  transform: rotate(270deg);
763
293
  }
764
-
765
294
  100% {
766
295
  transform: rotate(360deg);
767
296
  }
768
297
  }
769
-
770
298
  @keyframes configure-xclockwise {
771
299
  0% {
772
300
  transform: rotate(45deg);
773
301
  }
774
-
775
302
  25% {
776
303
  transform: rotate(-45deg);
777
304
  }
778
-
779
305
  50% {
780
306
  transform: rotate(-135deg);
781
307
  }
782
-
783
308
  75% {
784
309
  transform: rotate(-225deg);
785
310
  }
786
-
787
311
  100% {
788
312
  transform: rotate(-315deg);
789
313
  }
790
314
  }
791
-
792
315
  @keyframes pulse {
793
316
  from {
794
317
  opacity: 1;
795
318
  transform: scale(1);
796
319
  }
797
-
798
320
  to {
799
- opacity: .25;
800
- transform: scale(.75);
321
+ opacity: 0.25;
322
+ transform: scale(0.75);
801
323
  }
802
324
  }
803
-
804
325
  .spinner-box {
805
- @apply top-0 left-0 w-full h-full flex justify-center items-center bg-black/30 fixed z-9999 backdrop-blur-sm;
326
+ position: fixed;
327
+ top: calc(var(--spacing) * 0);
328
+ left: calc(var(--spacing) * 0);
329
+ z-index: 9999;
330
+ display: flex;
331
+ height: 100%;
332
+ width: 100%;
333
+ align-items: center;
334
+ justify-content: center;
335
+ background-color: color-mix(in srgb, #000 30%, transparent);
336
+ @supports (color: color-mix(in lab, red, red)) {
337
+ background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
338
+ }
339
+ --tw-backdrop-blur: blur(var(--blur-sm));
340
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
806
341
  }
807
-
808
342
  .leo {
809
- @apply absolute flex justify-center items-center rounded-full;
343
+ position: absolute;
344
+ display: flex;
345
+ align-items: center;
346
+ justify-content: center;
347
+ border-radius: calc(infinity * 1px);
810
348
  }
811
-
812
349
  .blue-orbit {
813
- @apply w-41.25 h-41.25 border-4 border-blue-400/70 border-solid animate-[spin3D_3s_linear_0.2s_infinite];
350
+ height: calc(var(--spacing) * 41.25);
351
+ width: calc(var(--spacing) * 41.25);
352
+ animation: spin3D 3s linear 0.2s infinite;
353
+ border-style: var(--tw-border-style);
354
+ border-width: 4px;
355
+ --tw-border-style: solid;
356
+ border-style: solid;
357
+ border-color: color-mix(in srgb, oklch(70.7% 0.165 254.624) 70%, transparent);
358
+ @supports (color: color-mix(in lab, red, red)) {
359
+ border-color: color-mix(in oklab, var(--color-blue-400) 70%, transparent);
360
+ }
814
361
  }
815
-
816
362
  .green-orbit {
817
- @apply w-30 h-30 border-3 border-solid border-green-400/70 animate-[spin3D_2s_linear_0s_infinite_alternate];
363
+ height: calc(var(--spacing) * 30);
364
+ width: calc(var(--spacing) * 30);
365
+ animation: spin3D 2s linear 0s infinite alternate;
366
+ border-style: var(--tw-border-style);
367
+ border-width: 3px;
368
+ --tw-border-style: solid;
369
+ border-style: solid;
370
+ border-color: color-mix(in srgb, oklch(79.2% 0.209 151.711) 70%, transparent);
371
+ @supports (color: color-mix(in lab, red, red)) {
372
+ border-color: color-mix(in oklab, var(--color-green-400) 70%, transparent);
373
+ }
818
374
  }
819
-
820
375
  .red-orbit {
821
- @apply w-22.5 h-7.5 border-2 border-solid border-orange-400/70 animate-[spin3D_1s_linear_0s_infinite_alternate];
376
+ height: calc(var(--spacing) * 7.5);
377
+ width: calc(var(--spacing) * 22.5);
378
+ animation: spin3D 1s linear 0s infinite alternate;
379
+ border-style: var(--tw-border-style);
380
+ border-width: 2px;
381
+ --tw-border-style: solid;
382
+ border-style: solid;
383
+ border-color: color-mix(in srgb, oklch(75% 0.183 55.934) 70%, transparent);
384
+ @supports (color: color-mix(in lab, red, red)) {
385
+ border-color: color-mix(in oklab, var(--color-orange-400) 70%, transparent);
386
+ }
822
387
  }
823
-
824
388
  .white-orbit {
825
- @apply w-15 h-15 border-2 border-solid border-white animate-[spin3D_10s_linear_0s_infinite_alternate];
389
+ height: calc(var(--spacing) * 15);
390
+ width: calc(var(--spacing) * 15);
391
+ animation: spin3D 10s linear 0s infinite alternate;
392
+ border-style: var(--tw-border-style);
393
+ border-width: 2px;
394
+ --tw-border-style: solid;
395
+ border-style: solid;
396
+ border-color: var(--color-white);
826
397
  }
827
-
828
398
  .w1 {
829
- transform: rotate3d(1, 1, 1, 90deg);
399
+ transform: rotate3D(1, 1, 1, 90deg);
830
400
  }
831
-
832
401
  .w2 {
833
- transform: rotate3d(1, 2, .5, 90deg);
402
+ transform: rotate3D(1, 2, 0.5, 90deg);
834
403
  }
835
-
836
404
  .w3 {
837
- transform: rotate3d(.5, 1, 2, 90deg);
405
+ transform: rotate3D(0.5, 1, 2, 90deg);
406
+ }
407
+ @property --tw-font-weight {
408
+ syntax: "*";
409
+ inherits: false;
410
+ }
411
+ @property --tw-backdrop-blur {
412
+ syntax: "*";
413
+ inherits: false;
414
+ }
415
+ @property --tw-backdrop-brightness {
416
+ syntax: "*";
417
+ inherits: false;
418
+ }
419
+ @property --tw-backdrop-contrast {
420
+ syntax: "*";
421
+ inherits: false;
422
+ }
423
+ @property --tw-backdrop-grayscale {
424
+ syntax: "*";
425
+ inherits: false;
426
+ }
427
+ @property --tw-backdrop-hue-rotate {
428
+ syntax: "*";
429
+ inherits: false;
430
+ }
431
+ @property --tw-backdrop-invert {
432
+ syntax: "*";
433
+ inherits: false;
434
+ }
435
+ @property --tw-backdrop-opacity {
436
+ syntax: "*";
437
+ inherits: false;
438
+ }
439
+ @property --tw-backdrop-saturate {
440
+ syntax: "*";
441
+ inherits: false;
442
+ }
443
+ @property --tw-backdrop-sepia {
444
+ syntax: "*";
445
+ inherits: false;
446
+ }
447
+ @property --tw-border-style {
448
+ syntax: "*";
449
+ inherits: false;
450
+ initial-value: solid;
451
+ }
452
+ @layer properties {
453
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
454
+ *, ::before, ::after, ::backdrop {
455
+ --tw-font-weight: initial;
456
+ --tw-backdrop-blur: initial;
457
+ --tw-backdrop-brightness: initial;
458
+ --tw-backdrop-contrast: initial;
459
+ --tw-backdrop-grayscale: initial;
460
+ --tw-backdrop-hue-rotate: initial;
461
+ --tw-backdrop-invert: initial;
462
+ --tw-backdrop-opacity: initial;
463
+ --tw-backdrop-saturate: initial;
464
+ --tw-backdrop-sepia: initial;
465
+ --tw-border-style: solid;
466
+ }
467
+ }
838
468
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e7w/easy-routes",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,6 +31,7 @@
31
31
  "@bosh-code/tsdown-plugin-tailwindcss": "^1.0.1",
32
32
  "@eslint/js": "^9.39.1",
33
33
  "@rolldown/plugin-babel": "^0.2.2",
34
+ "@tailwindcss/postcss": "^4.2.2",
34
35
  "@tailwindcss/vite": "^4.2.2",
35
36
  "@tsdown/css": "^0.21.5",
36
37
  "@types/node": "^24.10.1",
@@ -39,11 +40,14 @@
39
40
  "@types/react-dom": "^19.2.3",
40
41
  "@typescript/native-preview": "7.0.0-dev.20260326.1",
41
42
  "@vitejs/plugin-react": "^6.0.1",
43
+ "autoprefixer": "^10.4.27",
42
44
  "babel-plugin-react-compiler": "^1.0.0",
43
45
  "copyfiles": "^2.4.1",
44
46
  "eslint-plugin-react-hooks": "^7.0.1",
45
47
  "eslint-plugin-react-refresh": "^0.4.24",
46
48
  "globals": "^16.5.0",
49
+ "postcss": "^8.5.8",
50
+ "postcss-import": "^16.1.1",
47
51
  "tailwindcss": "^4.2.1",
48
52
  "typescript": "~5.9.3",
49
53
  "typescript-eslint": "^8.48.0",