@alkimi.org/ui-kit 0.1.8 → 0.1.10

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.
Files changed (50) hide show
  1. package/README.github.md +63 -11
  2. package/README.md +2 -33
  3. package/README.npm.md +2 -33
  4. package/dist/components/GlitchLink.d.mts +12 -0
  5. package/dist/components/GlitchLink.d.ts +12 -0
  6. package/dist/components/GlitchLink.js +74 -0
  7. package/dist/components/GlitchLink.js.map +1 -0
  8. package/dist/components/GlitchLink.mjs +44 -0
  9. package/dist/components/GlitchLink.mjs.map +1 -0
  10. package/dist/components/PixelLoad.d.mts +20 -0
  11. package/dist/components/PixelLoad.d.ts +20 -0
  12. package/dist/components/PixelLoad.js +182 -0
  13. package/dist/components/PixelLoad.js.map +1 -0
  14. package/dist/components/PixelLoad.mjs +148 -0
  15. package/dist/components/PixelLoad.mjs.map +1 -0
  16. package/dist/components/TextDecoder.d.mts +15 -0
  17. package/dist/components/TextDecoder.d.ts +15 -0
  18. package/dist/components/TextDecoder.js +293 -0
  19. package/dist/components/TextDecoder.js.map +1 -0
  20. package/dist/components/TextDecoder.mjs +265 -0
  21. package/dist/components/TextDecoder.mjs.map +1 -0
  22. package/dist/components/button.d.mts +16 -0
  23. package/dist/components/button.d.ts +16 -0
  24. package/dist/components/button.js +109 -0
  25. package/dist/components/button.js.map +1 -0
  26. package/dist/components/button.mjs +74 -0
  27. package/dist/components/button.mjs.map +1 -0
  28. package/dist/components/card.d.mts +10 -0
  29. package/dist/components/card.d.ts +10 -0
  30. package/dist/components/card.js +115 -0
  31. package/dist/components/card.js.map +1 -0
  32. package/dist/components/card.mjs +76 -0
  33. package/dist/components/card.mjs.map +1 -0
  34. package/dist/index.css +250 -11
  35. package/dist/index.css.map +1 -1
  36. package/dist/index.d.mts +16 -21
  37. package/dist/index.d.ts +16 -21
  38. package/dist/index.js +467 -52
  39. package/dist/index.js.map +1 -1
  40. package/dist/index.mjs +467 -47
  41. package/dist/index.mjs.map +1 -1
  42. package/dist/lib/utils.d.mts +5 -0
  43. package/dist/lib/utils.d.ts +5 -0
  44. package/dist/lib/utils.js +36 -0
  45. package/dist/lib/utils.js.map +1 -0
  46. package/dist/lib/utils.mjs +12 -0
  47. package/dist/lib/utils.mjs.map +1 -0
  48. package/dist/styles.css +250 -11
  49. package/dist/styles.css.map +1 -1
  50. package/package.json +48 -12
