laif-ds 0.1.21 → 0.1.22

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 (48) hide show
  1. package/README.md +84 -3
  2. package/dist/_virtual/index.js +2 -7
  3. package/dist/_virtual/index2.js +2 -5
  4. package/dist/_virtual/index3.js +7 -2
  5. package/dist/_virtual/index4.js +5 -2
  6. package/dist/_virtual/index5.js +5 -2
  7. package/dist/_virtual/index6.js +2 -5
  8. package/dist/components/ui/app-sidebar.js +113 -98
  9. package/dist/components/ui/data-table.js +26 -26
  10. package/dist/components/ui/date-picker.js +24 -24
  11. package/dist/components/ui/gantt/components/Chart/Chart.js +1 -1
  12. package/dist/components/ui/multiple-selector.js +80 -79
  13. package/dist/components/ui/sidebar.js +1 -1
  14. package/dist/index.d.ts +2 -9
  15. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +1 -1
  16. package/dist/node_modules/react-is/index.js +1 -1
  17. package/dist/node_modules/recharts/es6/util/ReactUtils.js +1 -1
  18. package/dist/node_modules/style-to-object/cjs/index.js +1 -1
  19. package/dist/node_modules/unified/lib/index.js +1 -1
  20. package/dist/styles.css +1 -1
  21. package/dist/styles.v3.css +1 -1
  22. package/package.json +1 -1
  23. package/dist/dist/components/ui/checkbox.js +0 -32
  24. package/dist/dist/components/ui/scroll-area.js +0 -61
  25. package/dist/dist/components/ui/table.js +0 -87
  26. package/dist/dist/lib/utils.js +0 -9
  27. package/dist/dist/node_modules/@radix-ui/number/dist/index.js +0 -7
  28. package/dist/dist/node_modules/@radix-ui/primitive/dist/index.js +0 -10
  29. package/dist/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +0 -136
  30. package/dist/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +0 -30
  31. package/dist/dist/node_modules/@radix-ui/react-context/dist/index.js +0 -56
  32. package/dist/dist/node_modules/@radix-ui/react-direction/dist/index.js +0 -11
  33. package/dist/dist/node_modules/@radix-ui/react-presence/dist/index.js +0 -72
  34. package/dist/dist/node_modules/@radix-ui/react-primitive/dist/index.js +0 -32
  35. package/dist/dist/node_modules/@radix-ui/react-scroll-area/dist/index.js +0 -534
  36. package/dist/dist/node_modules/@radix-ui/react-slot/dist/index.js +0 -50
  37. package/dist/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +0 -14
  38. package/dist/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +0 -33
  39. package/dist/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +0 -7
  40. package/dist/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +0 -9
  41. package/dist/dist/node_modules/@radix-ui/react-use-size/dist/index.js +0 -28
  42. package/dist/dist/node_modules/clsx/dist/clsx.js +0 -18
  43. package/dist/dist/node_modules/lucide-react/dist/esm/Icon.js +0 -41
  44. package/dist/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +0 -28
  45. package/dist/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +0 -21
  46. package/dist/dist/node_modules/lucide-react/dist/esm/icons/check.js +0 -13
  47. package/dist/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -20
  48. package/dist/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +0 -2732
