linkedunion-design-kit 1.10.8 → 1.11.0
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.ts
CHANGED
|
@@ -35,3 +35,4 @@ export { Dialog, DialogTrigger, DialogContent, DialogHeader, DialogTitle, Dialog
|
|
|
35
35
|
export { DatePicker } from "./src/components/DatePicker/DatePicker";
|
|
36
36
|
export { DateRangePicker } from "./src/components/DateRangePicker/DateRangePicker";
|
|
37
37
|
export { TimePicker } from "./src/components/TimePicker/TimePicker";
|
|
38
|
+
export * from "./src/components/Alerts/Alert/alert";
|
package/dist/index.js
CHANGED
|
@@ -35,3 +35,4 @@ export { Dialog, DialogTrigger, DialogContent, DialogHeader, DialogTitle, Dialog
|
|
|
35
35
|
export { DatePicker } from "./src/components/DatePicker/DatePicker";
|
|
36
36
|
export { DateRangePicker } from "./src/components/DateRangePicker/DateRangePicker";
|
|
37
37
|
export { TimePicker } from "./src/components/TimePicker/TimePicker";
|
|
38
|
+
export * from "./src/components/Alerts/Alert/alert";
|
|
@@ -30,7 +30,7 @@ export function DatePicker(_a) {
|
|
|
30
30
|
<PopoverTrigger asChild>
|
|
31
31
|
<div className="relative">
|
|
32
32
|
{startIcon && (<LUIcon icon={startIcon} size={iconSizeClass} className={cn("absolute top-1/2 -translate-y-1/2 pointer-events-none z-10", iconPosition.left)}/>)}
|
|
33
|
-
<Button color="light-gray" aria-expanded={open} data-slot="date-picker-input" className={cn("w-full justify-between !p-0", inputVariants({ variant: variant, size: size, color: color, shape: shape }), "text-left flex items-center", !date && "text-muted-foreground", open &&
|
|
33
|
+
<Button color="light-gray" aria-expanded={open} data-slot="date-picker-input" className={cn("w-full justify-between !p-0 hover:!bg-transparent active:!bg-transparent", inputVariants({ variant: variant, size: size, color: color, shape: shape }), "text-left flex items-center", !date && "text-muted-foreground", open &&
|
|
34
34
|
color === "default" &&
|
|
35
35
|
"border-blue-600 ring-2 ring-blue-200", disabled && [
|
|
36
36
|
variant === "filled" && "bg-gray-100",
|
|
@@ -111,7 +111,7 @@ export function TimePicker(_a) {
|
|
|
111
111
|
<PopoverTrigger asChild>
|
|
112
112
|
<div className="relative">
|
|
113
113
|
{startIcon && (<LUIcon icon={startIcon} size={iconSizeClass} className={cn("absolute top-1/2 -translate-y-1/2 pointer-events-none z-10", iconPosition.left)}/>)}
|
|
114
|
-
<Button color="light-gray" aria-expanded={open} data-slot="time-picker-input" className={cn("w-full justify-between !p-0", inputVariants({ variant: variant, size: size, color: color, shape: shape }), "text-left flex items-center", !time && "text-muted-foreground", open &&
|
|
114
|
+
<Button color="light-gray" aria-expanded={open} data-slot="time-picker-input" className={cn("w-full justify-between !p-0 hover:!bg-transparent active:!bg-transparent", inputVariants({ variant: variant, size: size, color: color, shape: shape }), "text-left flex items-center", !time && "text-muted-foreground", open &&
|
|
115
115
|
color === "default" &&
|
|
116
116
|
"border-blue-600 ring-2 ring-blue-200", disabled && [
|
|
117
117
|
variant === "filled" && "bg-gray-100",
|