@@ -0,0 +1,115 @@
1
+ "use client"
2
+ "use strict";
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf;
8
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __export = (target, all) => {
10
+ for (var name in all)
11
+ __defProp(target, name, { get: all[name], enumerable: true });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from))
16
+ if (!__hasOwnProp.call(to, key) && key !== except)
17
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
18
+ }
19
+ return to;
20
+ };
21
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
22
+ // If the importer is in node compatibility mode or this is not an ESM
23
+ // file that has been converted to a CommonJS file using a Babel-
24
+ // compatible transform (i.e. "__esModule" has not been set), then set
25
+ // "default" to the CommonJS "module.exports" for node compatibility.
26
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
27
+ mod
28
+ ));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+
31
+ // src/components/card.tsx
32
+ var card_exports = {};
33
+ __export(card_exports, {
34
+ Card: () => Card,
35
+ CardContent: () => CardContent,
36
+ CardDescription: () => CardDescription,
37
+ CardFooter: () => CardFooter,
38
+ CardHeader: () => CardHeader,
39
+ CardTitle: () => CardTitle
40
+ });
41
+ module.exports = __toCommonJS(card_exports);
42
+ var React = __toESM(require("react"));
43
+
44
+ // src/lib/utils.ts
45
+ var import_clsx = require("clsx");
46
+ var import_tailwind_merge = require("tailwind-merge");
47
+ function cn(...inputs) {
48
+ return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(inputs));
49
+ }
50
+
51
+ // src/components/card.tsx
52
+ var import_jsx_runtime = require("react/jsx-runtime");
53
+ var Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
54
+ "div",
55
+ {
56
+ ref,
57
+ className: cn(
58
+ "rounded-lg border bg-card text-card-foreground shadow-sm",
59
+ className
60
+ ),
61
+ ...props
62
+ }
63
+ ));
64
+ Card.displayName = "Card";
65
+ var CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
66
+ "div",
67
+ {
68
+ ref,
69
+ className: cn("flex flex-col space-y-1.5 p-6", className),
70
+ ...props
71
+ }
72
+ ));
73
+ CardHeader.displayName = "CardHeader";
74
+ var CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
75
+ "h3",
76
+ {
77
+ ref,
78
+ className: cn(
79
+ "text-2xl font-semibold leading-none tracking-tight",
80
+ className
81
+ ),
82
+ ...props
83
+ }
84
+ ));
85
+ CardTitle.displayName = "CardTitle";
86
+ var CardDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
87
+ "p",
88
+ {
89
+ ref,
90
+ className: cn("text-sm text-muted-foreground", className),
91
+ ...props
92
+ }
93
+ ));
94
+ CardDescription.displayName = "CardDescription";
95
+ var CardContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ref, className: cn("p-6 pt-0", className), ...props }));
96
+ CardContent.displayName = "CardContent";
97
+ var CardFooter = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
98
+ "div",
99
+ {
100
+ ref,
101
+ className: cn("flex items-center p-6 pt-0", className),
102
+ ...props
103
+ }
104
+ ));
105
+ CardFooter.displayName = "CardFooter";
106
+ // Annotate the CommonJS export names for ESM import in node:
107
+ 0 && (module.exports = {
108
+ Card,
109
+ CardContent,
110
+ CardDescription,
111
+ CardFooter,
112
+ CardHeader,
113
+ CardTitle
114
+ });
115
+ //# sourceMappingURL=card.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/card.tsx","../../src/lib/utils.ts"],"sourcesContent":["import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst Card = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\n \"rounded-lg border bg-card text-card-foreground shadow-sm\",\n className\n )}\n {...props}\n />\n))\nCard.displayName = \"Card\"\n\nconst CardHeader = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\"flex flex-col space-y-1.5 p-6\", className)}\n {...props}\n />\n))\nCardHeader.displayName = \"CardHeader\"\n\nconst CardTitle = React.forwardRef<\n HTMLParagraphElement,\n React.HTMLAttributes<HTMLHeadingElement>\n>(({ className, ...props }, ref) => (\n <h3\n ref={ref}\n className={cn(\n \"text-2xl font-semibold leading-none tracking-tight\",\n className\n )}\n {...props}\n />\n))\nCardTitle.displayName = \"CardTitle\"\n\nconst CardDescription = React.forwardRef<\n HTMLParagraphElement,\n React.HTMLAttributes<HTMLParagraphElement>\n>(({ className, ...props }, ref) => (\n <p\n ref={ref}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n))\nCardDescription.displayName = \"CardDescription\"\n\nconst CardContent = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div ref={ref} className={cn(\"p-6 pt-0\", className)} {...props} />\n))\nCardContent.displayName = \"CardContent\"\n\nconst CardFooter = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\"flex items-center p-6 pt-0\", className)}\n {...props}\n />\n))\nCardFooter.displayName = \"CardFooter\"\n\nexport { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,YAAuB;;;ACAvB,kBAAsC;AACtC,4BAAwB;AAEjB,SAAS,MAAM,QAAsB;AAC1C,aAAO,mCAAQ,kBAAK,MAAM,CAAC;AAC7B;;;ADGE;AAJF,IAAM,OAAa,iBAGjB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW;AAAA,MACT;AAAA,MACA;AAAA,IACF;AAAA,IACC,GAAG;AAAA;AACN,CACD;AACD,KAAK,cAAc;AAEnB,IAAM,aAAmB,iBAGvB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,iCAAiC,SAAS;AAAA,IACvD,GAAG;AAAA;AACN,CACD;AACD,WAAW,cAAc;AAEzB,IAAM,YAAkB,iBAGtB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW;AAAA,MACT;AAAA,MACA;AAAA,IACF;AAAA,IACC,GAAG;AAAA;AACN,CACD;AACD,UAAU,cAAc;AAExB,IAAM,kBAAwB,iBAG5B,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,iCAAiC,SAAS;AAAA,IACvD,GAAG;AAAA;AACN,CACD;AACD,gBAAgB,cAAc;AAE9B,IAAM,cAAoB,iBAGxB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B,4CAAC,SAAI,KAAU,WAAW,GAAG,YAAY,SAAS,GAAI,GAAG,OAAO,CACjE;AACD,YAAY,cAAc;AAE1B,IAAM,aAAmB,iBAGvB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,8BAA8B,SAAS;AAAA,IACpD,GAAG;AAAA;AACN,CACD;AACD,WAAW,cAAc;","names":[]}
@@ -0,0 +1,76 @@
1
+ "use client"
2
+
3
+ // src/components/card.tsx
4
+ import * as React from "react";
5
+
6
+ // src/lib/utils.ts
7
+ import { clsx } from "clsx";
8
+ import { twMerge } from "tailwind-merge";
9
+ function cn(...inputs) {
10
+ return twMerge(clsx(inputs));
11
+ }
12
+
13
+ // src/components/card.tsx
14
+ import { jsx } from "react/jsx-runtime";
15
+ var Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
16
+ "div",
17
+ {
18
+ ref,
19
+ className: cn(
20
+ "rounded-lg border bg-card text-card-foreground shadow-sm",
21
+ className
22
+ ),
23
+ ...props
24
+ }
25
+ ));
26
+ Card.displayName = "Card";
27
+ var CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
28
+ "div",
29
+ {
30
+ ref,
31
+ className: cn("flex flex-col space-y-1.5 p-6", className),
32
+ ...props
33
+ }
34
+ ));
35
+ CardHeader.displayName = "CardHeader";
36
+ var CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
37
+ "h3",
38
+ {
39
+ ref,
40
+ className: cn(
41
+ "text-2xl font-semibold leading-none tracking-tight",
42
+ className
43
+ ),
44
+ ...props
45
+ }
46
+ ));
47
+ CardTitle.displayName = "CardTitle";
48
+ var CardDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
49
+ "p",
50
+ {
51
+ ref,
52
+ className: cn("text-sm text-muted-foreground", className),
53
+ ...props
54
+ }
55
+ ));
56
+ CardDescription.displayName = "CardDescription";
57
+ var CardContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
58
+ CardContent.displayName = "CardContent";
59
+ var CardFooter = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
60
+ "div",
61
+ {
62
+ ref,
63
+ className: cn("flex items-center p-6 pt-0", className),
64
+ ...props
65
+ }
66
+ ));
67
+ CardFooter.displayName = "CardFooter";
68
+ export {
69
+ Card,
70
+ CardContent,
71
+ CardDescription,
72
+ CardFooter,
73
+ CardHeader,
74
+ CardTitle
75
+ };
76
+ //# sourceMappingURL=card.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/card.tsx","../../src/lib/utils.ts"],"sourcesContent":["import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst Card = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\n \"rounded-lg border bg-card text-card-foreground shadow-sm\",\n className\n )}\n {...props}\n />\n))\nCard.displayName = \"Card\"\n\nconst CardHeader = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\"flex flex-col space-y-1.5 p-6\", className)}\n {...props}\n />\n))\nCardHeader.displayName = \"CardHeader\"\n\nconst CardTitle = React.forwardRef<\n HTMLParagraphElement,\n React.HTMLAttributes<HTMLHeadingElement>\n>(({ className, ...props }, ref) => (\n <h3\n ref={ref}\n className={cn(\n \"text-2xl font-semibold leading-none tracking-tight\",\n className\n )}\n {...props}\n />\n))\nCardTitle.displayName = \"CardTitle\"\n\nconst CardDescription = React.forwardRef<\n HTMLParagraphElement,\n React.HTMLAttributes<HTMLParagraphElement>\n>(({ className, ...props }, ref) => (\n <p\n ref={ref}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n))\nCardDescription.displayName = \"CardDescription\"\n\nconst CardContent = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div ref={ref} className={cn(\"p-6 pt-0\", className)} {...props} />\n))\nCardContent.displayName = \"CardContent\"\n\nconst CardFooter = React.forwardRef<\n HTMLDivElement,\n React.HTMLAttributes<HTMLDivElement>\n>(({ className, ...props }, ref) => (\n <div\n ref={ref}\n className={cn(\"flex items-center p-6 pt-0\", className)}\n {...props}\n />\n))\nCardFooter.displayName = \"CardFooter\"\n\nexport { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }\n","import { type ClassValue, clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n"],"mappings":";;;AAAA,YAAY,WAAW;;;ACAvB,SAA0B,YAAY;AACtC,SAAS,eAAe;AAEjB,SAAS,MAAM,QAAsB;AAC1C,SAAO,QAAQ,KAAK,MAAM,CAAC;AAC7B;;;ADGE;AAJF,IAAM,OAAa,iBAGjB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW;AAAA,MACT;AAAA,MACA;AAAA,IACF;AAAA,IACC,GAAG;AAAA;AACN,CACD;AACD,KAAK,cAAc;AAEnB,IAAM,aAAmB,iBAGvB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,iCAAiC,SAAS;AAAA,IACvD,GAAG;AAAA;AACN,CACD;AACD,WAAW,cAAc;AAEzB,IAAM,YAAkB,iBAGtB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW;AAAA,MACT;AAAA,MACA;AAAA,IACF;AAAA,IACC,GAAG;AAAA;AACN,CACD;AACD,UAAU,cAAc;AAExB,IAAM,kBAAwB,iBAG5B,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,iCAAiC,SAAS;AAAA,IACvD,GAAG;AAAA;AACN,CACD;AACD,gBAAgB,cAAc;AAE9B,IAAM,cAAoB,iBAGxB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B,oBAAC,SAAI,KAAU,WAAW,GAAG,YAAY,SAAS,GAAI,GAAG,OAAO,CACjE;AACD,YAAY,cAAc;AAE1B,IAAM,aAAmB,iBAGvB,CAAC,EAAE,WAAW,GAAG,MAAM,GAAG,QAC1B;AAAA,EAAC;AAAA;AAAA,IACC;AAAA,IACA,WAAW,GAAG,8BAA8B,SAAS;AAAA,IACpD,GAAG;AAAA;AACN,CACD;AACD,WAAW,cAAc;","names":[]}
package/dist/index.css CHANGED
@@ -361,6 +361,52 @@ body {
361
361
  background-color: hsl(var(--background));
362
362
  color: hsl(var(--foreground));
363
363
  }
