laif-ds 0.2.55 → 0.2.57
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/_virtual/index3.js +5 -5
- package/dist/_virtual/index5.js +5 -5
- package/dist/{lib → components}/design-tokens.js +2 -2
- package/dist/components/ui/app-kanban.js +1 -1
- package/dist/components/ui/app-radio-group.js +1 -1
- package/dist/components/ui/app-select.js +1 -1
- package/dist/components/ui/async-select.js +154 -142
- package/dist/components/ui/badge.js +1 -1
- package/dist/components/ui/button.js +19 -19
- package/dist/components/ui/card.js +1 -1
- package/dist/components/ui/checkbox.js +1 -1
- package/dist/components/ui/date-picker.js +2 -8
- package/dist/components/ui/dialog.js +1 -1
- package/dist/components/ui/input.js +1 -1
- package/dist/components/{kanban.js → ui/kanban.js} +7 -7
- package/dist/components/ui/popover.js +1 -1
- package/dist/components/ui/radio-group.js +1 -1
- package/dist/components/ui/select.js +1 -1
- package/dist/components/ui/sheet.js +1 -1
- package/dist/components/ui/switch.js +1 -1
- package/dist/components/ui/tabs.js +1 -1
- package/dist/components/ui/textarea.js +1 -1
- package/dist/node_modules/eventemitter3/index.js +1 -1
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +1 -1
- package/dist/node_modules/recharts/es6/util/Events.js +1 -1
- package/dist/styles.v3.css +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as f, jsx as t } from "react/jsx-runtime";
|
|
3
|
+
import { designTokens as o } from "../design-tokens.js";
|
|
3
4
|
import { Calendar as T } from "./calendar.js";
|
|
4
5
|
import { Icon as E } from "./icon.js";
|
|
5
6
|
import { Label as L } from "./label.js";
|
|
6
7
|
import { Popover as q, PopoverTrigger as A, PopoverContent as B } from "./popover.js";
|
|
7
|
-
import { designTokens as o } from "../../lib/design-tokens.js";
|
|
8
8
|
import { cn as P } from "../../lib/utils.js";
|
|
9
9
|
import * as c from "react";
|
|
10
10
|
import { useEffect as F } from "react";
|
|
@@ -71,13 +71,7 @@ function v({
|
|
|
71
71
|
onClick: s ? void 0 : () => {
|
|
72
72
|
},
|
|
73
73
|
children: [
|
|
74
|
-
/* @__PURE__ */ t(
|
|
75
|
-
E,
|
|
76
|
-
{
|
|
77
|
-
name: "Calendar",
|
|
78
|
-
size: m === "lg" ? "sm" : "xs"
|
|
79
|
-
}
|
|
80
|
-
),
|
|
74
|
+
/* @__PURE__ */ t(E, { name: "Calendar", size: m === "lg" ? "sm" : "xs" }),
|
|
81
75
|
/* @__PURE__ */ t("div", { children: e && typeof e == "object" && "from" in e ? /* @__PURE__ */ f("span", { children: [
|
|
82
76
|
e.from && d(e.from, a),
|
|
83
77
|
e.from && e.to && " - ",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as a, jsxs as s } from "react/jsx-runtime";
|
|
3
3
|
import { Root as u, Content as m, Close as r, Description as f, Title as p, Trigger as x, Portal as v, Overlay as D } from "../../node_modules/@radix-ui/react-dialog/dist/index.js";
|
|
4
|
-
import { designTokens as l } from "
|
|
4
|
+
import { designTokens as l } from "../design-tokens.js";
|
|
5
5
|
import { cn as o } from "../../lib/utils.js";
|
|
6
6
|
import b from "../../node_modules/lucide-react/dist/esm/icons/x.js";
|
|
7
7
|
function j({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as f, jsx as l } from "react/jsx-runtime";
|
|
3
|
+
import { designTokens as o } from "../design-tokens.js";
|
|
3
4
|
import { Label as se } from "./label.js";
|
|
4
|
-
import { designTokens as o } from "../../lib/design-tokens.js";
|
|
5
5
|
import { cn as n } from "../../lib/utils.js";
|
|
6
6
|
import { cva as j } from "../../node_modules/class-variance-authority/dist/index.js";
|
|
7
7
|
import * as a from "react";
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import { jsx as d, jsxs as D, Fragment as A } from "react/jsx-runtime";
|
|
3
3
|
import { useId as E, useRef as R, useCallback as b, useMemo as M, createContext as $, useState as y, useEffect as O, useContext as S } from "react";
|
|
4
4
|
import { createPortal as I } from "react-dom";
|
|
5
|
-
import { Button as P } from "./
|
|
6
|
-
import { Popover as z, PopoverTrigger as L, PopoverContent as _ } from "./
|
|
7
|
-
import { TooltipProvider as j } from "./
|
|
8
|
-
import { Typo as k } from "./
|
|
9
|
-
import { cn as m } from "
|
|
10
|
-
import F from "
|
|
11
|
-
import H from "
|
|
5
|
+
import { Button as P } from "./button.js";
|
|
6
|
+
import { Popover as z, PopoverTrigger as L, PopoverContent as _ } from "./popover.js";
|
|
7
|
+
import { TooltipProvider as j } from "./tooltip.js";
|
|
8
|
+
import { Typo as k } from "./typo.js";
|
|
9
|
+
import { cn as m } from "../../lib/utils.js";
|
|
10
|
+
import F from "../../node_modules/lucide-react/dist/esm/icons/pencil.js";
|
|
11
|
+
import H from "../../node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.js";
|
|
12
12
|
const T = $(void 0);
|
|
13
13
|
function J(e) {
|
|
14
14
|
const r = S(T);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as t } from "react/jsx-runtime";
|
|
3
3
|
import { Root as d, Portal as i, Content as s, Trigger as p } from "../../node_modules/@radix-ui/react-popover/dist/index.js";
|
|
4
|
-
import { designTokens as m } from "
|
|
4
|
+
import { designTokens as m } from "../design-tokens.js";
|
|
5
5
|
import { cn as f } from "../../lib/utils.js";
|
|
6
6
|
function v({
|
|
7
7
|
...o
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as t } from "react/jsx-runtime";
|
|
3
3
|
import { Root as d, Item as s, Indicator as n } from "../../node_modules/@radix-ui/react-radio-group/dist/index.js";
|
|
4
|
-
import { designTokens as o } from "
|
|
4
|
+
import { designTokens as o } from "../design-tokens.js";
|
|
5
5
|
import { cn as a } from "../../lib/utils.js";
|
|
6
6
|
import l from "../../node_modules/lucide-react/dist/esm/icons/circle.js";
|
|
7
7
|
function g({
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { jsxs as c, jsx as e } from "react/jsx-runtime";
|
|
3
3
|
import { Root as f, Portal as g, Content as x, Viewport as h, Group as v, Item as b, ItemIndicator as y, ItemText as S, Label as z, Separator as w, Trigger as N, Icon as C, Value as I, ScrollUpButton as _, ScrollDownButton as j } from "../../node_modules/@radix-ui/react-select/dist/index.js";
|
|
4
4
|
import * as u from "react";
|
|
5
|
+
import { designTokens as r } from "../design-tokens.js";
|
|
5
6
|
import { Label as k } from "./label.js";
|
|
6
|
-
import { designTokens as r } from "../../lib/design-tokens.js";
|
|
7
7
|
import { cn as o } from "../../lib/utils.js";
|
|
8
8
|
import B from "../../node_modules/lucide-react/dist/esm/icons/check.js";
|
|
9
9
|
import p from "../../node_modules/lucide-react/dist/esm/icons/chevron-down.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as o, jsxs as s } from "react/jsx-runtime";
|
|
3
3
|
import { Root as i, Content as l, Close as c, Description as f, Title as m, Trigger as u, Portal as h, Overlay as p } from "../../node_modules/@radix-ui/react-dialog/dist/index.js";
|
|
4
|
-
import { designTokens as n } from "
|
|
4
|
+
import { designTokens as n } from "../design-tokens.js";
|
|
5
5
|
import { cn as a } from "../../lib/utils.js";
|
|
6
6
|
import b from "../../node_modules/lucide-react/dist/esm/icons/x.js";
|
|
7
7
|
function T({ ...t }) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as t } from "react/jsx-runtime";
|
|
3
3
|
import { Root as a, Thumb as s } from "../../node_modules/@radix-ui/react-switch/dist/index.js";
|
|
4
|
-
import { designTokens as e } from "
|
|
4
|
+
import { designTokens as e } from "../design-tokens.js";
|
|
5
5
|
import { cn as r } from "../../lib/utils.js";
|
|
6
6
|
function l({
|
|
7
7
|
className: n,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as s } from "react/jsx-runtime";
|
|
3
3
|
import { Root as o, Content as r, List as i, Trigger as c } from "../../node_modules/@radix-ui/react-tabs/dist/index.js";
|
|
4
|
-
import { designTokens as a } from "
|
|
4
|
+
import { designTokens as a } from "../design-tokens.js";
|
|
5
5
|
import { cn as n } from "../../lib/utils.js";
|
|
6
6
|
function u({
|
|
7
7
|
className: t,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as c, jsx as r } from "react/jsx-runtime";
|
|
3
|
+
import { designTokens as t } from "../design-tokens.js";
|
|
3
4
|
import { Label as m } from "./label.js";
|
|
4
|
-
import { designTokens as t } from "../../lib/design-tokens.js";
|
|
5
5
|
import { cn as s } from "../../lib/utils.js";
|
|
6
6
|
function b({
|
|
7
7
|
wrpClassName: o,
|
|
@@ -3,7 +3,7 @@ import { stringify as w } from "../../comma-separated-tokens/index.js";
|
|
|
3
3
|
import { ok as u } from "../../devlop/lib/default.js";
|
|
4
4
|
import { svg as m, html as C } from "../../property-information/index.js";
|
|
5
5
|
import { stringify as N } from "../../space-separated-tokens/index.js";
|
|
6
|
-
import S from "../../../_virtual/
|
|
6
|
+
import S from "../../../_virtual/index5.js";
|
|
7
7
|
import { whitespace as j } from "../../hast-util-whitespace/lib/index.js";
|
|
8
8
|
import { name as x } from "../../estree-util-is-identifier-name/lib/index.js";
|
|
9
9
|
import { VFileMessage as h } from "../../vfile-message/lib/index.js";
|