laif-ds 0.1.31 → 0.1.33
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/components/ui/accordion.js +2 -7
- package/dist/components/ui/alert-dialog.js +10 -37
- package/dist/components/ui/alert.js +1 -5
- package/dist/components/ui/app-multiple-select-dropdown.js +120 -116
- package/dist/components/ui/app-select.js +9 -1
- package/dist/components/ui/app-sidebar.js +9 -23
- package/dist/components/ui/aspect-ratio.js +1 -3
- package/dist/components/ui/async-select.js +80 -64
- package/dist/components/ui/audio-visualizer.js +3 -2
- package/dist/components/ui/button.js +45 -5
- package/dist/components/ui/card.js +7 -2
- package/dist/components/ui/charts/circular.js +1 -1
- package/dist/components/ui/chat-message.js +34 -16
- package/dist/components/ui/chat.js +4 -4
- package/dist/components/ui/command.js +1 -1
- package/dist/components/ui/data-cross-table.js +32 -8
- package/dist/components/ui/data-table.js +45 -44
- package/dist/components/ui/date-picker.js +2 -2
- package/dist/components/ui/dropdown-menu.js +7 -7
- package/dist/components/ui/file-preview.js +9 -9
- package/dist/components/ui/gantt/components/Chart/Bars/Bars.js +25 -3
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarItem/BarItem.js +32 -13
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsItems/BarItems.js +7 -1
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsRow.js +6 -1
- package/dist/components/ui/gantt/components/Chart/Chart.js +19 -3
- package/dist/components/ui/gantt/components/Chart/Scale/Scale.js +80 -71
- package/dist/components/ui/gantt/components/Chart/Tree/Tree.js +72 -54
- package/dist/components/ui/gantt/components/Controls/Controls.js +4 -2
- package/dist/components/ui/gantt/hooks/useGanttCalculate.js +11 -1
- package/dist/components/ui/gantt/utils/getWholeWidth.js +4 -1
- package/dist/components/ui/gantt/utils/transformData.js +7 -4
- package/dist/components/ui/input-selector.js +5 -2
- package/dist/components/ui/input.js +41 -46
- package/dist/components/ui/interrupt-prompt.js +2 -2
- package/dist/components/ui/markdown-renderer.js +2 -2
- package/dist/components/ui/message-input.js +12 -10
- package/dist/components/ui/multiple-selector.js +44 -31
- package/dist/components/ui/prompt-suggestions.js +2 -2
- package/dist/components/ui/resizable.js +1 -1
- package/dist/components/ui/select.js +6 -10
- package/dist/components/ui/sidebar.js +27 -19
- package/dist/components/ui/slider.js +103 -89
- package/dist/components/ui/table-skeleton.js +29 -11
- package/dist/components/ui/table.js +4 -1
- package/dist/components/ui/tabs.js +1 -1
- package/dist/components/ui/theme-switcher.js +2 -7
- package/dist/components/ui/typing-indicator.js +4 -4
- package/dist/components/ui/typo.js +1 -8
- package/dist/hooks/use-mobile.js +3 -1
- package/dist/index.d.ts +7 -7
- package/dist/styles.css +1 -1
- package/package.json +3 -1
|
@@ -40,7 +40,7 @@ function g({
|
|
|
40
40
|
{
|
|
41
41
|
"data-slot": "tabs-trigger",
|
|
42
42
|
className: s(
|
|
43
|
-
"data-[state=active]:bg-d-background dark:data-[state=active]:text-d-foreground focus-visible:border-d-ring focus-visible:ring-d-ring/50 focus-visible:outline-d-ring dark:data-[state=active]:border-d-input dark:data-[state=active]:bg-d-background text-d-foreground dark:text-d-secondary-foreground inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md
|
|
43
|
+
"data-[state=active]:bg-d-background dark:data-[state=active]:text-d-foreground focus-visible:border-d-ring focus-visible:ring-d-ring/50 focus-visible:outline-d-ring dark:data-[state=active]:border-d-input dark:data-[state=active]:bg-d-background text-d-foreground dark:text-d-secondary-foreground d-border inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border-transparent px-2 py-1 text-sm font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:ring-[3px] focus-visible:outline-1 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:shadow-sm [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
44
44
|
t
|
|
45
45
|
),
|
|
46
46
|
...e
|
|
@@ -39,7 +39,7 @@ const k = [
|
|
|
39
39
|
"div",
|
|
40
40
|
{
|
|
41
41
|
className: r(
|
|
42
|
-
"relative isolate flex h-8 rounded-full
|
|
42
|
+
"bg-d-background ring-d-border relative isolate flex h-8 rounded-full p-1 ring-1",
|
|
43
43
|
i
|
|
44
44
|
),
|
|
45
45
|
children: k.map(({ key: e, icon: c, label: f }) => {
|
|
@@ -52,12 +52,7 @@ const k = [
|
|
|
52
52
|
onClick: () => a(e),
|
|
53
53
|
"aria-label": f,
|
|
54
54
|
children: [
|
|
55
|
-
o && /* @__PURE__ */ t(
|
|
56
|
-
"div",
|
|
57
|
-
{
|
|
58
|
-
className: "absolute inset-0 rounded-full bg-d-secondary"
|
|
59
|
-
}
|
|
60
|
-
),
|
|
55
|
+
o && /* @__PURE__ */ t("div", { className: "bg-d-secondary absolute inset-0 rounded-full" }),
|
|
61
56
|
/* @__PURE__ */ t(
|
|
62
57
|
c,
|
|
63
58
|
{
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
import { jsx as a, jsxs as n } from "react/jsx-runtime";
|
|
3
3
|
import e from "../../node_modules/lucide-react/dist/esm/icons/dot.js";
|
|
4
4
|
function t() {
|
|
5
|
-
return /* @__PURE__ */ a("div", { className: "justify-left flex space-x-1", children: /* @__PURE__ */ a("div", { className: "
|
|
6
|
-
/* @__PURE__ */ a(e, { className: "h-5 w-5
|
|
7
|
-
/* @__PURE__ */ a(e, { className: "h-5 w-5
|
|
8
|
-
/* @__PURE__ */ a(e, { className: "h-5 w-5
|
|
5
|
+
return /* @__PURE__ */ a("div", { className: "justify-left flex space-x-1", children: /* @__PURE__ */ a("div", { className: "bg-d-secondary rounded-lg p-3", children: /* @__PURE__ */ n("div", { className: "flex -space-x-2.5", children: [
|
|
6
|
+
/* @__PURE__ */ a(e, { className: "animate-typing-dot-bounce h-5 w-5" }),
|
|
7
|
+
/* @__PURE__ */ a(e, { className: "animate-typing-dot-bounce h-5 w-5 [animation-delay:90ms]" }),
|
|
8
|
+
/* @__PURE__ */ a(e, { className: "animate-typing-dot-bounce h-5 w-5 [animation-delay:180ms]" })
|
|
9
9
|
] }) }) });
|
|
10
10
|
}
|
|
11
11
|
export {
|
|
@@ -39,14 +39,7 @@ const i = {
|
|
|
39
39
|
...o
|
|
40
40
|
}) => {
|
|
41
41
|
const d = e || s[t] || "span";
|
|
42
|
-
return /* @__PURE__ */ x(
|
|
43
|
-
d,
|
|
44
|
-
{
|
|
45
|
-
className: a(i[t], n),
|
|
46
|
-
...o,
|
|
47
|
-
children: l
|
|
48
|
-
}
|
|
49
|
-
);
|
|
42
|
+
return /* @__PURE__ */ x(d, { className: a(i[t], n), ...o, children: l });
|
|
50
43
|
};
|
|
51
44
|
export {
|
|
52
45
|
r as Typo
|
package/dist/hooks/use-mobile.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -124,7 +124,7 @@ declare const alertVariants: (props?: ({
|
|
|
124
124
|
|
|
125
125
|
declare type Animation_2 = VariantProps<typeof chatBubbleVariants>["animation"];
|
|
126
126
|
|
|
127
|
-
export declare function AppMultipleSelectDropdown({ options, value, onChange, placeholder, disabled, size, label, labelClassName, emptyMessage, className, filterPlaceholder, cancelLabel, cancelButtonLabel, maxSelectedItems }: MultipleSelectDropdownProps): JSX.Element;
|
|
127
|
+
export declare function AppMultipleSelectDropdown({ options, value, onChange, placeholder, disabled, size, label, labelClassName, emptyMessage, className, filterPlaceholder, cancelLabel, cancelButtonLabel, maxSelectedItems, }: MultipleSelectDropdownProps): JSX.Element;
|
|
128
128
|
|
|
129
129
|
export declare interface AppMultipleSelectOption {
|
|
130
130
|
value: string;
|
|
@@ -587,7 +587,7 @@ export declare enum DataRepeatTypes {
|
|
|
587
587
|
MONTH = "MONTH"
|
|
588
588
|
}
|
|
589
589
|
|
|
590
|
-
export declare function DataTable<TData, TValue>({ columns, data, loading, emptyComponent, className, rowSelection, onRowSelectionChange, checkable, onCheckedRowsChange, notFoundMessage, clientFilter, clientFilterPlaceholder }: DataTableProps<TData, TValue>): JSX.Element;
|
|
590
|
+
export declare function DataTable<TData, TValue>({ columns, data, loading, emptyComponent, className, rowSelection, onRowSelectionChange, checkable, onCheckedRowsChange, notFoundMessage, clientFilter, clientFilterPlaceholder, }: DataTableProps<TData, TValue>): JSX.Element;
|
|
591
591
|
|
|
592
592
|
declare interface DataTableProps<TData, TValue> {
|
|
593
593
|
columns: ColumnDef<TData, TValue>[];
|
|
@@ -1006,7 +1006,7 @@ declare interface MultipleSelectorProps {
|
|
|
1006
1006
|
/** Props of `Command` */
|
|
1007
1007
|
commandProps?: React_2.ComponentPropsWithoutRef<typeof Command>;
|
|
1008
1008
|
/** Props of `CommandInput` */
|
|
1009
|
-
inputProps?: Omit<React_2.ComponentPropsWithoutRef<typeof Command_2.Input>,
|
|
1009
|
+
inputProps?: Omit<React_2.ComponentPropsWithoutRef<typeof Command_2.Input>, "value" | "placeholder" | "disabled">;
|
|
1010
1010
|
label?: string | React_2.ReactNode;
|
|
1011
1011
|
/** hide the clear all button. */
|
|
1012
1012
|
hideClearAllButton?: boolean;
|
|
@@ -1416,9 +1416,9 @@ declare const THEMES: {
|
|
|
1416
1416
|
export declare const ThemeSwitcher: ({ value, onChange, defaultValue, className, }: ThemeSwitcherProps) => JSX.Element | null;
|
|
1417
1417
|
|
|
1418
1418
|
declare type ThemeSwitcherProps = {
|
|
1419
|
-
value?:
|
|
1420
|
-
onChange?: (theme:
|
|
1421
|
-
defaultValue?:
|
|
1419
|
+
value?: "light" | "dark" | "system";
|
|
1420
|
+
onChange?: (theme: "light" | "dark" | "system") => void;
|
|
1421
|
+
defaultValue?: "light" | "dark" | "system";
|
|
1422
1422
|
className?: string;
|
|
1423
1423
|
};
|
|
1424
1424
|
|
|
@@ -1469,7 +1469,7 @@ export declare function TooltipProvider({ delayDuration, ...props }: React_2.Com
|
|
|
1469
1469
|
export declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Trigger>): JSX.Element;
|
|
1470
1470
|
|
|
1471
1471
|
declare type TransformedDataType<T> = {
|
|
1472
|
-
[P in keyof T as Exclude<P,
|
|
1472
|
+
[P in keyof T as Exclude<P, "children">]: T[P];
|
|
1473
1473
|
};
|
|
1474
1474
|
|
|
1475
1475
|
export declare function TypingIndicator(): JSX.Element;
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "tailwindcss";@import "tw-animate-css";@import "./gantt.css";:root{--d-radius:6px;--d-background:#fafafa;--d-foreground:#2e2e2e;--d-card:#fafafa;--d-card-foreground:#2e2e2e;--d-popover:#fafafa;--d-popover-foreground:#2e2e2e;--d-primary:#64c2d1;--d-primary-foreground:#1f1f1f;--d-secondary:#f5f5f5;--d-secondary-foreground:#2e2e2e;--d-muted:#e0e0e0;--d-muted-foreground:#7a7a7a;--d-accent:#e0e0e0;--d-accent-foreground:#2e2e2e;--d-destructive:#ec2842;--d-destructive-foreground:#85202d;--d-border:#e0e0e0;--d-input:#e0e0e0;--d-ring:#64c2d1;--d-chart-1:#64c2d1;--d-chart-2:#39f283;--d-chart-3:orange;--d-chart-4:orange;--d-chart-5:#eb576a;--d-sidebar:#f5f5f5;--d-sidebar-foreground:#2e2e2e;--d-sidebar-primary:#64c2d1;--d-sidebar-primary-foreground:#1f1f1f;--d-sidebar-accent:#e0e0e066;--d-sidebar-accent-foreground:#2e2e2e;--d-sidebar-border:#e0e0e0;--d-sidebar-ring:#64c2d1}.dark{--d-radius:6px;--d-background:#1f1f1f;--d-foreground:#e0e0e0;--d-card:#1f1f1f;--d-card-foreground:#e0e0e0;--d-popover:#1f1f1f;--d-popover-foreground:#e0e0e0;--d-primary:#64c2d1;--d-primary-foreground:#1f1f1f;--d-secondary:#2e2e2e;--d-secondary-foreground:#e0e0e0;--d-muted:#474747;--d-muted-foreground:#7a7a7a;--d-accent:#474747;--d-accent-foreground:#e0e0e0;--d-destructive:#85202d;--d-destructive-foreground:#e0e0e0;--d-border:#2e2e2e;--d-input:#2e2e2e;--d-ring:#64c2d1;--d-chart-1:#64c2d1;--d-chart-2:#39f283;--d-chart-3:orange;--d-chart-4:orange;--d-chart-5:#eb576a;--d-sidebar:#141414;--d-sidebar-foreground:#e0e0e0;--d-sidebar-primary:#64c2d1;--d-sidebar-primary-foreground:#1f1f1f;--d-sidebar-accent:#47474766;--d-sidebar-accent-foreground:#e0e0e0;--d-sidebar-border:#2e2e2e;--d-sidebar-ring:#64c2d1}.tangerine{--d-background:oklch(0.26 0.03 262.67);--d-foreground:oklch(0.92 0 0);--d-card:oklch(0.31 0.03 268.64);--d-card-foreground:oklch(0.92 0 0);--d-popover:oklch(0.29 0.02 268.
|
|
1
|
+
@import "tailwindcss";@import "tw-animate-css";@import "./gantt.css";:root{--d-radius:6px;--d-background:#fafafa;--d-foreground:#2e2e2e;--d-card:#fafafa;--d-card-foreground:#2e2e2e;--d-popover:#fafafa;--d-popover-foreground:#2e2e2e;--d-primary:#64c2d1;--d-primary-foreground:#1f1f1f;--d-secondary:#f5f5f5;--d-secondary-foreground:#2e2e2e;--d-muted:#e0e0e0;--d-muted-foreground:#7a7a7a;--d-accent:#e0e0e0;--d-accent-foreground:#2e2e2e;--d-destructive:#ec2842;--d-destructive-foreground:#85202d;--d-border:#e0e0e0;--d-input:#e0e0e0;--d-ring:#64c2d1;--d-chart-1:#64c2d1;--d-chart-2:#39f283;--d-chart-3:orange;--d-chart-4:orange;--d-chart-5:#eb576a;--d-sidebar:#f5f5f5;--d-sidebar-foreground:#2e2e2e;--d-sidebar-primary:#64c2d1;--d-sidebar-primary-foreground:#1f1f1f;--d-sidebar-accent:#e0e0e066;--d-sidebar-accent-foreground:#2e2e2e;--d-sidebar-border:#e0e0e0;--d-sidebar-ring:#64c2d1}.dark{--d-radius:6px;--d-background:#1f1f1f;--d-foreground:#e0e0e0;--d-card:#1f1f1f;--d-card-foreground:#e0e0e0;--d-popover:#1f1f1f;--d-popover-foreground:#e0e0e0;--d-primary:#64c2d1;--d-primary-foreground:#1f1f1f;--d-secondary:#2e2e2e;--d-secondary-foreground:#e0e0e0;--d-muted:#474747;--d-muted-foreground:#7a7a7a;--d-accent:#474747;--d-accent-foreground:#e0e0e0;--d-destructive:#85202d;--d-destructive-foreground:#e0e0e0;--d-border:#2e2e2e;--d-input:#2e2e2e;--d-ring:#64c2d1;--d-chart-1:#64c2d1;--d-chart-2:#39f283;--d-chart-3:orange;--d-chart-4:orange;--d-chart-5:#eb576a;--d-sidebar:#141414;--d-sidebar-foreground:#e0e0e0;--d-sidebar-primary:#64c2d1;--d-sidebar-primary-foreground:#1f1f1f;--d-sidebar-accent:#47474766;--d-sidebar-accent-foreground:#e0e0e0;--d-sidebar-border:#2e2e2e;--d-sidebar-ring:#64c2d1}.tangerine{--d-background:oklch(0.26 0.03 262.67);--d-foreground:oklch(0.92 0 0);--d-card:oklch(0.31 0.03 268.64);--d-card-foreground:oklch(0.92 0 0);--d-popover:oklch(0.29 0.02 268.4);--d-popover-foreground:oklch(0.92 0 0);--d-primary:oklch(0.64 0.17 36.44);--d-primary-foreground:oklch(1 0 0);--d-secondary:oklch(0.31 0.03 266.71);--d-secondary-foreground:oklch(0.92 0 0);--d-muted:oklch(0.31 0.03 266.71);--d-muted-foreground:oklch(0.72 0 0);--d-accent:oklch(0.34 0.06 267.59);--d-accent-foreground:oklch(0.88 0.06 254.13);--d-destructive:oklch(0.64 0.21 25.33);--d-destructive-foreground:oklch(1 0 0);--d-border:oklch(0.38 0.03 269.73);--d-input:oklch(0.38 0.03 269.73);--d-ring:oklch(0.64 0.17 36.44);--d-chart-1:oklch(0.72 0.06 248.68);--d-chart-2:oklch(0.77 0.09 34.19);--d-chart-3:oklch(0.58 0.08 254.16);--d-chart-4:oklch(0.5 0.08 259.49);--d-chart-5:oklch(0.42 0.1 264.03);--d-sidebar:oklch(0.31 0.03 267.74);--d-sidebar-foreground:oklch(0.92 0 0);--d-sidebar-primary:oklch(0.64 0.17 36.44);--d-sidebar-primary-foreground:oklch(1 0 0);--d-sidebar-accent:oklch(0.34 0.06 267.59);--d-sidebar-accent-foreground:oklch(0.88 0.06 254.13);--d-sidebar-border:oklch(0.38 0.03 269.73);--d-sidebar-ring:oklch(0.64 0.17 36.44);--d-font-sans:Inter,sans-serif;--d-font-serif:Source Serif 4,serif;--d-font-mono:JetBrains Mono,monospace;--d-radius:0.75rem;--d-shadow-2xs:0px 1px 3px 0px #0000000d;--d-shadow-xs:0px 1px 3px 0px #0000000d;--d-shadow-sm:0px 1px 3px 0px #0000001a,0px 1px 2px -1px #0000001a;--d-shadow:0px 1px 3px 0px #0000001a,0px 1px 2px -1px #0000001a;--d-shadow-md:0px 1px 3px 0px #0000001a,0px 2px 4px -1px #0000001a;--d-shadow-lg:0px 1px 3px 0px #0000001a,0px 4px 6px -1px #0000001a;--d-shadow-xl:0px 1px 3px 0px #0000001a,0px 8px 10px -1px #0000001a;--d-shadow-2xl:0px 1px 3px 0px #00000040}.claymorphism{--d-background:#1e1b18;--d-foreground:#e2e8f0;--d-card:#2c2825;--d-card-foreground:#e2e8f0;--d-popover:#2c2825;--d-popover-foreground:#e2e8f0;--d-primary:#818cf8;--d-primary-foreground:#1e1b18;--d-secondary:#3a3633;--d-secondary-foreground:#d1d5db;--d-muted:#2c2825;--d-muted-foreground:#9ca3af;--d-accent:#484441;--d-accent-foreground:#d1d5db;--d-destructive:#ef4444;--d-destructive-foreground:#1e1b18;--d-border:#3a3633;--d-input:#3a3633;--d-ring:#818cf8;--d-chart-1:#818cf8;--d-chart-2:#6366f1;--d-chart-3:#4f46e5;--d-chart-4:#4338ca;--d-chart-5:#3730a3;--d-sidebar:#3a3633;--d-sidebar-foreground:#e2e8f0;--d-sidebar-primary:#818cf8;--d-sidebar-primary-foreground:#1e1b18;--d-sidebar-accent:#484441;--d-sidebar-accent-foreground:#d1d5db;--d-sidebar-border:#3a3633;--d-sidebar-ring:#818cf8;--d-font-sans:Plus Jakarta Sans,sans-serif;--d-font-serif:Lora,serif;--d-font-mono:Roboto Mono,monospace;--d-radius:1.25rem;--d-shadow-2xs:2px 2px 10px 4px #00000017;--d-shadow-xs:2px 2px 10px 4px #00000017;--d-shadow-sm:2px 2px 10px 4px #0000002e,2px 1px 2px 3px #0000002e;--d-shadow:2px 2px 10px 4px #0000002e,2px 1px 2px 3px #0000002e;--d-shadow-md:2px 2px 10px 4px #0000002e,2px 2px 4px 3px #0000002e;--d-shadow-lg:2px 2px 10px 4px #0000002e,2px 4px 6px 3px #0000002e;--d-shadow-xl:2px 2px 10px 4px #0000002e,2px 8px 10px 3px #0000002e;--d-shadow-2xl:2px 2px 10px 4px #00000073}@theme inline{--radius-d-sm:calc(var(--d-radius) - 4px);--radius-d-md:calc(var(--d-radius) - 2px);--radius-d-lg:var(--d-radius);--radius-d-xl:calc(var(--d-radius) + 4px);--color-d-background:var(--d-background);--color-d-foreground:var(--d-foreground);--color-d-card:var(--d-card);--color-d-card-foreground:var(--d-card-foreground);--color-d-popover:var(--d-popover);--color-d-popover-foreground:var(--d-popover-foreground);--color-d-primary:var(--d-primary);--color-d-primary-foreground:var(--d-primary-foreground);--color-d-secondary:var(--d-secondary);--color-d-secondary-foreground:var(--d-secondary-foreground);--color-d-muted:var(--d-muted);--color-d-muted-foreground:var(--d-muted-foreground);--color-d-accent:var(--d-accent);--color-d-accent-foreground:var(--d-accent-foreground);--color-d-destructive:var(--d-destructive);--color-d-border:var(--d-border);--color-d-input:var(--d-input);--color-d-ring:var(--d-ring);--color-d-chart-1:var(--d-chart-1);--color-d-chart-2:var(--d-chart-2);--color-d-chart-3:var(--d-chart-3);--color-d-chart-4:var(--d-chart-4);--color-d-chart-5:var(--d-chart-5);--color-d-sidebar:var(--d-sidebar);--color-d-sidebar-foreground:var(--d-sidebar-foreground);--color-d-sidebar-primary:var(--d-sidebar-primary);--color-d-sidebar-primary-foreground:var(--d-sidebar-primary-foreground);--color-d-sidebar-accent:var(--d-sidebar-accent);--color-d-sidebar-accent-foreground:var(--d-sidebar-accent-foreground);--color-d-sidebar-border:var(--d-sidebar-border);--color-d-sidebar-ring:var(--d-sidebar-ring)}*{border-color:var(--d-border);outline-color:color-mix(in oklab,var(--d-ring) 50%,#0000)}body{background-color:var(--d-background);color:var(--d-foreground)}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "laif-ds",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.33",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.es.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -76,6 +76,8 @@
|
|
|
76
76
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
77
77
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
78
78
|
"eslint-plugin-storybook": "^0.12.0",
|
|
79
|
+
"prettier": "^3.5.3",
|
|
80
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
79
81
|
"storybook": "^8.6.12",
|
|
80
82
|
"storybook-addon-themes": "^6.1.0",
|
|
81
83
|
"tailwindcss-v3": "npm:tailwindcss@3.4.1",
|