@@ -1,18 +0,0 @@
1
- "use client";
2
- function o(e) {
3
- var f, n, t = "";
4
- if (typeof e == "string" || typeof e == "number") t += e;
5
- else if (typeof e == "object") if (Array.isArray(e)) {
6
- var a = e.length;
7
- for (f = 0; f < a; f++) e[f] && (n = o(e[f])) && (t && (t += " "), t += n);
8
- } else for (n in e) e[n] && (t && (t += " "), t += n);
9
- return t;
10
- }
11
- function s() {
12
- for (var e, f, n = 0, t = "", a = arguments.length; n < a; n++) (e = arguments[n]) && (f = o(e)) && (t && (t += " "), t += f);
13
- return t;
14
- }
15
- export {
16
- s as clsx,
17
- s as default
18
- };
@@ -1,41 +0,0 @@
1
- "use client";
2
- import { forwardRef as h, createElement as t } from "react";
3
- import n from "./defaultAttributes.js";
4
- import { mergeClasses as u } from "./shared/src/utils.js";
5
- /**
6
- * @license lucide-react v0.488.0 - ISC
7
- *
8
- * This source code is licensed under the ISC license.
9
- * See the LICENSE file in the root directory of this source tree.
10
- */
11
- const b = h(
12
- ({
13
- color: s = "currentColor",
14
- size: e = 24,
15
- strokeWidth: o = 2,
16
- absoluteStrokeWidth: a,
17
- className: i = "",
18
- children: r,
19
- iconNode: m,
20
- ...l
21
- }, c) => t(
22
- "svg",
23
- {
24
- ref: c,
25
- ...n,
26
- width: e,
27
- height: e,
28
- stroke: s,
29
- strokeWidth: a ? Number(o) * 24 / Number(e) : o,
30
- className: u("lucide", i),
31
- ...l
32
- },
33
- [
34
- ...m.map(([d, f]) => t(d, f)),
35
- ...Array.isArray(r) ? r : [r]
36
- ]
37
- )
38
- );
39
- export {
40
- b as default
41
- };
@@ -1,28 +0,0 @@
1
- "use client";
2
- import { forwardRef as m, createElement as l } from "react";
3
- import { mergeClasses as i, toKebabCase as f, toPascalCase as s } from "./shared/src/utils.js";
4
- import n from "./Icon.js";
5
- /**
6
- * @license lucide-react v0.488.0 - ISC
7
- *
8
- * This source code is licensed under the ISC license.
9
- * See the LICENSE file in the root directory of this source tree.
10
- */
11
- const N = (e, o) => {
12
- const a = m(
13
- ({ className: r, ...t }, c) => l(n, {
14
- ref: c,
15
- iconNode: o,
16
- className: i(
17
- `lucide-${f(s(e))}`,
18
- `lucide-${e}`,
19
- r
20
- ),
21
- ...t
22
- })
23
- );
24
- return a.displayName = s(e), a;
25
- };
26
- export {
27
- N as default
28
- };
@@ -1,21 +0,0 @@
1
- "use client";
2
- /**
3
- * @license lucide-react v0.488.0 - ISC
4
- *
5
- * This source code is licensed under the ISC license.
6
- * See the LICENSE file in the root directory of this source tree.
7
- */
8
- var e = {
9
- xmlns: "http://www.w3.org/2000/svg",
10
- width: 24,
11
- height: 24,
12
- viewBox: "0 0 24 24",
13
- fill: "none",
14
- stroke: "currentColor",
15
- strokeWidth: 2,
16
- strokeLinecap: "round",
17
- strokeLinejoin: "round"
18
- };
19
- export {
20
- e as default
21
- };
@@ -1,13 +0,0 @@
1
- "use client";
2
- import e from "../createLucideIcon.js";
3
- /**
4
- * @license lucide-react v0.488.0 - ISC
5
- *
6
- * This source code is licensed under the ISC license.
7
- * See the LICENSE file in the root directory of this source tree.
8
- */
9
- const t = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]], o = e("check", t);
10
- export {
11
- t as __iconNode,
12
- o as default
13
- };
@@ -1,20 +0,0 @@
1
- "use client";
2
- /**
3
- * @license lucide-react v0.488.0 - ISC
4
- *
5
- * This source code is licensed under the ISC license.
6
- * See the LICENSE file in the root directory of this source tree.
7
- */
8
- const o = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), r = (e) => e.replace(
9
- /^([A-Z])|[\s-_]+(\w)/g,
10
- (s, t, a) => a ? a.toUpperCase() : t.toLowerCase()
11
- ), c = (e) => {
12
- const s = r(e);
13
- return s.charAt(0).toUpperCase() + s.slice(1);
14
- }, C = (...e) => e.filter((s, t, a) => !!s && s.trim() !== "" && a.indexOf(s) === t).join(" ").trim();
15
- export {
16
- C as mergeClasses,
17
- r as toCamelCase,
18
- o as toKebabCase,
19
- c as toPascalCase
20
- };