myshell-react-lib 0.1.80 → 0.2.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.js CHANGED
@@ -4077,40 +4077,8 @@ var Icon = React.forwardRef(function(props, ref) {
4077
4077
  "rotate",
4078
4078
  "className"
4079
4079
  ]);
4080
- if (!component) {
4081
- return /* @__PURE__ */ jsx("span", _object_spread_props(_object_spread({
4082
- ref: ref
4083
- }, passProps), {
4084
- className: cn(iconVariants({
4085
- size: size,
4086
- color: color,
4087
- rotate: rotate
4088
- }), className),
4089
- children: children
4090
- }));
4091
- }
4092
- if (typeof component === "function") {
4093
- var isReactComponent = "displayName" in component || component.name && /^[A-Z]/.test(component.name);
4094
- if (!isReactComponent) {
4095
- try {
4096
- var iconElement = component();
4097
- return /* @__PURE__ */ jsx("span", _object_spread_props(_object_spread({
4098
- ref: ref
4099
- }, passProps), {
4100
- className: cn(iconVariants({
4101
- size: size,
4102
- color: color,
4103
- rotate: rotate
4104
- }), className),
4105
- children: iconElement || children
4106
- }));
4107
- } catch (error) {
4108
- console.error("Error rendering icon component as a function", error);
4109
- }
4110
- }
4111
- }
4112
- var Component = component;
4113
- return /* @__PURE__ */ jsx(Component, _object_spread_props(_object_spread({
4080
+ var Com = component || "span";
4081
+ return /* @__PURE__ */ jsx(Com, _object_spread_props(_object_spread({
4114
4082
  ref: ref
4115
4083
  }, passProps), {
4116
4084
  className: cn(iconVariants({
@@ -5246,7 +5214,7 @@ AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
5246
5214
  import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio";
5247
5215
  var AspectRatio = AspectRatioPrimitive.Root;
5248
5216
  // src/components/audio-player.tsx
5249
- import PlayIcon from "@heroicons/react/20/solid/esm/PlayIcon";
5217
+ import { PlayIcon } from "lucide-react";
5250
5218
  import { useAudio } from "react-use";
5251
5219
  // src/common/hooks/useAudioPlayer.tsx
5252
5220
  import { forwardRef as forwardRef7, useCallback, useImperativeHandle, useLayoutEffect, useRef } from "react";
@@ -7470,11 +7438,7 @@ var MenubarShortcut = function(_param) {
7470
7438
  };
7471
7439
  MenubarShortcut.displayname = "MenubarShortcut";
7472
7440
  // src/components/modal.tsx
7473
- import CheckCircleIcon from "@heroicons/react/24/outline/esm/CheckCircleIcon";
7474
- import ExclamationTriangleIcon from "@heroicons/react/24/outline/esm/ExclamationTriangleIcon";
7475
- import InformationCircleIcon from "@heroicons/react/24/outline/esm/InformationCircleIcon";
7476
- import XCircleIcon from "@heroicons/react/24/outline/esm/XCircleIcon";
7477
- import XMarkIcon from "@heroicons/react/24/outline/esm/XMarkIcon";
7441
+ import { CircleCheckIcon, CircleXIcon, InfoIcon, XIcon, TriangleAlertIcon } from "lucide-react";
7478
7442
  import * as DialogPrimitive2 from "@radix-ui/react-dialog";
7479
7443
  // node_modules/@radix-ui/react-focus-scope/dist/index.mjs
7480
7444
  import * as React26 from "react";
@@ -7988,7 +7952,7 @@ var Modal = function(_param) {
7988
7952
  },
7989
7953
  children: [
7990
7954
  /* @__PURE__ */ jsx34(IconButton, {
7991
- icon: XMarkIcon,
7955
+ icon: XIcon,
7992
7956
  size: "md",
7993
7957
  variant: "plain",
7994
7958
  color: "default",
@@ -8028,19 +7992,19 @@ var Modal = function(_param) {
8028
7992
  var renderIcon3 = function(state2) {
8029
7993
  switch(state2){
8030
7994
  case "info":
8031
- return /* @__PURE__ */ jsx34(InformationCircleIcon, {
7995
+ return /* @__PURE__ */ jsx34(InfoIcon, {
8032
7996
  className: "text-cc-Icon-Featured-icon-fg-Info w-6 h-6"
8033
7997
  });
8034
7998
  case "success":
8035
- return /* @__PURE__ */ jsx34(CheckCircleIcon, {
7999
+ return /* @__PURE__ */ jsx34(CircleCheckIcon, {
8036
8000
  className: "text-cc-Icon-Featured-icon-fg-Success w-6 h-6"
8037
8001
  });
8038
8002
  case "warning":
8039
- return /* @__PURE__ */ jsx34(ExclamationTriangleIcon, {
8003
+ return /* @__PURE__ */ jsx34(TriangleAlertIcon, {
8040
8004
  className: "text-cc-Icon-Featured-icon-fg-Warning w-6 h-6"
8041
8005
  });
8042
8006
  case "error":
8043
- return /* @__PURE__ */ jsx34(XCircleIcon, {
8007
+ return /* @__PURE__ */ jsx34(CircleXIcon, {
8044
8008
  className: "text-cc-Icon-Featured-icon-fg-Error w-6 h-6"
8045
8009
  });
8046
8010
  }
@@ -8136,7 +8100,7 @@ var Modal = function(_param) {
8136
8100
  className: cn("absolute right-4 top-4", isNotification && "top-5", closeClassName),
8137
8101
  children: [
8138
8102
  /* @__PURE__ */ jsx34(IconButton, {
8139
- icon: XMarkIcon,
8103
+ icon: XIcon,
8140
8104
  size: "md",
8141
8105
  variant: "plain",
8142
8106
  color: "gray",
@@ -8202,8 +8166,7 @@ function ModalBody(_param) {
8202
8166
  }
8203
8167
  ModalBody.displayName = "ModalBody";
8204
8168
  // src/components/search-bar.tsx
8205
- import MagnifyingGlassIcon from "@heroicons/react/24/outline/esm/MagnifyingGlassIcon";
8206
- import XMarkIcon2 from "@heroicons/react/24/outline/esm/XMarkIcon";
8169
+ import { XIcon as XIcon2, SearchIcon } from "lucide-react";
8207
8170
  import { cva as cva13 } from "class-variance-authority";
8208
8171
  import * as React28 from "react";
8209
8172
  import { useEffect as useEffect9 } from "react";
@@ -8245,7 +8208,7 @@ function SearchBar(_param) {
8245
8208
  }), className),
8246
8209
  children: [
8247
8210
  /* @__PURE__ */ jsx35(Icon, {
8248
- component: MagnifyingGlassIcon,
8211
+ component: SearchIcon,
8249
8212
  size: "lg",
8250
8213
  className: "absolute top-1/2 -translate-y-1/2 left-3 z-10 text-Colors-Foreground-Subtlest cursor-pointer",
8251
8214
  onClick: function() {
@@ -8281,7 +8244,7 @@ function SearchBar(_param) {
8281
8244
  },
8282
8245
  size: "sm",
8283
8246
  variant: "plain",
8284
- icon: XMarkIcon2
8247
+ icon: XIcon2
8285
8248
  })
8286
8249
  ]
8287
8250
  });
@@ -10955,9 +10918,8 @@ function TopNavigationBar(param) {
10955
10918
  });
10956
10919
  }
10957
10920
  // src/components/select.tsx
10958
- import { CheckIcon as CheckIcon2 } from "@heroicons/react/24/outline";
10959
10921
  import * as SelectPrimitive from "@radix-ui/react-select";
10960
- import { ChevronDown as ChevronDown2, ChevronUp } from "lucide-react";
10922
+ import { ChevronDown as ChevronDown2, ChevronUp, CheckIcon as CheckIcon2 } from "lucide-react";
10961
10923
  import * as React33 from "react";
10962
10924
  import { Fragment as Fragment8, jsx as jsx45, jsxs as jsxs27 } from "react/jsx-runtime";
10963
10925
  var Select = React33.forwardRef(function(_param, ref) {
@@ -12006,7 +11968,7 @@ var SliderSingle = React36.forwardRef(function(_param, ref) {
12006
11968
  SliderSingle.displayName = "SliderSingle";
12007
11969
  // src/components/spinner.tsx
12008
11970
  import { cva as cva15 } from "class-variance-authority";
12009
- import { Loader2 as Loader23 } from "lucide-react";
11971
+ import { LoaderCircleIcon } from "lucide-react";
12010
11972
  import { jsx as jsx50 } from "react/jsx-runtime";
12011
11973
  var spinnerVariants = cva15("animate-spin", {
12012
11974
  variants: {
@@ -12039,7 +12001,7 @@ var spinnerVariants = cva15("animate-spin", {
12039
12001
  });
12040
12002
  function Spinner(props) {
12041
12003
  var size = props.size, speed = props.speed, color = props.color, className = props.className;
12042
- return /* @__PURE__ */ jsx50(Loader23, {
12004
+ return /* @__PURE__ */ jsx50(LoaderCircleIcon, {
12043
12005
  className: cn(spinnerVariants({
12044
12006
  size: size,
12045
12007
  speed: speed,
@@ -12651,7 +12613,7 @@ function Chips(props) {
12651
12613
  }
12652
12614
  // src/components/button/link-button.tsx
12653
12615
  import { Slot as Slot5 } from "@radix-ui/react-slot";
12654
- import { Loader2 as Loader24 } from "lucide-react";
12616
+ import { Loader2 as Loader23 } from "lucide-react";
12655
12617
  import * as React42 from "react";
12656
12618
  import { Fragment as Fragment11, jsx as jsx57, jsxs as jsxs35 } from "react/jsx-runtime";
12657
12619
  var LinkButton = React42.forwardRef(function(_param, ref) {
@@ -12689,7 +12651,7 @@ var LinkButton = React42.forwardRef(function(_param, ref) {
12689
12651
  children: [
12690
12652
  loading && /* @__PURE__ */ jsx57("span", {
12691
12653
  className: "absolute left-1/2 top-1/2 flex -translate-x-1/2 -translate-y-1/2 items-center justify-center",
12692
- children: /* @__PURE__ */ jsx57(Loader24, {
12654
+ children: /* @__PURE__ */ jsx57(Loader23, {
12693
12655
  className: cn(iconVariants2({
12694
12656
  variant: "link",
12695
12657
  size: size
@@ -12855,7 +12817,7 @@ var NoPageState = function(args) {
12855
12817
  import * as ToastPrimitives from "@radix-ui/react-toast";
12856
12818
  import { cva as cva20 } from "class-variance-authority";
12857
12819
  import * as React43 from "react";
12858
- import XMarkIcon3 from "@heroicons/react/24/outline/esm/XMarkIcon";
12820
+ import { XIcon as XIcon3 } from "lucide-react";
12859
12821
  import { jsx as jsx59 } from "react/jsx-runtime";
12860
12822
  var ToastProvider = ToastPrimitives.Provider;
12861
12823
  var viewportPositionVariants = cva20("fixed z-[1000001] flex max-h-screen w-max-content p-0 gap-2", {
@@ -12947,7 +12909,7 @@ var ToastClose = React43.forwardRef(function(_param, ref) {
12947
12909
  className: cn("absolute right-4 top-4 rounded-sm p-1 text-slate-950/50 transition-opacity hover:text-slate-950 outline-none focus:outline-none focus:ring-2 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600 dark:text-slate-50/50 dark:hover:text-slate-50", className),
12948
12910
  "toast-close": ""
12949
12911
  }, props), {
12950
- children: /* @__PURE__ */ jsx59(XMarkIcon3, {
12912
+ children: /* @__PURE__ */ jsx59(XIcon3, {
12951
12913
  className: "h-5 w-5"
12952
12914
  })
12953
12915
  }));
@@ -12973,10 +12935,6 @@ var ToastDescription = React43.forwardRef(function(_param, ref) {
12973
12935
  }, props));
12974
12936
  });
12975
12937
  ToastDescription.displayName = ToastPrimitives.Description.displayName;
12976
- // src/components/toast/toaster.tsx
12977
- import CheckCircleIcon2 from "@heroicons/react/24/outline/esm/CheckCircleIcon";
12978
- import InformationCircleIcon2 from "@heroicons/react/24/outline/esm/InformationCircleIcon";
12979
- import XCircleIcon2 from "@heroicons/react/24/outline/esm/XCircleIcon";
12980
12938
  // src/components/toast/use-toast.tsx
12981
12939
  import * as React44 from "react";
12982
12940
  import { jsx as jsx60, jsxs as jsxs37 } from "react/jsx-runtime";
@@ -13151,7 +13109,7 @@ function useToast() {
13151
13109
  }
13152
13110
  // src/components/toast/toaster.tsx
13153
13111
  import React45 from "react";
13154
- import { ExclamationTriangleIcon as ExclamationTriangleIcon2 } from "@heroicons/react/24/outline";
13112
+ import { CircleCheckIcon as CircleCheckIcon2, CircleXIcon as CircleXIcon2, InfoIcon as InfoIcon2, TriangleAlertIcon as TriangleAlertIcon2 } from "lucide-react";
13155
13113
  import { jsx as jsx61, jsxs as jsxs38 } from "react/jsx-runtime";
13156
13114
  function Toaster() {
13157
13115
  var _ref = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, _ref_position = _ref.position, position = _ref_position === void 0 ? "top-right" : _ref_position;
@@ -13189,19 +13147,19 @@ function Toaster() {
13189
13147
  var renderIcon3 = function(variant2) {
13190
13148
  switch(variant2){
13191
13149
  case "info":
13192
- return /* @__PURE__ */ jsx61(InformationCircleIcon2, {
13150
+ return /* @__PURE__ */ jsx61(InfoIcon2, {
13193
13151
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
13194
13152
  });
13195
13153
  case "success":
13196
- return /* @__PURE__ */ jsx61(CheckCircleIcon2, {
13154
+ return /* @__PURE__ */ jsx61(CircleCheckIcon2, {
13197
13155
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
13198
13156
  });
13199
13157
  case "warning":
13200
- return /* @__PURE__ */ jsx61(ExclamationTriangleIcon2, {
13158
+ return /* @__PURE__ */ jsx61(TriangleAlertIcon2, {
13201
13159
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
13202
13160
  });
13203
13161
  case "error":
13204
- return /* @__PURE__ */ jsx61(XCircleIcon2, {
13162
+ return /* @__PURE__ */ jsx61(CircleXIcon2, {
13205
13163
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
13206
13164
  });
13207
13165
  }
@@ -13444,12 +13402,8 @@ function Swiper(props) {
13444
13402
  });
13445
13403
  }
13446
13404
  // src/components/custom-notification.tsx
13447
- import XMarkIcon4 from "@heroicons/react/24/outline/esm/XMarkIcon";
13448
- import CheckCircleIcon3 from "@heroicons/react/24/solid/esm/CheckCircleIcon";
13449
- import ExclamationCircleIcon from "@heroicons/react/24/solid/esm/ExclamationCircleIcon";
13450
- import InformationCircleIcon3 from "@heroicons/react/24/solid/esm/InformationCircleIcon";
13451
- import XCircleIcon3 from "@heroicons/react/24/solid/esm/XCircleIcon";
13452
13405
  import { toast as toast2 } from "react-hot-toast";
13406
+ import { CircleAlertIcon, CircleCheckIcon as CircleCheckIcon3, CircleXIcon as CircleXIcon3, InfoIcon as InfoIcon3, XIcon as XIcon4 } from "lucide-react";
13453
13407
  import { Fragment as Fragment12, jsx as jsx63, jsxs as jsxs39 } from "react/jsx-runtime";
13454
13408
  function CustomNotification(param) {
13455
13409
  var tProps = param.tProps, customProps = param.customProps;
@@ -13467,16 +13421,16 @@ function CustomNotification(param) {
13467
13421
  !loading && type && /* @__PURE__ */ jsxs39("div", {
13468
13422
  className: "flex flex-shrink-0 items-center",
13469
13423
  children: [
13470
- type === "info" && /* @__PURE__ */ jsx63(InformationCircleIcon3, {
13424
+ type === "info" && /* @__PURE__ */ jsx63(InfoIcon3, {
13471
13425
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info"
13472
13426
  }),
13473
- type === "success" && /* @__PURE__ */ jsx63(CheckCircleIcon3, {
13427
+ type === "success" && /* @__PURE__ */ jsx63(CircleCheckIcon3, {
13474
13428
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success"
13475
13429
  }),
13476
- type === "warning" && /* @__PURE__ */ jsx63(ExclamationCircleIcon, {
13430
+ type === "warning" && /* @__PURE__ */ jsx63(CircleAlertIcon, {
13477
13431
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning"
13478
13432
  }),
13479
- type === "error" && /* @__PURE__ */ jsx63(XCircleIcon3, {
13433
+ type === "error" && /* @__PURE__ */ jsx63(CircleXIcon3, {
13480
13434
  className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error"
13481
13435
  })
13482
13436
  ]
@@ -13512,7 +13466,7 @@ function CustomNotification(param) {
13512
13466
  isClosable && /* @__PURE__ */ jsx63(IconButton, {
13513
13467
  size: "sm",
13514
13468
  variant: "plain",
13515
- icon: XMarkIcon4,
13469
+ icon: XIcon4,
13516
13470
  onClick: function() {
13517
13471
  return toast2.dismiss(id);
13518
13472
  },
@@ -13691,36 +13645,12 @@ var WindowIcon = React47.forwardRef(function(props, ref) {
13691
13645
  })
13692
13646
  }));
13693
13647
  });
13694
- // src/components/icons/outline/CheckCircleIcon.tsx
13648
+ // src/components/icons/outline/PencilSquareIcon.tsx
13695
13649
  import * as React48 from "react";
13696
- import { jsx as jsx67, jsxs as jsxs40 } from "react/jsx-runtime";
13697
- var CheckCircleIcon4 = React48.forwardRef(function(props, ref) {
13650
+ import { jsx as jsx67 } from "react/jsx-runtime";
13651
+ var PencilSquareIcon = React48.forwardRef(function(props, ref) {
13698
13652
  return /* @__PURE__ */ jsx67(Icon, _object_spread_props(_object_spread({}, props), {
13699
- children: /* @__PURE__ */ jsxs40("svg", {
13700
- ref: ref,
13701
- className: "w-full h-full",
13702
- viewBox: "0 0 24 24",
13703
- fill: "currentColor",
13704
- xmlns: "http://www.w3.org/2000/svg",
13705
- children: [
13706
- /* @__PURE__ */ jsx67("path", {
13707
- d: "M15.4359 9.1397C15.773 9.38046 15.8511 9.84887 15.6103 10.1859L11.8603 15.4359C11.7322 15.6153 11.5316 15.7293 11.3119 15.7474C11.0921 15.7656 10.8756 15.6862 10.7197 15.5303L8.46967 13.2803C8.17678 12.9874 8.17678 12.5126 8.46967 12.2197C8.76256 11.9268 9.23744 11.9268 9.53033 12.2197L11.1543 13.8436L14.3897 9.31407C14.6305 8.97701 15.0989 8.89894 15.4359 9.1397Z"
13708
- }),
13709
- /* @__PURE__ */ jsx67("path", {
13710
- fillRule: "evenodd",
13711
- clipRule: "evenodd",
13712
- d: "M2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75Z"
13713
- })
13714
- ]
13715
- })
13716
- }));
13717
- });
13718
- // src/components/icons/outline/PencilSquareIcon.tsx
13719
- import * as React49 from "react";
13720
- import { jsx as jsx68 } from "react/jsx-runtime";
13721
- var PencilSquareIcon = React49.forwardRef(function(props, ref) {
13722
- return /* @__PURE__ */ jsx68(Icon, _object_spread_props(_object_spread({}, props), {
13723
- children: /* @__PURE__ */ jsx68("svg", {
13653
+ children: /* @__PURE__ */ jsx67("svg", {
13724
13654
  ref: ref,
13725
13655
  className: "w-full h-full",
13726
13656
  xmlns: "http://www.w3.org/2000/svg",
@@ -13728,7 +13658,7 @@ var PencilSquareIcon = React49.forwardRef(function(props, ref) {
13728
13658
  viewBox: "0 0 24 24",
13729
13659
  strokeWidth: "1.5",
13730
13660
  stroke: "currentColor",
13731
- children: /* @__PURE__ */ jsx68("path", {
13661
+ children: /* @__PURE__ */ jsx67("path", {
13732
13662
  strokeLinecap: "round",
13733
13663
  strokeLinejoin: "round",
13734
13664
  d: "m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"
@@ -13737,35 +13667,35 @@ var PencilSquareIcon = React49.forwardRef(function(props, ref) {
13737
13667
  }));
13738
13668
  });
13739
13669
  // src/components/icons/outline/ConfigIcon.tsx
13740
- import * as React50 from "react";
13741
- import { jsx as jsx69, jsxs as jsxs41 } from "react/jsx-runtime";
13742
- var ConfigIcon = React50.forwardRef(function(props, ref) {
13743
- return /* @__PURE__ */ jsx69(Icon, _object_spread_props(_object_spread({}, props), {
13744
- children: /* @__PURE__ */ jsx69("svg", {
13670
+ import * as React49 from "react";
13671
+ import { jsx as jsx68, jsxs as jsxs40 } from "react/jsx-runtime";
13672
+ var ConfigIcon = React49.forwardRef(function(props, ref) {
13673
+ return /* @__PURE__ */ jsx68(Icon, _object_spread_props(_object_spread({}, props), {
13674
+ children: /* @__PURE__ */ jsx68("svg", {
13745
13675
  width: "18",
13746
13676
  height: "18",
13747
13677
  viewBox: "0 0 18 18",
13748
13678
  fill: "none",
13749
13679
  xmlns: "http://www.w3.org/2000/svg",
13750
13680
  className: "cursor-pointer",
13751
- children: /* @__PURE__ */ jsx69("g", {
13681
+ children: /* @__PURE__ */ jsx68("g", {
13752
13682
  id: "wrapper",
13753
- children: /* @__PURE__ */ jsxs41("g", {
13683
+ children: /* @__PURE__ */ jsxs40("g", {
13754
13684
  id: "Union",
13755
13685
  children: [
13756
- /* @__PURE__ */ jsx69("path", {
13686
+ /* @__PURE__ */ jsx68("path", {
13757
13687
  fillRule: "evenodd",
13758
13688
  clipRule: "evenodd",
13759
13689
  d: "M4.5 2.25C4.81066 2.25 5.0625 2.50184 5.0625 2.8125L5.0625 9.65852C5.71792 9.89018 6.1875 10.5153 6.1875 11.25C6.1875 11.9847 5.71792 12.6098 5.0625 12.8415V15.1875C5.0625 15.4982 4.81066 15.75 4.5 15.75C4.18934 15.75 3.9375 15.4982 3.9375 15.1875V12.8415C3.28208 12.6098 2.8125 11.9847 2.8125 11.25C2.8125 10.5153 3.28208 9.89018 3.9375 9.65852L3.9375 2.8125C3.9375 2.50184 4.18934 2.25 4.5 2.25ZM4.5 10.6875C4.18934 10.6875 3.9375 10.9393 3.9375 11.25C3.9375 11.5607 4.18934 11.8125 4.5 11.8125C4.81066 11.8125 5.0625 11.5607 5.0625 11.25C5.0625 10.9393 4.81066 10.6875 4.5 10.6875Z",
13760
13690
  fill: "#6D7175"
13761
13691
  }),
13762
- /* @__PURE__ */ jsx69("path", {
13692
+ /* @__PURE__ */ jsx68("path", {
13763
13693
  fillRule: "evenodd",
13764
13694
  clipRule: "evenodd",
13765
13695
  d: "M9 2.25C9.31066 2.25 9.5625 2.50184 9.5625 2.8125V5.15852C10.2179 5.39018 10.6875 6.01525 10.6875 6.75C10.6875 7.48475 10.2179 8.10982 9.5625 8.34148V15.1875C9.5625 15.4982 9.31066 15.75 9 15.75C8.68934 15.75 8.4375 15.4982 8.4375 15.1875V8.34148C7.78208 8.10982 7.3125 7.48475 7.3125 6.75C7.3125 6.01525 7.78208 5.39018 8.4375 5.15852V2.8125C8.4375 2.50184 8.68934 2.25 9 2.25ZM9 6.1875C8.68934 6.1875 8.4375 6.43934 8.4375 6.75C8.4375 7.06066 8.68934 7.3125 9 7.3125C9.31066 7.3125 9.5625 7.06066 9.5625 6.75C9.5625 6.43934 9.31066 6.1875 9 6.1875Z",
13766
13696
  fill: "#6D7175"
13767
13697
  }),
13768
- /* @__PURE__ */ jsx69("path", {
13698
+ /* @__PURE__ */ jsx68("path", {
13769
13699
  fillRule: "evenodd",
13770
13700
  clipRule: "evenodd",
13771
13701
  d: "M13.5 2.25C13.8107 2.25 14.0625 2.50184 14.0625 2.8125V9.65852C14.7179 9.89018 15.1875 10.5153 15.1875 11.25C15.1875 11.9847 14.7179 12.6098 14.0625 12.8415L14.0625 15.1875C14.0625 15.4982 13.8107 15.75 13.5 15.75C13.1893 15.75 12.9375 15.4982 12.9375 15.1875L12.9375 12.8415C12.2821 12.6098 11.8125 11.9847 11.8125 11.25C11.8125 10.5153 12.2821 9.89018 12.9375 9.65852V2.8125C12.9375 2.50184 13.1893 2.25 13.5 2.25ZM13.5 10.6875C13.1893 10.6875 12.9375 10.9393 12.9375 11.25C12.9375 11.5607 13.1893 11.8125 13.5 11.8125C13.8107 11.8125 14.0625 11.5607 14.0625 11.25C14.0625 10.9393 13.8107 10.6875 13.5 10.6875Z",
@@ -13778,18 +13708,18 @@ var ConfigIcon = React50.forwardRef(function(props, ref) {
13778
13708
  }));
13779
13709
  });
13780
13710
  // src/components/icons/outline/FilterIcon.tsx
13781
- import React51 from "react";
13782
- import { jsx as jsx70 } from "react/jsx-runtime";
13783
- var FilterIcon = React51.forwardRef(function(props, ref) {
13784
- return /* @__PURE__ */ jsx70(Icon, _object_spread_props(_object_spread({}, props), {
13785
- children: /* @__PURE__ */ jsx70("svg", {
13711
+ import React50 from "react";
13712
+ import { jsx as jsx69 } from "react/jsx-runtime";
13713
+ var FilterIcon = React50.forwardRef(function(props, ref) {
13714
+ return /* @__PURE__ */ jsx69(Icon, _object_spread_props(_object_spread({}, props), {
13715
+ children: /* @__PURE__ */ jsx69("svg", {
13786
13716
  className: props === null || props === void 0 ? void 0 : props.className,
13787
13717
  width: "22",
13788
13718
  height: "22",
13789
13719
  viewBox: "0 0 22 22",
13790
13720
  fill: "none",
13791
13721
  xmlns: "http://www.w3.org/2000/svg",
13792
- children: /* @__PURE__ */ jsx70("path", {
13722
+ children: /* @__PURE__ */ jsx69("path", {
13793
13723
  fillRule: "evenodd",
13794
13724
  clipRule: "evenodd",
13795
13725
  fill: "currentColor",
@@ -13799,38 +13729,38 @@ var FilterIcon = React51.forwardRef(function(props, ref) {
13799
13729
  }));
13800
13730
  });
13801
13731
  // src/components/icons/solid/CaretDownIcon.tsx
13802
- import * as React52 from "react";
13803
- import { jsx as jsx71 } from "react/jsx-runtime";
13804
- var CaretDownIcon = React52.forwardRef(function(props, ref) {
13805
- return /* @__PURE__ */ jsx71(Icon, _object_spread_props(_object_spread({}, props), {
13806
- children: /* @__PURE__ */ jsx71("svg", {
13732
+ import * as React51 from "react";
13733
+ import { jsx as jsx70 } from "react/jsx-runtime";
13734
+ var CaretDownIcon = React51.forwardRef(function(props, ref) {
13735
+ return /* @__PURE__ */ jsx70(Icon, _object_spread_props(_object_spread({}, props), {
13736
+ children: /* @__PURE__ */ jsx70("svg", {
13807
13737
  ref: ref,
13808
13738
  className: "w-full h-full",
13809
13739
  viewBox: "0 0 24 24",
13810
13740
  fill: "currentColor",
13811
13741
  xmlns: "http://www.w3.org/2000/svg",
13812
- children: /* @__PURE__ */ jsx71("path", {
13742
+ children: /* @__PURE__ */ jsx70("path", {
13813
13743
  d: "M13.5119 17.7818C12.7143 18.7028 11.2857 18.7028 10.4881 17.7818L2.74159 8.83689C1.61984 7.54161 2.53995 5.52759 4.25345 5.52759L19.7466 5.52759C21.4601 5.52759 22.3802 7.54161 21.2584 8.8369L13.5119 17.7818Z"
13814
13744
  })
13815
13745
  })
13816
13746
  }));
13817
13747
  });
13818
13748
  // src/components/icons/solid/CodeIcon.tsx
13819
- import * as React53 from "react";
13820
- import { jsx as jsx72, jsxs as jsxs42 } from "react/jsx-runtime";
13821
- var CodeIcon = React53.forwardRef(function(props, ref) {
13822
- return /* @__PURE__ */ jsx72(Icon, _object_spread_props(_object_spread({}, props), {
13823
- children: /* @__PURE__ */ jsxs42("svg", {
13749
+ import * as React52 from "react";
13750
+ import { jsx as jsx71, jsxs as jsxs41 } from "react/jsx-runtime";
13751
+ var CodeIcon = React52.forwardRef(function(props, ref) {
13752
+ return /* @__PURE__ */ jsx71(Icon, _object_spread_props(_object_spread({}, props), {
13753
+ children: /* @__PURE__ */ jsxs41("svg", {
13824
13754
  ref: ref,
13825
13755
  className: "w-full h-full",
13826
13756
  viewBox: "0 0 24 24",
13827
13757
  fill: "currentColor",
13828
13758
  xmlns: "http://www.w3.org/2000/svg",
13829
13759
  children: [
13830
- /* @__PURE__ */ jsx72("path", {
13760
+ /* @__PURE__ */ jsx71("path", {
13831
13761
  d: "M15.3995 7.375C15.6066 7.01628 15.4837 6.55759 15.125 6.35048C14.7663 6.14337 14.3076 6.26628 14.1005 6.625L8.35048 16.5843C8.14337 16.943 8.26628 17.4017 8.625 17.6088C8.98372 17.8159 9.44241 17.693 9.64952 17.3343L15.3995 7.375Z"
13832
13762
  }),
13833
- /* @__PURE__ */ jsx72("path", {
13763
+ /* @__PURE__ */ jsx71("path", {
13834
13764
  fillRule: "evenodd",
13835
13765
  clipRule: "evenodd",
13836
13766
  d: "M6 3C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H6ZM4.5 6C4.5 5.17157 5.17157 4.5 6 4.5H18C18.8284 4.5 19.5 5.17157 19.5 6V18C19.5 18.8284 18.8284 19.5 18 19.5H6C5.17157 19.5 4.5 18.8284 4.5 18V6Z"
@@ -13840,17 +13770,17 @@ var CodeIcon = React53.forwardRef(function(props, ref) {
13840
13770
  }));
13841
13771
  });
13842
13772
  // src/components/icons/solid/DragIcon.tsx
13843
- import * as React54 from "react";
13844
- import { jsx as jsx73 } from "react/jsx-runtime";
13845
- var DragIcon = React54.forwardRef(function(props, ref) {
13846
- return /* @__PURE__ */ jsx73(Icon, _object_spread_props(_object_spread({}, props), {
13847
- children: /* @__PURE__ */ jsx73("svg", {
13773
+ import * as React53 from "react";
13774
+ import { jsx as jsx72 } from "react/jsx-runtime";
13775
+ var DragIcon = React53.forwardRef(function(props, ref) {
13776
+ return /* @__PURE__ */ jsx72(Icon, _object_spread_props(_object_spread({}, props), {
13777
+ children: /* @__PURE__ */ jsx72("svg", {
13848
13778
  ref: ref,
13849
13779
  className: "w-full h-full",
13850
13780
  viewBox: "0 0 24 24",
13851
13781
  fill: "currentColor",
13852
13782
  xmlns: "http://www.w3.org/2000/svg",
13853
- children: /* @__PURE__ */ jsx73("path", {
13783
+ children: /* @__PURE__ */ jsx72("path", {
13854
13784
  fillRule: "evenodd",
13855
13785
  clipRule: "evenodd",
13856
13786
  d: "M7.5 5C7.5 4.17157 8.17157 3.5 9 3.5C9.82843 3.5 10.5 4.17157 10.5 5C10.5 5.82843 9.82843 6.5 9 6.5C8.17157 6.5 7.5 5.82843 7.5 5ZM13.5 5C13.5 4.17157 14.1716 3.5 15 3.5C15.8284 3.5 16.5 4.17157 16.5 5C16.5 5.82843 15.8284 6.5 15 6.5C14.1716 6.5 13.5 5.82843 13.5 5ZM7.5 12C7.5 11.1716 8.17157 10.5 9 10.5C9.82843 10.5 10.5 11.1716 10.5 12C10.5 12.8284 9.82843 13.5 9 13.5C8.17157 13.5 7.5 12.8284 7.5 12ZM13.5 12C13.5 11.1716 14.1716 10.5 15 10.5C15.8284 10.5 16.5 11.1716 16.5 12C16.5 12.8284 15.8284 13.5 15 13.5C14.1716 13.5 13.5 12.8284 13.5 12ZM7.5 19C7.5 18.1716 8.17157 17.5 9 17.5C9.82843 17.5 10.5 18.1716 10.5 19C10.5 19.8284 9.82843 20.5 9 20.5C8.17157 20.5 7.5 19.8284 7.5 19ZM13.5 19C13.5 18.1716 14.1716 17.5 15 17.5C15.8284 17.5 16.5 18.1716 16.5 19C16.5 19.8284 15.8284 20.5 15 20.5C14.1716 20.5 13.5 19.8284 13.5 19Z"
@@ -13859,17 +13789,17 @@ var DragIcon = React54.forwardRef(function(props, ref) {
13859
13789
  }));
13860
13790
  });
13861
13791
  // src/components/icons/solid/RectangleGroupIcon.tsx
13862
- import * as React55 from "react";
13863
- import { jsx as jsx74 } from "react/jsx-runtime";
13864
- var RectangleGroupIcon = React55.forwardRef(function(props, ref) {
13865
- return /* @__PURE__ */ jsx74(Icon, _object_spread_props(_object_spread({}, props), {
13866
- children: /* @__PURE__ */ jsx74("svg", {
13792
+ import * as React54 from "react";
13793
+ import { jsx as jsx73 } from "react/jsx-runtime";
13794
+ var RectangleGroupIcon = React54.forwardRef(function(props, ref) {
13795
+ return /* @__PURE__ */ jsx73(Icon, _object_spread_props(_object_spread({}, props), {
13796
+ children: /* @__PURE__ */ jsx73("svg", {
13867
13797
  ref: ref,
13868
13798
  className: "w-full h-full",
13869
13799
  viewBox: "0 0 24 24",
13870
13800
  fill: "currentColor",
13871
13801
  xmlns: "http://www.w3.org/2000/svg",
13872
- children: /* @__PURE__ */ jsx74("path", {
13802
+ children: /* @__PURE__ */ jsx73("path", {
13873
13803
  fillRule: "evenodd",
13874
13804
  clipRule: "evenodd",
13875
13805
  d: "M1.5 7.125C1.5 6.08947 2.33947 5.25 3.375 5.25H9.375C10.4105 5.25 11.25 6.08947 11.25 7.125V10.875C11.25 11.9105 10.4105 12.75 9.375 12.75H3.375C2.33947 12.75 1.5 11.9105 1.5 10.875V7.125ZM13.5 8.625C13.5 7.58947 14.3395 6.75 15.375 6.75H20.625C21.6605 6.75 22.5 7.58947 22.5 8.625V16.875C22.5 17.9105 21.6605 18.75 20.625 18.75H15.375C14.3395 18.75 13.5 17.9105 13.5 16.875V8.625ZM3 16.125C3 15.0895 3.83947 14.25 4.875 14.25H10.125C11.1605 14.25 12 15.0895 12 16.125V18.375C12 19.4105 11.1605 20.25 10.125 20.25H4.875C3.83947 20.25 3 19.4105 3 18.375V16.125Z"
@@ -13877,7 +13807,7 @@ var RectangleGroupIcon = React55.forwardRef(function(props, ref) {
13877
13807
  })
13878
13808
  }));
13879
13809
  });
13880
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, ArrowLeftIcon, ArrowUpTrayIcon, AspectRatio, AudioPlayer, AudioPlaying, Avatar, AvatarImage, AvatarRoot, Badge, Button, CaretDownIcon, CheckCircleIcon4 as CheckCircleIcon, Checkbox, Chips, CodeIcon, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfigIcon, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Description, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Display, DownIcon, DragIcon, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorState, FilterIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Guide, Heading, Icon, IconButton, Image2 as Image, Input, Label3 as Label, Link, Masonry, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MiddleBar, Modal, ModalBody, ModalContent, ModalFooter, ModalHeader, ModalOverlay, ModalRoot, ModalTitle, MultipleSelector, NetworkErrorState, NoPageState, NotFoundState, NumberInput, Paragraph, PencilSquareIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, Progress, ProgressIndicator, ProgressRoot, RadioGroup4 as RadioGroup, RadioGroupItem, RectangleGroupIcon, ScrollArea, ScrollBar, SearchBar, Select, SelectContent, SelectGroup, SelectIcon, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderPrimitive, SliderSingle, Spinner, State2 as State, SubHeading, SubTitle, Swiper, Switch, Tab, Tabs2 as Tabs, TabsContent, TabsList, TabsRoot, TabsTrigger, Text, Textarea, Title, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipProvider, TopNavigationBar, WindowIcon, buttonVariants, dangerouText, iconButtonVariants, reducer, toast, toggleVariants, useDebounce, useDevice, useFormField, useIsMobileByWindowWidth, useNativeBridge, useNotification, useToast, useWindowWidth }; /*! Bundled license information:
13810
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, ArrowLeftIcon, ArrowUpTrayIcon, AspectRatio, AudioPlayer, AudioPlaying, Avatar, AvatarImage, AvatarRoot, Badge, Button, CaretDownIcon, Checkbox, Chips, CodeIcon, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfigIcon, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Description, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Display, DownIcon, DragIcon, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorState, FilterIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Guide, Heading, Icon, IconButton, Image2 as Image, Input, Label3 as Label, Link, Masonry, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MiddleBar, Modal, ModalBody, ModalContent, ModalFooter, ModalHeader, ModalOverlay, ModalRoot, ModalTitle, MultipleSelector, NetworkErrorState, NoPageState, NotFoundState, NumberInput, Paragraph, PencilSquareIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, Progress, ProgressIndicator, ProgressRoot, RadioGroup4 as RadioGroup, RadioGroupItem, RectangleGroupIcon, ScrollArea, ScrollBar, SearchBar, Select, SelectContent, SelectGroup, SelectIcon, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderPrimitive, SliderSingle, Spinner, State2 as State, SubHeading, SubTitle, Swiper, Switch, Tab, Tabs2 as Tabs, TabsContent, TabsList, TabsRoot, TabsTrigger, Text, Textarea, Title, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipProvider, TopNavigationBar, WindowIcon, buttonVariants, dangerouText, iconButtonVariants, reducer, toast, toggleVariants, useDebounce, useDevice, useFormField, useIsMobileByWindowWidth, useNativeBridge, useNotification, useToast, useWindowWidth }; /*! Bundled license information:
13881
13811
 
13882
13812
  decimal.js/decimal.mjs:
13883
13813
  (*!