364
+ .\!container {
365
+ width: 100% !important;
366
+ margin-right: auto !important;
367
+ margin-left: auto !important;
368
+ padding-right: 2rem !important;
369
+ padding-left: 2rem !important;
370
+ }
371
+ .container {
372
+ width: 100%;
373
+ margin-right: auto;
374
+ margin-left: auto;
375
+ padding-right: 2rem;
376
+ padding-left: 2rem;
377
+ }
378
+ @media (min-width: 1400px) {
379
+ .\!container {
380
+ max-width: 1400px !important;
381
+ }
382
+ .container {
383
+ max-width: 1400px;
384
+ }
385
+ }
386
+ .visible {
387
+ visibility: visible;
388
+ }
389
+ .absolute {
390
+ position: absolute;
391
+ }
392
+ .relative {
393
+ position: relative;
394
+ }
395
+ .left-0 {
396
+ left: 0px;
397
+ }
398
+ .top-0 {
399
+ top: 0px;
400
+ }
401
+ .z-\[1\] {
402
+ z-index: 1;
403
+ }
404
+ .mr-2 {
405
+ margin-right: 0.5rem;
406
+ }
407
+ .mt-2 {
408
+ margin-top: 0.5rem;
409
+ }
364
410
  .flex {
365
411
  display: flex;
366
412
  }
