shadcn-glass-ui 2.3.2 → 2.4.1
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/cli/index.cjs +1 -1
- package/dist/components.cjs +4 -4
- package/dist/components.mjs +1 -1
- package/dist/hooks.cjs +2 -2
- package/dist/index.cjs +200 -5
- package/dist/index.d.ts +5 -2
- package/dist/index.mjs +158 -2
- package/dist/r/modal-glass.json +3 -2
- package/dist/r/progress-glass.json +2 -2
- package/dist/r/registry.json +7 -1
- package/dist/r/sheet-glass.json +44 -0
- package/dist/r/tooltip-glass.json +3 -2
- package/dist/shadcn-glass-ui.css +1 -1
- package/dist/{theme-context-7NcW0KZL.cjs → theme-context-D61BHWhL.cjs} +2 -2
- package/dist/themes.cjs +1 -1
- package/dist/{trust-score-card-glass-BGqBcdyJ.mjs → trust-score-card-glass-Bt77v2TG.mjs} +23 -9
- package/dist/{trust-score-card-glass-DtgFygh5.cjs → trust-score-card-glass-ztDXeLJV.cjs} +181 -11
- package/dist/{use-focus-BFBcpBh1.cjs → use-focus-D2yByp-J.cjs} +2 -2
- package/dist/{use-wallpaper-tint-DTTStm5f.cjs → use-wallpaper-tint-DiGB-ziW.cjs} +2 -2
- package/dist/{utils-CiuCe_Aq.cjs → utils-MToinUO7.cjs} +2 -2
- package/dist/utils.cjs +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_trust_score_card_glass = require("./trust-score-card-glass-
|
|
1
|
+
const require_trust_score_card_glass = require("./trust-score-card-glass-ztDXeLJV.cjs");
|
|
2
2
|
let react = require("react");
|
|
3
3
|
let lucide_react = require("lucide-react");
|
|
4
4
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
@@ -99,4 +99,4 @@ Object.defineProperty(exports, "useTheme", {
|
|
|
99
99
|
}
|
|
100
100
|
});
|
|
101
101
|
|
|
102
|
-
//# sourceMappingURL=theme-context-
|
|
102
|
+
//# sourceMappingURL=theme-context-D61BHWhL.cjs.map
|
package/dist/themes.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_theme_context = require("./theme-context-
|
|
1
|
+
const require_theme_context = require("./theme-context-D61BHWhL.cjs");
|
|
2
2
|
exports.THEMES = require_theme_context.THEMES;
|
|
3
3
|
exports.THEME_CONFIG = require_theme_context.THEME_CONFIG;
|
|
4
4
|
exports.ThemeProvider = require_theme_context.ThemeProvider;
|
|
@@ -1326,6 +1326,16 @@ const ModalGlass = {
|
|
|
1326
1326
|
Description: ModalDescription,
|
|
1327
1327
|
Close: ModalClose
|
|
1328
1328
|
};
|
|
1329
|
+
const Dialog = ModalRoot;
|
|
1330
|
+
const DialogTrigger = ModalTrigger;
|
|
1331
|
+
const DialogPortal = ModalPortal;
|
|
1332
|
+
const DialogOverlay = ModalOverlay;
|
|
1333
|
+
const DialogContent = ModalContent;
|
|
1334
|
+
const DialogHeader = ModalHeader;
|
|
1335
|
+
const DialogFooter = ModalFooter;
|
|
1336
|
+
const DialogTitle = ModalTitle;
|
|
1337
|
+
const DialogDescription = ModalDescription;
|
|
1338
|
+
const DialogClose = ModalClose;
|
|
1329
1339
|
const notificationVariants = cva("flex items-start gap-3 md:gap-4 p-4 md:p-5 rounded-2xl min-w-[280px] md:min-w-[320px] max-w-[360px] md:max-w-[420px] transition-all duration-300", {
|
|
1330
1340
|
variants: { type: {
|
|
1331
1341
|
info: "",
|
|
@@ -1770,6 +1780,10 @@ var TooltipGlassSimple = ({ content, children, side = "top", className }) => {
|
|
|
1770
1780
|
})] });
|
|
1771
1781
|
};
|
|
1772
1782
|
const TooltipGlass = TooltipGlassRoot;
|
|
1783
|
+
const Tooltip$1 = TooltipGlassRoot;
|
|
1784
|
+
const TooltipTrigger = TooltipGlassTrigger;
|
|
1785
|
+
const TooltipContent = TooltipGlassContent;
|
|
1786
|
+
const TooltipProvider = TooltipGlassProvider;
|
|
1773
1787
|
const ExpandableHeaderGlass = forwardRef(({ title, icon: Icon, iconColor = "var(--text-accent)", expanded, onToggle, className, ...props }, ref) => {
|
|
1774
1788
|
const textStyles = { color: "var(--text-primary)" };
|
|
1775
1789
|
const chevronStyles = { color: "var(--text-muted)" };
|
|
@@ -2464,12 +2478,12 @@ var getGradientColor = (gradient = "violet") => {
|
|
|
2464
2478
|
};
|
|
2465
2479
|
return gradients[gradient] || gradients.violet;
|
|
2466
2480
|
};
|
|
2467
|
-
const ProgressGlass = forwardRef(({ className, size = "md", value = 0, gradient = "violet", showLabel, ...props }, ref) => {
|
|
2468
|
-
const
|
|
2481
|
+
const ProgressGlass = forwardRef(({ className, size = "md", value = 0, max = 100, gradient = "violet", showLabel, ...props }, ref) => {
|
|
2482
|
+
const percentage = Math.min(100, Math.max(0, value / max * 100));
|
|
2469
2483
|
const { colorVar, glowVar } = getGradientColor(gradient);
|
|
2470
2484
|
const trackStyles = { background: "var(--progress-bg)" };
|
|
2471
2485
|
const fillStyles = {
|
|
2472
|
-
width: `${
|
|
2486
|
+
width: `${percentage}%`,
|
|
2473
2487
|
background: `var(${colorVar})`,
|
|
2474
2488
|
boxShadow: `var(${glowVar})`
|
|
2475
2489
|
};
|
|
@@ -2485,7 +2499,7 @@ const ProgressGlass = forwardRef(({ className, size = "md", value = 0, gradient
|
|
|
2485
2499
|
children: "Progress"
|
|
2486
2500
|
}), /* @__PURE__ */ jsxs("span", {
|
|
2487
2501
|
className: "text-(length:--font-size-2xs) md:text-xs font-medium text-(--text-secondary)",
|
|
2488
|
-
children: [
|
|
2502
|
+
children: [Math.round(percentage), "%"]
|
|
2489
2503
|
})]
|
|
2490
2504
|
}), /* @__PURE__ */ jsx("div", {
|
|
2491
2505
|
className: cn(progressSizes({ size })),
|
|
@@ -2495,10 +2509,10 @@ const ProgressGlass = forwardRef(({ className, size = "md", value = 0, gradient
|
|
|
2495
2509
|
className: "h-full rounded-full transition-all duration-700 ease-out",
|
|
2496
2510
|
style: fillStyles,
|
|
2497
2511
|
role: "progressbar",
|
|
2498
|
-
"aria-valuenow":
|
|
2512
|
+
"aria-valuenow": value,
|
|
2499
2513
|
"aria-valuemin": 0,
|
|
2500
|
-
"aria-valuemax":
|
|
2501
|
-
"aria-label": `Progress: ${
|
|
2514
|
+
"aria-valuemax": max,
|
|
2515
|
+
"aria-label": `Progress: ${value} of ${max}`
|
|
2502
2516
|
})
|
|
2503
2517
|
})]
|
|
2504
2518
|
});
|
|
@@ -4164,6 +4178,6 @@ const TrustScoreCardGlass = forwardRef(({ score = 72, metrics = [], className, .
|
|
|
4164
4178
|
});
|
|
4165
4179
|
});
|
|
4166
4180
|
TrustScoreCardGlass.displayName = "TrustScoreCardGlass";
|
|
4167
|
-
export {
|
|
4181
|
+
export { Tabs as $, DropdownMenuGlassSubContent as $t, FlagAlertGlass as A, ModalHeader as At, IconButtonGlass as B, DropdownGlass as Bt, sparklineContainerVariants as C, ICON_SIZES as Cn, DialogTrigger as Ct, progressSizes as D, ModalDescription as Dt, ProgressGlass as E, ModalContent as Et, SortDropdownGlass as F, ModalTrigger as Ft, TooltipGlassContent as G, DropdownMenuGlassItem as Gt, Tooltip$1 as H, DropdownMenuGlassCheckboxItem as Ht, SearchBoxGlass as I, modalSizes as It, TooltipGlassTrigger as J, DropdownMenuGlassRadioGroup as Jt, TooltipGlassProvider as K, DropdownMenuGlassLabel as Kt, InsightCardGlass as L, InputGlass as Lt, BaseProgressGlass as M, ModalPortal as Mt, ThemeToggleGlass as N, ModalRoot as Nt, ProfileAvatarGlass as O, ModalFooter as Ot, StatItemGlass as P, ModalTitle as Pt, toggleSizes as Q, DropdownMenuGlassSub as Qt, insightCardVariants as R, GlassCard as Rt, sparklineBarVariants as S, TouchTarget as Sn, DialogTitle as St, RainbowProgressGlass as T, ModalClose as Tt, TooltipContent as U, DropdownMenuGlassContent as Ut, ExpandableHeaderGlass as V, DropdownMenuGlass as Vt, TooltipGlass as W, DropdownMenuGlassGroup as Wt, TooltipTrigger as X, DropdownMenuGlassSeparator as Xt, TooltipProvider as Y, DropdownMenuGlassRadioItem as Yt, ToggleGlass as Z, DropdownMenuGlassShortcut as Zt, ContributionMetricsGlass as _, AlertGlass as _n, DialogDescription as _t, HeaderBrandingGlass as a, Checkbox as an, SkeletonGlass as at, AICardGlass as b, InteractiveCard as bn, DialogOverlay as bt, YearCardGlass as c, buttonGlassVariants as cn, PopoverGlassAnchor as ct, TrustScoreDisplayGlass as d, AvatarGlass as dn, PopoverGlassTrigger as dt, DropdownMenuGlassSubTrigger as en, TabsContent as et, RepositoryMetadataGlass as f, AvatarGlassFallback as fn, NotificationGlass as ft, MetricCardGlass as g, statusSizes as gn, DialogContent as gt, MetricsGridGlass as h, avatarSizes as hn, DialogClose as ht, HeaderNavGlass as i, CircularProgressGlass as in, SliderGlass as it, StatusIndicatorGlass as j, ModalOverlay as jt, LanguageBarGlass as k, ModalGlass as kt, UserStatsLineGlass as l, BadgeGlass as ln, PopoverGlassContent as lt, RepositoryCardGlass as m, AvatarGlassSimple as mn, Dialog as mt, ProjectsListGlass as n, ComboBoxGlass as nn, TabsList as nt, FlagsSectionGlass as o, CheckboxGlass as on, skeletonVariants as ot, RepositoryHeaderGlass as p, AvatarGlassImage as pn, notificationVariants as pt, TooltipGlassSimple as q, DropdownMenuGlassPortal as qt, ProfileHeaderGlass as r, inputVariants as rn, TabsTrigger as rt, CareerStatsGlass as s, ButtonGlass as sn, PopoverGlass as st, TrustScoreCardGlass as t, DropdownMenuGlassTrigger as tn, TabsGlass as tt, UserInfoGlass as u, badgeVariants as un, PopoverGlassLegacy as ut, CircularMetricGlass as v, AlertGlassDescription as vn, DialogFooter as vt, SegmentedControlGlass as w, alertVariants as wn, ModalBody as wt, SparklineGlass as x, FormFieldWrapper as xn, DialogPortal as xt, CareerStatsHeaderGlass as y, AlertGlassTitle as yn, DialogHeader as yt, insightVariantConfig as z, cardIntensity as zt };
|
|
4168
4182
|
|
|
4169
|
-
//# sourceMappingURL=trust-score-card-glass-
|
|
4183
|
+
//# sourceMappingURL=trust-score-card-glass-Bt77v2TG.mjs.map
|
|
@@ -18,9 +18,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
18
18
|
value: mod,
|
|
19
19
|
enumerable: true
|
|
20
20
|
}) : target, mod));
|
|
21
|
-
const require_utils = require("./utils-
|
|
22
|
-
const require_use_focus = require("./use-focus-
|
|
23
|
-
const require_theme_context = require("./theme-context-
|
|
21
|
+
const require_utils = require("./utils-MToinUO7.cjs");
|
|
22
|
+
const require_use_focus = require("./use-focus-D2yByp-J.cjs");
|
|
23
|
+
const require_theme_context = require("./theme-context-D61BHWhL.cjs");
|
|
24
24
|
let react = require("react");
|
|
25
25
|
react = __toESM(react);
|
|
26
26
|
let lucide_react = require("lucide-react");
|
|
@@ -1354,6 +1354,16 @@ const ModalGlass = {
|
|
|
1354
1354
|
Description: ModalDescription,
|
|
1355
1355
|
Close: ModalClose
|
|
1356
1356
|
};
|
|
1357
|
+
const Dialog = ModalRoot;
|
|
1358
|
+
const DialogTrigger = ModalTrigger;
|
|
1359
|
+
const DialogPortal = ModalPortal;
|
|
1360
|
+
const DialogOverlay = ModalOverlay;
|
|
1361
|
+
const DialogContent = ModalContent;
|
|
1362
|
+
const DialogHeader = ModalHeader;
|
|
1363
|
+
const DialogFooter = ModalFooter;
|
|
1364
|
+
const DialogTitle = ModalTitle;
|
|
1365
|
+
const DialogDescription = ModalDescription;
|
|
1366
|
+
const DialogClose = ModalClose;
|
|
1357
1367
|
const notificationVariants = (0, class_variance_authority.cva)("flex items-start gap-3 md:gap-4 p-4 md:p-5 rounded-2xl min-w-[280px] md:min-w-[320px] max-w-[360px] md:max-w-[420px] transition-all duration-300", {
|
|
1358
1368
|
variants: { type: {
|
|
1359
1369
|
info: "",
|
|
@@ -1798,6 +1808,10 @@ var TooltipGlassSimple = ({ content, children, side = "top", className }) => {
|
|
|
1798
1808
|
})] });
|
|
1799
1809
|
};
|
|
1800
1810
|
const TooltipGlass = TooltipGlassRoot;
|
|
1811
|
+
const Tooltip$1 = TooltipGlassRoot;
|
|
1812
|
+
const TooltipTrigger = TooltipGlassTrigger;
|
|
1813
|
+
const TooltipContent = TooltipGlassContent;
|
|
1814
|
+
const TooltipProvider = TooltipGlassProvider;
|
|
1801
1815
|
const ExpandableHeaderGlass = (0, react.forwardRef)(({ title, icon: Icon, iconColor = "var(--text-accent)", expanded, onToggle, className, ...props }, ref) => {
|
|
1802
1816
|
const textStyles = { color: "var(--text-primary)" };
|
|
1803
1817
|
const chevronStyles = { color: "var(--text-muted)" };
|
|
@@ -2492,12 +2506,12 @@ var getGradientColor = (gradient = "violet") => {
|
|
|
2492
2506
|
};
|
|
2493
2507
|
return gradients[gradient] || gradients.violet;
|
|
2494
2508
|
};
|
|
2495
|
-
const ProgressGlass = (0, react.forwardRef)(({ className, size = "md", value = 0, gradient = "violet", showLabel, ...props }, ref) => {
|
|
2496
|
-
const
|
|
2509
|
+
const ProgressGlass = (0, react.forwardRef)(({ className, size = "md", value = 0, max = 100, gradient = "violet", showLabel, ...props }, ref) => {
|
|
2510
|
+
const percentage = Math.min(100, Math.max(0, value / max * 100));
|
|
2497
2511
|
const { colorVar, glowVar } = getGradientColor(gradient);
|
|
2498
2512
|
const trackStyles = { background: "var(--progress-bg)" };
|
|
2499
2513
|
const fillStyles = {
|
|
2500
|
-
width: `${
|
|
2514
|
+
width: `${percentage}%`,
|
|
2501
2515
|
background: `var(${colorVar})`,
|
|
2502
2516
|
boxShadow: `var(${glowVar})`
|
|
2503
2517
|
};
|
|
@@ -2513,7 +2527,7 @@ const ProgressGlass = (0, react.forwardRef)(({ className, size = "md", value = 0
|
|
|
2513
2527
|
children: "Progress"
|
|
2514
2528
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
|
|
2515
2529
|
className: "text-(length:--font-size-2xs) md:text-xs font-medium text-(--text-secondary)",
|
|
2516
|
-
children: [
|
|
2530
|
+
children: [Math.round(percentage), "%"]
|
|
2517
2531
|
})]
|
|
2518
2532
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
|
|
2519
2533
|
className: require_utils.cn(progressSizes({ size })),
|
|
@@ -2523,10 +2537,10 @@ const ProgressGlass = (0, react.forwardRef)(({ className, size = "md", value = 0
|
|
|
2523
2537
|
className: "h-full rounded-full transition-all duration-700 ease-out",
|
|
2524
2538
|
style: fillStyles,
|
|
2525
2539
|
role: "progressbar",
|
|
2526
|
-
"aria-valuenow":
|
|
2540
|
+
"aria-valuenow": value,
|
|
2527
2541
|
"aria-valuemin": 0,
|
|
2528
|
-
"aria-valuemax":
|
|
2529
|
-
"aria-label": `Progress: ${
|
|
2542
|
+
"aria-valuemax": max,
|
|
2543
|
+
"aria-label": `Progress: ${value} of ${max}`
|
|
2530
2544
|
})
|
|
2531
2545
|
})]
|
|
2532
2546
|
});
|
|
@@ -4306,6 +4320,66 @@ Object.defineProperty(exports, "ContributionMetricsGlass", {
|
|
|
4306
4320
|
return ContributionMetricsGlass;
|
|
4307
4321
|
}
|
|
4308
4322
|
});
|
|
4323
|
+
Object.defineProperty(exports, "Dialog", {
|
|
4324
|
+
enumerable: true,
|
|
4325
|
+
get: function() {
|
|
4326
|
+
return Dialog;
|
|
4327
|
+
}
|
|
4328
|
+
});
|
|
4329
|
+
Object.defineProperty(exports, "DialogClose", {
|
|
4330
|
+
enumerable: true,
|
|
4331
|
+
get: function() {
|
|
4332
|
+
return DialogClose;
|
|
4333
|
+
}
|
|
4334
|
+
});
|
|
4335
|
+
Object.defineProperty(exports, "DialogContent", {
|
|
4336
|
+
enumerable: true,
|
|
4337
|
+
get: function() {
|
|
4338
|
+
return DialogContent;
|
|
4339
|
+
}
|
|
4340
|
+
});
|
|
4341
|
+
Object.defineProperty(exports, "DialogDescription", {
|
|
4342
|
+
enumerable: true,
|
|
4343
|
+
get: function() {
|
|
4344
|
+
return DialogDescription;
|
|
4345
|
+
}
|
|
4346
|
+
});
|
|
4347
|
+
Object.defineProperty(exports, "DialogFooter", {
|
|
4348
|
+
enumerable: true,
|
|
4349
|
+
get: function() {
|
|
4350
|
+
return DialogFooter;
|
|
4351
|
+
}
|
|
4352
|
+
});
|
|
4353
|
+
Object.defineProperty(exports, "DialogHeader", {
|
|
4354
|
+
enumerable: true,
|
|
4355
|
+
get: function() {
|
|
4356
|
+
return DialogHeader;
|
|
4357
|
+
}
|
|
4358
|
+
});
|
|
4359
|
+
Object.defineProperty(exports, "DialogOverlay", {
|
|
4360
|
+
enumerable: true,
|
|
4361
|
+
get: function() {
|
|
4362
|
+
return DialogOverlay;
|
|
4363
|
+
}
|
|
4364
|
+
});
|
|
4365
|
+
Object.defineProperty(exports, "DialogPortal", {
|
|
4366
|
+
enumerable: true,
|
|
4367
|
+
get: function() {
|
|
4368
|
+
return DialogPortal;
|
|
4369
|
+
}
|
|
4370
|
+
});
|
|
4371
|
+
Object.defineProperty(exports, "DialogTitle", {
|
|
4372
|
+
enumerable: true,
|
|
4373
|
+
get: function() {
|
|
4374
|
+
return DialogTitle;
|
|
4375
|
+
}
|
|
4376
|
+
});
|
|
4377
|
+
Object.defineProperty(exports, "DialogTrigger", {
|
|
4378
|
+
enumerable: true,
|
|
4379
|
+
get: function() {
|
|
4380
|
+
return DialogTrigger;
|
|
4381
|
+
}
|
|
4382
|
+
});
|
|
4309
4383
|
Object.defineProperty(exports, "DropdownGlass", {
|
|
4310
4384
|
enumerable: true,
|
|
4311
4385
|
get: function() {
|
|
@@ -4444,6 +4518,12 @@ Object.defineProperty(exports, "HeaderNavGlass", {
|
|
|
4444
4518
|
return HeaderNavGlass;
|
|
4445
4519
|
}
|
|
4446
4520
|
});
|
|
4521
|
+
Object.defineProperty(exports, "ICON_SIZES", {
|
|
4522
|
+
enumerable: true,
|
|
4523
|
+
get: function() {
|
|
4524
|
+
return ICON_SIZES;
|
|
4525
|
+
}
|
|
4526
|
+
});
|
|
4447
4527
|
Object.defineProperty(exports, "IconButtonGlass", {
|
|
4448
4528
|
enumerable: true,
|
|
4449
4529
|
get: function() {
|
|
@@ -4486,12 +4566,78 @@ Object.defineProperty(exports, "MetricsGridGlass", {
|
|
|
4486
4566
|
return MetricsGridGlass;
|
|
4487
4567
|
}
|
|
4488
4568
|
});
|
|
4569
|
+
Object.defineProperty(exports, "ModalBody", {
|
|
4570
|
+
enumerable: true,
|
|
4571
|
+
get: function() {
|
|
4572
|
+
return ModalBody;
|
|
4573
|
+
}
|
|
4574
|
+
});
|
|
4575
|
+
Object.defineProperty(exports, "ModalClose", {
|
|
4576
|
+
enumerable: true,
|
|
4577
|
+
get: function() {
|
|
4578
|
+
return ModalClose;
|
|
4579
|
+
}
|
|
4580
|
+
});
|
|
4581
|
+
Object.defineProperty(exports, "ModalContent", {
|
|
4582
|
+
enumerable: true,
|
|
4583
|
+
get: function() {
|
|
4584
|
+
return ModalContent;
|
|
4585
|
+
}
|
|
4586
|
+
});
|
|
4587
|
+
Object.defineProperty(exports, "ModalDescription", {
|
|
4588
|
+
enumerable: true,
|
|
4589
|
+
get: function() {
|
|
4590
|
+
return ModalDescription;
|
|
4591
|
+
}
|
|
4592
|
+
});
|
|
4593
|
+
Object.defineProperty(exports, "ModalFooter", {
|
|
4594
|
+
enumerable: true,
|
|
4595
|
+
get: function() {
|
|
4596
|
+
return ModalFooter;
|
|
4597
|
+
}
|
|
4598
|
+
});
|
|
4489
4599
|
Object.defineProperty(exports, "ModalGlass", {
|
|
4490
4600
|
enumerable: true,
|
|
4491
4601
|
get: function() {
|
|
4492
4602
|
return ModalGlass;
|
|
4493
4603
|
}
|
|
4494
4604
|
});
|
|
4605
|
+
Object.defineProperty(exports, "ModalHeader", {
|
|
4606
|
+
enumerable: true,
|
|
4607
|
+
get: function() {
|
|
4608
|
+
return ModalHeader;
|
|
4609
|
+
}
|
|
4610
|
+
});
|
|
4611
|
+
Object.defineProperty(exports, "ModalOverlay", {
|
|
4612
|
+
enumerable: true,
|
|
4613
|
+
get: function() {
|
|
4614
|
+
return ModalOverlay;
|
|
4615
|
+
}
|
|
4616
|
+
});
|
|
4617
|
+
Object.defineProperty(exports, "ModalPortal", {
|
|
4618
|
+
enumerable: true,
|
|
4619
|
+
get: function() {
|
|
4620
|
+
return ModalPortal;
|
|
4621
|
+
}
|
|
4622
|
+
});
|
|
4623
|
+
Object.defineProperty(exports, "ModalRoot", {
|
|
4624
|
+
enumerable: true,
|
|
4625
|
+
get: function() {
|
|
4626
|
+
return ModalRoot;
|
|
4627
|
+
}
|
|
4628
|
+
});
|
|
4629
|
+
Object.defineProperty(exports, "ModalTitle", {
|
|
4630
|
+
enumerable: true,
|
|
4631
|
+
get: function() {
|
|
4632
|
+
return ModalTitle;
|
|
4633
|
+
}
|
|
4634
|
+
});
|
|
4635
|
+
Object.defineProperty(exports, "ModalTrigger", {
|
|
4636
|
+
enumerable: true,
|
|
4637
|
+
get: function() {
|
|
4638
|
+
return ModalTrigger;
|
|
4639
|
+
}
|
|
4640
|
+
});
|
|
4495
4641
|
Object.defineProperty(exports, "NotificationGlass", {
|
|
4496
4642
|
enumerable: true,
|
|
4497
4643
|
get: function() {
|
|
@@ -4666,6 +4812,18 @@ Object.defineProperty(exports, "ToggleGlass", {
|
|
|
4666
4812
|
return ToggleGlass;
|
|
4667
4813
|
}
|
|
4668
4814
|
});
|
|
4815
|
+
Object.defineProperty(exports, "Tooltip", {
|
|
4816
|
+
enumerable: true,
|
|
4817
|
+
get: function() {
|
|
4818
|
+
return Tooltip$1;
|
|
4819
|
+
}
|
|
4820
|
+
});
|
|
4821
|
+
Object.defineProperty(exports, "TooltipContent", {
|
|
4822
|
+
enumerable: true,
|
|
4823
|
+
get: function() {
|
|
4824
|
+
return TooltipContent;
|
|
4825
|
+
}
|
|
4826
|
+
});
|
|
4669
4827
|
Object.defineProperty(exports, "TooltipGlass", {
|
|
4670
4828
|
enumerable: true,
|
|
4671
4829
|
get: function() {
|
|
@@ -4696,6 +4854,18 @@ Object.defineProperty(exports, "TooltipGlassTrigger", {
|
|
|
4696
4854
|
return TooltipGlassTrigger;
|
|
4697
4855
|
}
|
|
4698
4856
|
});
|
|
4857
|
+
Object.defineProperty(exports, "TooltipProvider", {
|
|
4858
|
+
enumerable: true,
|
|
4859
|
+
get: function() {
|
|
4860
|
+
return TooltipProvider;
|
|
4861
|
+
}
|
|
4862
|
+
});
|
|
4863
|
+
Object.defineProperty(exports, "TooltipTrigger", {
|
|
4864
|
+
enumerable: true,
|
|
4865
|
+
get: function() {
|
|
4866
|
+
return TooltipTrigger;
|
|
4867
|
+
}
|
|
4868
|
+
});
|
|
4699
4869
|
Object.defineProperty(exports, "TouchTarget", {
|
|
4700
4870
|
enumerable: true,
|
|
4701
4871
|
get: function() {
|
|
@@ -4835,4 +5005,4 @@ Object.defineProperty(exports, "toggleSizes", {
|
|
|
4835
5005
|
}
|
|
4836
5006
|
});
|
|
4837
5007
|
|
|
4838
|
-
//# sourceMappingURL=trust-score-card-glass-
|
|
5008
|
+
//# sourceMappingURL=trust-score-card-glass-ztDXeLJV.cjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_trust_score_card_glass = require("./trust-score-card-glass-
|
|
1
|
+
const require_trust_score_card_glass = require("./trust-score-card-glass-ztDXeLJV.cjs");
|
|
2
2
|
let react = require("react");
|
|
3
3
|
function useHover(options = {}) {
|
|
4
4
|
const { enterDelay = 0, leaveDelay = 0, includeFocus = false, onHoverChange } = options;
|
|
@@ -127,4 +127,4 @@ Object.defineProperty(exports, "useHover", {
|
|
|
127
127
|
}
|
|
128
128
|
});
|
|
129
129
|
|
|
130
|
-
//# sourceMappingURL=use-focus-
|
|
130
|
+
//# sourceMappingURL=use-focus-D2yByp-J.cjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_trust_score_card_glass = require("./trust-score-card-glass-
|
|
1
|
+
const require_trust_score_card_glass = require("./trust-score-card-glass-ztDXeLJV.cjs");
|
|
2
2
|
let react = require("react");
|
|
3
3
|
var BREAKPOINTS = {
|
|
4
4
|
xs: 0,
|
|
@@ -159,4 +159,4 @@ Object.defineProperty(exports, "useWallpaperTint", {
|
|
|
159
159
|
}
|
|
160
160
|
});
|
|
161
161
|
|
|
162
|
-
//# sourceMappingURL=use-wallpaper-tint-
|
|
162
|
+
//# sourceMappingURL=use-wallpaper-tint-DiGB-ziW.cjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const require_trust_score_card_glass = require("./trust-score-card-glass-
|
|
1
|
+
const require_trust_score_card_glass = require("./trust-score-card-glass-ztDXeLJV.cjs");
|
|
2
2
|
let clsx = require("clsx");
|
|
3
3
|
let tailwind_merge = require("tailwind-merge");
|
|
4
4
|
const cn = (...inputs) => {
|
|
@@ -11,4 +11,4 @@ Object.defineProperty(exports, "cn", {
|
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
//# sourceMappingURL=utils-
|
|
14
|
+
//# sourceMappingURL=utils-MToinUO7.cjs.map
|
package/dist/utils.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const require_utils = require("./utils-
|
|
1
|
+
const require_utils = require("./utils-MToinUO7.cjs");
|
|
2
2
|
exports.cn = require_utils.cn;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-glass-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.4.1",
|
|
5
5
|
"description": "Glassmorphism UI library for React - AI-friendly with 59 components, strict TypeScript, and comprehensive docs",
|
|
6
6
|
"author": "Yhooi2",
|
|
7
7
|
"license": "MIT",
|