@@ -370,44 +416,117 @@ body {
370
416
  .h-10 {
371
417
  height: 2.5rem;
372
418
  }
373
- .h-11 {
374
- height: 2.75rem;
419
+ .h-4 {
420
+ height: 1rem;
421
+ }
422
+ .h-8 {
423
+ height: 2rem;
375
424
  }
376
425
  .h-9 {
377
426
  height: 2.25rem;
378
427
  }
379
- .w-10 {
380
- width: 2.5rem;
428
+ .h-\[150px\] {
429
+ height: 150px;
430
+ }
431
+ .h-\[300px\] {
432
+ height: 300px;
433
+ }
434
+ .h-\[400px\] {
435
+ height: 400px;
436
+ }
437
+ .h-full {
438
+ height: 100%;
439
+ }
440
+ .w-4 {
441
+ width: 1rem;
442
+ }
443
+ .w-9 {
444
+ width: 2.25rem;
445
+ }
446
+ .w-\[200px\] {
447
+ width: 200px;
448
+ }
449
+ .w-\[300px\] {
450
+ width: 300px;
451
+ }
452
+ .w-\[350px\] {
453
+ width: 350px;
454
+ }
455
+ .w-\[400px\] {
456
+ width: 400px;
457
+ }
458
+ .w-full {
459
+ width: 100%;
460
+ }
461
+ .max-w-md {
462
+ max-width: 28rem;
463
+ }
464
+ @keyframes spin {
465
+ to {
466
+ transform: rotate(360deg);
467
+ }
468
+ }
469
+ .animate-spin {
470
+ animation: spin 1s linear infinite;
381
471
  }
382
472
  .flex-col {
383
473
  flex-direction: column;
384
474
  }
475
+ .flex-wrap {
476
+ flex-wrap: wrap;
477
+ }
385
478
  .items-center {
386
479
  align-items: center;
387
480
  }
388
481
  .justify-center {
389
482
  justify-content: center;
390
483
  }
484
+ .gap-2 {
485
+ gap: 0.5rem;
486
+ }
487
+ .gap-4 {
488
+ gap: 1rem;
489
+ }
391
490
  .space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
392
491
  --tw-space-y-reverse: 0;
393
492
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
394
493
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
395
494
  }
495
+ .space-y-4 > :not([hidden]) ~ :not([hidden]) {
496
+ --tw-space-y-reverse: 0;
497
+ margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
498
+ margin-bottom: calc(1rem * var(--tw-space-y-reverse));
499
+ }
500
+ .overflow-hidden {
501
+ overflow: hidden;
502
+ }
396
503
  .whitespace-nowrap {
397
504
  white-space: nowrap;
398
505
  }
506
+ .rounded-\[3\.75rem\] {
507
+ border-radius: 3.75rem;
508
+ }
509
+ .rounded-full {
510
+ border-radius: 9999px;
511
+ }
399
512
  .rounded-lg {
400
513
  border-radius: var(--radius);
401
514
  }
402
- .rounded-md {
403
- border-radius: calc(var(--radius) - 2px);
404
- }
405
515
  .border {
406
516
  border-width: 1px;
407
517
  }
518
+ .border-\[1\.33px\] {
519
+ border-width: 1.33px;
520
+ }
408
521
  .border-input {
409
522
  border-color: hsl(var(--input));
410
523
  }
524
+ .border-primary-foreground {
525
+ border-color: hsl(var(--primary-foreground));
526
+ }
527
+ .border-t-transparent {
528
+ border-top-color: transparent;
529
+ }
411
530
  .bg-background {
412
531
  background-color: hsl(var(--background));
413
532
  }
@@ -417,11 +536,21 @@ body {
417
536
  .bg-destructive {
418
537
  background-color: hsl(var(--destructive));
419
538
  }
539
+ .bg-gray-100 {
540
+ --tw-bg-opacity: 1;
541
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
542
+ }
543
+ .bg-muted {
544
+ background-color: hsl(var(--muted));
545
+ }
420
546
  .bg-primary {
421
547
  background-color: hsl(var(--primary));
422
548
  }
423
- .bg-secondary {
424
- background-color: hsl(var(--secondary));
549
+ .bg-secondary\/80 {
550
+ background-color: hsl(var(--secondary) / 0.8);
551
+ }
552
+ .p-1 {
553
+ padding: 0.25rem;
425
554
  }
426
555
  .p-6 {
427
556
  padding: 1.5rem;
@@ -438,6 +567,10 @@ body {
438
567
  padding-left: 2rem;
439
568
  padding-right: 2rem;
440
569
  }
570
+ .py-1 {
571
+ padding-top: 0.25rem;
572
+ padding-bottom: 0.25rem;
573
+ }
441
574
  .py-2 {
442
575
  padding-top: 0.5rem;
443
576
  padding-bottom: 0.5rem;
@@ -445,32 +578,82 @@ body {
445
578
  .pt-0 {
446
579
  padding-top: 0px;
447
580
  }
581
+ .text-center {
582
+ text-align: center;
583
+ }
584
+ .font-mono {
585
+ font-family:
586
+ ui-monospace,
587
+ SFMono-Regular,
588
+ Menlo,
589
+ Monaco,
590
+ Consolas,
591
+ "Liberation Mono",
592
+ "Courier New",
593
+ monospace;
594
+ }
448
595
  .text-2xl {
449
596
  font-size: 1.5rem;
450
597
  line-height: 2rem;
451
598
  }
599
+ .text-3xl {
600
+ font-size: 1.875rem;
601
+ line-height: 2.25rem;
602
+ }
603
+ .text-4xl {
604
+ font-size: 2.25rem;
605
+ line-height: 2.5rem;
606
+ }
607
+ .text-\[0\.75rem\] {
608
+ font-size: 0.75rem;
609
+ }
610
+ .text-\[0\.875rem\] {
611
+ font-size: 0.875rem;
612
+ }
613
+ .text-lg {
614
+ font-size: 1.125rem;
615
+ line-height: 1.75rem;
616
+ }
452
617
  .text-sm {
453
618
  font-size: 0.875rem;
454
619
  line-height: 1.25rem;
455
620
  }
621
+ .text-xl {
622
+ font-size: 1.25rem;
623
+ line-height: 1.75rem;
624
+ }
625
+ .font-bold {
626
+ font-weight: 700;
627
+ }
456
628
  .font-medium {
457
629
  font-weight: 500;
458
630
  }
459
631
  .font-semibold {
460
632
  font-weight: 600;
461
633
  }
634
+ .italic {
635
+ font-style: italic;
636
+ }
462
637
  .leading-none {
463
638
  line-height: 1;
464
639
  }
465
640
  .tracking-tight {
466
641
  letter-spacing: -0.025em;
467
642
  }
643
+ .text-blue-600 {
644
+ --tw-text-opacity: 1;
645
+ color: rgb(37 99 235 / var(--tw-text-opacity, 1));
646
+ }
468
647
  .text-card-foreground {
469
648
  color: hsl(var(--card-foreground));
470
649
  }
471
650
  .text-destructive-foreground {
472
651
  color: hsl(var(--destructive-foreground));
473
652
  }
653
+ .text-green-500 {
654
+ --tw-text-opacity: 1;
655
+ color: rgb(34 197 94 / var(--tw-text-opacity, 1));
656
+ }
474
657
  .text-muted-foreground {
475
658
  color: hsl(var(--muted-foreground));
476
659
  }
@@ -480,12 +663,28 @@ body {
480
663
  .text-primary-foreground {
481
664
  color: hsl(var(--primary-foreground));
482
665
  }
666
+ .text-purple-600 {
667
+ --tw-text-opacity: 1;
668
+ color: rgb(147 51 234 / var(--tw-text-opacity, 1));
669
+ }
483
670
  .text-secondary-foreground {
484
671
  color: hsl(var(--secondary-foreground));
485
672
  }
673
+ .underline {
674
+ text-decoration-line: underline;
675
+ }
676
+ .no-underline {
677
+ text-decoration-line: none;
678
+ }
486
679
  .underline-offset-4 {
487
680
  text-underline-offset: 4px;
488
681
  }
682
+ .opacity-0 {
683
+ opacity: 0;
684
+ }
685
+ .opacity-100 {
686
+ opacity: 1;
687
+ }
489
688
  .shadow-sm {
490
689
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
491
690
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
@@ -500,6 +699,15 @@ body {
500
699
  .ring-offset-background {
501
700
  --tw-ring-offset-color: hsl(var(--background));
502
701
  }
702
+ .blur {
703
+ --tw-blur: blur(8px);
704
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
705
+ }
706
+ .transition-all {
707
+ transition-property: all;
708
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
709
+ transition-duration: 150ms;
710
+ }
503
711
  .transition-colors {
504
712
  transition-property:
505
713
  color,
@@ -511,6 +719,17 @@ body {
511
719
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
512
720
  transition-duration: 150ms;
513
721
  }
722
+ .transition-opacity {
723
+ transition-property: opacity;
724
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
725
+ transition-duration: 150ms;
726
+ }
727
+ .duration-150 {
728
+ transition-duration: 150ms;
729
+ }
730
+ .ease-out {
731
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
732
+ }
514
733
  @keyframes enter {
515
734
  from {
516
735
  opacity: var(--tw-enter-opacity, 1);
@@ -523,6 +742,12 @@ body {
523
742
  transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
524
743
  }
525
744
  }
745
+ .duration-150 {
746
+ animation-duration: 150ms;
747
+ }
748
+ .ease-out {
749
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
750
+ }
526
751
  .hover\:bg-accent:hover {
527
752
  background-color: hsl(var(--accent));
528
753
  }
@@ -532,8 +757,8 @@ body {
532
757
  .hover\:bg-primary\/90:hover {
533
758
  background-color: hsl(var(--primary) / 0.9);
534
759
  }
535
- .hover\:bg-secondary\/80:hover {
536
- background-color: hsl(var(--secondary) / 0.8);
760
+ .hover\:bg-secondary:hover {
761
+ background-color: hsl(var(--secondary));
537
762
  }
538
763
  .hover\:text-accent-foreground:hover {
539
764
  color: hsl(var(--accent-foreground));
@@ -565,4 +790,18 @@ body {
565
790
  .disabled\:opacity-50:disabled {
566
791
  opacity: 0.5;
567
792
  }
793
+ .data-\[state\=active\]\:bg-background[data-state=active] {
794
+ background-color: hsl(var(--background));
795
+ }
796
+ .data-\[state\=active\]\:text-foreground[data-state=active] {
797
+ color: hsl(var(--foreground));
798
+ }
799
+ .data-\[state\=active\]\:shadow-sm[data-state=active] {
800
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
801
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
802
+ box-shadow:
803
+ var(--tw-ring-offset-shadow, 0 0 #0000),
804
+ var(--tw-ring-shadow, 0 0 #0000),
805
+ var(--tw-shadow);
806
+ }
568
807
  /*# sourceMappingURL=index.css.map */