elseware-ui 2.31.7 → 2.31.9

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.mjs CHANGED
@@ -17483,7 +17483,7 @@ function CommentComposer({
17483
17483
  }
17484
17484
  return /* @__PURE__ */ jsxs("div", { className: "flex gap-4", children: [
17485
17485
  /* @__PURE__ */ jsx(Avatar, { src: avatar, size: "md" }),
17486
- /* @__PURE__ */ jsxs("div", { className: "flex-1 flex flex-col gap-3", children: [
17486
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col gap-3", children: [
17487
17487
  /* @__PURE__ */ jsx(
17488
17488
  "textarea",
17489
17489
  {
@@ -17492,7 +17492,7 @@ function CommentComposer({
17492
17492
  placeholder,
17493
17493
  onFocus: () => setFocused(true),
17494
17494
  onChange: (e) => setValue(e.target.value),
17495
- className: "\n w-full\n min-h-[56px]\n resize-none\n bg-transparent\n border-b\n border-gray-300\n dark:border-neutral-700\n outline-none\n pb-2\n text-sm\n "
17495
+ className: "min-h-[56px] w-full resize-none border-b border-gray-300 bg-transparent pb-2 text-sm outline-none dark:border-neutral-700"
17496
17496
  }
17497
17497
  ),
17498
17498
  (focused || value.length > 0) && /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
@@ -17532,56 +17532,44 @@ function CommentActions({
17532
17532
  const liked = comment.liked ?? false;
17533
17533
  const disliked = comment.disliked ?? false;
17534
17534
  const canReply = comment.permissions?.canReply ?? true;
17535
- return /* @__PURE__ */ jsxs(
17536
- "div",
17537
- {
17538
- className: "\n flex\n items-center\n gap-5\n text-sm\n text-gray-500\n dark:text-gray-400\n ",
17539
- children: [
17540
- /* @__PURE__ */ jsxs(
17541
- "button",
17542
- {
17543
- onClick: onLike,
17544
- className: `
17545
- inline-flex
17546
- items-center
17547
- gap-1
17548
- transition-colors
17535
+ return /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-5 text-sm text-gray-500 dark:text-gray-400", children: [
17536
+ /* @__PURE__ */ jsxs(
17537
+ "button",
17538
+ {
17539
+ onClick: onLike,
17540
+ className: `
17541
+ inline-flex items-center gap-1 transition-colors
17549
17542
  ${liked ? "text-blue-500" : "hover:text-gray-900 dark:hover:text-gray-100"}
17550
17543
  `,
17551
- children: [
17552
- liked ? /* @__PURE__ */ jsx(BiSolidLike, { size: 18 }) : /* @__PURE__ */ jsx(BiLike, { size: 18 }),
17553
- /* @__PURE__ */ jsx("span", { children: likes })
17554
- ]
17555
- }
17556
- ),
17557
- /* @__PURE__ */ jsxs(
17558
- "button",
17559
- {
17560
- onClick: onDislike,
17561
- className: `
17562
- inline-flex
17563
- items-center
17564
- gap-1
17565
- transition-colors
17544
+ children: [
17545
+ liked ? /* @__PURE__ */ jsx(BiSolidLike, { size: 18 }) : /* @__PURE__ */ jsx(BiLike, { size: 18 }),
17546
+ /* @__PURE__ */ jsx("span", { children: likes })
17547
+ ]
17548
+ }
17549
+ ),
17550
+ /* @__PURE__ */ jsxs(
17551
+ "button",
17552
+ {
17553
+ onClick: onDislike,
17554
+ className: `
17555
+ inline-flex items-center gap-1 transition-colors
17566
17556
  ${disliked ? "text-red-500" : "hover:text-gray-900 dark:hover:text-gray-100"}
17567
17557
  `,
17568
- children: [
17569
- disliked ? /* @__PURE__ */ jsx(BiSolidDislike, { size: 18 }) : /* @__PURE__ */ jsx(BiDislike, { size: 18 }),
17570
- /* @__PURE__ */ jsx("span", { children: dislikes })
17571
- ]
17572
- }
17573
- ),
17574
- canReply && /* @__PURE__ */ jsx(
17575
- "button",
17576
- {
17577
- onClick: onReply,
17578
- className: "\n font-medium\n transition-colors\n hover:text-gray-900\n dark:hover:text-gray-100\n ",
17579
- children: "Reply"
17580
- }
17581
- )
17582
- ]
17583
- }
17584
- );
17558
+ children: [
17559
+ disliked ? /* @__PURE__ */ jsx(BiSolidDislike, { size: 18 }) : /* @__PURE__ */ jsx(BiDislike, { size: 18 }),
17560
+ /* @__PURE__ */ jsx("span", { children: dislikes })
17561
+ ]
17562
+ }
17563
+ ),
17564
+ canReply && /* @__PURE__ */ jsx(
17565
+ "button",
17566
+ {
17567
+ onClick: onReply,
17568
+ className: "font-medium transition-colors hover:text-gray-900 dark:hover:text-gray-100",
17569
+ children: "Reply"
17570
+ }
17571
+ )
17572
+ ] });
17585
17573
  }
17586
17574
  var CommentActions_default = CommentActions;
17587
17575
  function CommentContent({ comment }) {
@@ -17674,63 +17662,57 @@ function CommentMenu({
17674
17662
  {
17675
17663
  type: "button",
17676
17664
  onClick: () => setOpen(!open),
17677
- className: "\n text-gray-500\n hover:text-gray-900\n dark:hover:text-gray-100\n transition-colors\n ",
17665
+ className: "text-gray-500 transition-colors hover:text-gray-900 dark:hover:text-gray-100",
17678
17666
  children: /* @__PURE__ */ jsx(BiDotsVerticalRounded, { size: 18 })
17679
17667
  }
17680
17668
  ),
17681
- open && /* @__PURE__ */ jsxs(
17682
- "div",
17683
- {
17684
- className: "\n absolute\n right-0\n top-full\n mt-2\n min-w-[180px]\n overflow-hidden\n rounded-xl\n border\n border-gray-200\n dark:border-neutral-800\n bg-white\n dark:bg-neutral-900\n shadow-xl\n z-50\n ",
17685
- children: [
17686
- canEdit && /* @__PURE__ */ jsxs(
17687
- "button",
17688
- {
17689
- type: "button",
17690
- onClick: () => {
17691
- setOpen(false);
17692
- onEdit?.();
17693
- },
17694
- className: "\n w-full\n flex\n items-center\n gap-2\n px-4\n py-3\n text-sm\n hover:bg-gray-100\n dark:hover:bg-neutral-800\n ",
17695
- children: [
17696
- /* @__PURE__ */ jsx(BiEdit, {}),
17697
- "Edit"
17698
- ]
17699
- }
17700
- ),
17701
- canDelete && /* @__PURE__ */ jsxs(
17702
- "button",
17703
- {
17704
- type: "button",
17705
- onClick: () => {
17706
- setOpen(false);
17707
- onDelete?.();
17708
- },
17709
- className: "\n w-full\n flex\n items-center\n gap-2\n px-4\n py-3\n text-sm\n text-red-500\n hover:bg-gray-100\n dark:hover:bg-neutral-800\n ",
17710
- children: [
17711
- /* @__PURE__ */ jsx(BiTrash, {}),
17712
- "Delete"
17713
- ]
17714
- }
17715
- ),
17716
- canReport && /* @__PURE__ */ jsxs(
17717
- "button",
17718
- {
17719
- type: "button",
17720
- onClick: () => {
17721
- setOpen(false);
17722
- onReport?.();
17723
- },
17724
- className: "\n w-full\n flex\n items-center\n gap-2\n px-4\n py-3\n text-sm\n hover:bg-gray-100\n dark:hover:bg-neutral-800\n ",
17725
- children: [
17726
- /* @__PURE__ */ jsx(BiFlag, {}),
17727
- "Report"
17728
- ]
17729
- }
17730
- )
17731
- ]
17732
- }
17733
- )
17669
+ open && /* @__PURE__ */ jsxs("div", { className: "absolute right-0 top-full z-50 mt-2 min-w-[180px] overflow-hidden rounded-xl border border-gray-200 bg-white shadow-xl dark:border-neutral-800 dark:bg-neutral-900", children: [
17670
+ canEdit && /* @__PURE__ */ jsxs(
17671
+ "button",
17672
+ {
17673
+ type: "button",
17674
+ onClick: () => {
17675
+ setOpen(false);
17676
+ onEdit?.();
17677
+ },
17678
+ className: "flex w-full items-center gap-2 px-4 py-3 text-sm hover:bg-gray-100 dark:hover:bg-neutral-800",
17679
+ children: [
17680
+ /* @__PURE__ */ jsx(BiEdit, {}),
17681
+ "Edit"
17682
+ ]
17683
+ }
17684
+ ),
17685
+ canDelete && /* @__PURE__ */ jsxs(
17686
+ "button",
17687
+ {
17688
+ type: "button",
17689
+ onClick: () => {
17690
+ setOpen(false);
17691
+ onDelete?.();
17692
+ },
17693
+ className: "flex w-full items-center gap-2 px-4 py-3 text-sm text-red-500 hover:bg-gray-100 dark:hover:bg-neutral-800",
17694
+ children: [
17695
+ /* @__PURE__ */ jsx(BiTrash, {}),
17696
+ "Delete"
17697
+ ]
17698
+ }
17699
+ ),
17700
+ canReport && /* @__PURE__ */ jsxs(
17701
+ "button",
17702
+ {
17703
+ type: "button",
17704
+ onClick: () => {
17705
+ setOpen(false);
17706
+ onReport?.();
17707
+ },
17708
+ className: "flex w-full items-center gap-2 px-4 py-3 text-sm hover:bg-gray-100 dark:hover:bg-neutral-800",
17709
+ children: [
17710
+ /* @__PURE__ */ jsx(BiFlag, {}),
17711
+ "Report"
17712
+ ]
17713
+ }
17714
+ )
17715
+ ] })
17734
17716
  ] });
17735
17717
  }
17736
17718
  var CommentMenu_default = CommentMenu;
@@ -17748,7 +17730,7 @@ function CommentRepliesToggle({
17748
17730
  {
17749
17731
  type: "button",
17750
17732
  onClick: onToggle,
17751
- className: "\n inline-flex\n items-center\n gap-1\n w-fit\n text-sm\n font-medium\n text-blue-500\n hover:text-blue-400\n transition-colors\n ",
17733
+ className: "inline-flex w-fit items-center gap-1 text-sm font-medium text-blue-500 transition-colors hover:text-blue-400",
17752
17734
  children: [
17753
17735
  collapsed ? /* @__PURE__ */ jsx(BiChevronDown, { size: 18 }) : /* @__PURE__ */ jsx(BiChevronUp, { size: 18 }),
17754
17736
  /* @__PURE__ */ jsx("span", { children: label })
@@ -17760,7 +17742,10 @@ var CommentRepliesToggle_default = CommentRepliesToggle;
17760
17742
  function ReplyComposer({
17761
17743
  avatar,
17762
17744
  username,
17745
+ placeholder,
17746
+ submitLabel = "Reply",
17763
17747
  loading,
17748
+ disabled,
17764
17749
  onSubmit
17765
17750
  }) {
17766
17751
  return /* @__PURE__ */ jsx("div", { className: "pt-2", children: /* @__PURE__ */ jsx(
@@ -17768,20 +17753,18 @@ function ReplyComposer({
17768
17753
  {
17769
17754
  avatar,
17770
17755
  loading,
17771
- submitLabel: "Reply",
17772
- placeholder: `Reply to @${username}`,
17756
+ disabled,
17757
+ submitLabel,
17758
+ placeholder: placeholder ?? `Reply to @${username}`,
17773
17759
  onSubmit
17774
17760
  }
17775
17761
  ) });
17776
17762
  }
17777
17763
  var ReplyComposer_default = ReplyComposer;
17778
-
17779
- // src/compositions/comment-thread/constants/comment.constants.ts
17780
- var MAX_COMMENT_DEPTH = 5;
17781
- var COMMENT_INDENTATION = 24;
17782
17764
  function CommentItem({
17783
17765
  comment,
17784
17766
  depth = 0,
17767
+ config,
17785
17768
  components,
17786
17769
  onLike,
17787
17770
  onDislike,
@@ -17792,7 +17775,7 @@ function CommentItem({
17792
17775
  }) {
17793
17776
  const [collapsed, setCollapsed] = useState(false);
17794
17777
  const [isReplying, setIsReplying] = useState(false);
17795
- const resolvedDepth = Math.min(depth, MAX_COMMENT_DEPTH);
17778
+ const resolvedDepth = Math.min(depth, config.maxDepth);
17796
17779
  const {
17797
17780
  Header: HeaderComponent = CommentHeader_default,
17798
17781
  Content: ContentComponent = CommentContent_default,
@@ -17811,7 +17794,7 @@ function CommentItem({
17811
17794
  {
17812
17795
  className: "flex flex-col gap-4",
17813
17796
  style: {
17814
- paddingLeft: resolvedDepth * COMMENT_INDENTATION
17797
+ paddingLeft: resolvedDepth * config.indentation
17815
17798
  },
17816
17799
  children: [
17817
17800
  /* @__PURE__ */ jsx("div", { className: "flex gap-3", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col gap-3 min-w-0", children: [
@@ -17847,6 +17830,8 @@ function CommentItem({
17847
17830
  {
17848
17831
  avatar: comment.author?.avatar,
17849
17832
  username: comment.author?.username,
17833
+ placeholder: `Reply to @${comment.author?.username}`,
17834
+ submitLabel: "Reply",
17850
17835
  onSubmit: handleReply
17851
17836
  }
17852
17837
  ),
@@ -17871,6 +17856,7 @@ function CommentItem({
17871
17856
  {
17872
17857
  comments: comment.replies,
17873
17858
  depth: depth + 1,
17859
+ config,
17874
17860
  components,
17875
17861
  onLike,
17876
17862
  onDislike,
@@ -17890,6 +17876,7 @@ var CommentItem_default = CommentItem;
17890
17876
  function CommentList({
17891
17877
  comments,
17892
17878
  depth = 0,
17879
+ config,
17893
17880
  components,
17894
17881
  onLike,
17895
17882
  onDislike,
@@ -17906,6 +17893,7 @@ function CommentList({
17906
17893
  {
17907
17894
  comment,
17908
17895
  depth,
17896
+ config,
17909
17897
  components,
17910
17898
  onLike,
17911
17899
  onDislike,
@@ -17971,18 +17959,30 @@ function insertReply(comments, parentId, reply) {
17971
17959
  };
17972
17960
  });
17973
17961
  }
17962
+
17963
+ // src/compositions/comment-thread/constants/comment.constants.ts
17964
+ var DEFAULT_COMMENT_THREAD_CONFIG = {
17965
+ maxDepth: 5,
17966
+ indentation: 24,
17967
+ dateFormat: "relative"
17968
+ };
17974
17969
  function CommentThread({
17975
17970
  currentUser,
17976
17971
  dataSource,
17977
17972
  loading = false,
17978
17973
  components,
17974
+ config,
17979
17975
  onEdit,
17980
17976
  onDelete,
17981
17977
  onReport
17982
17978
  }) {
17983
17979
  const [comments, setComments] = useState([]);
17984
17980
  const [isLoadingComments, setIsLoadingComments] = useState(true);
17985
- const ComposerComponent = components?.ReplyComposer ?? CommentComposer_default;
17981
+ const ComposerComponent = components?.Composer ?? CommentComposer_default;
17982
+ const resolvedConfig = {
17983
+ ...DEFAULT_COMMENT_THREAD_CONFIG,
17984
+ ...config
17985
+ };
17986
17986
  useEffect(() => {
17987
17987
  async function loadComments() {
17988
17988
  try {
@@ -18060,6 +18060,8 @@ function CommentThread({
18060
18060
  ComposerComponent,
18061
18061
  {
18062
18062
  avatar: currentUser.avatar,
18063
+ placeholder: "Add a comment...",
18064
+ submitLabel: "Comment",
18063
18065
  onSubmit: handleCreateComment
18064
18066
  }
18065
18067
  ),
@@ -18068,6 +18070,7 @@ function CommentThread({
18068
18070
  {
18069
18071
  comments,
18070
18072
  components,
18073
+ config: resolvedConfig,
18071
18074
  onLike: handleLike,
18072
18075
  onDislike: handleDislike,
18073
18076
  onReply: handleReply,
@@ -18890,6 +18893,6 @@ function ScrollToTop({
18890
18893
  }
18891
18894
  var ScrollToTop_default = ScrollToTop;
18892
18895
 
18893
- export { Accordion_default as Accordion, AsyncComponentWrapper_default as AsyncComponentWrapper, Avatar, Backdrop_default as Backdrop, Badge, BarChart_default as BarChart, Block_default as Block, BlockGroup_default as BlockGroup, BoxNav_default as BoxNav, BoxNavItem_default as BoxNavItem, Brand_default as Brand, Breadcrumb, BreadcrumbItem_default as BreadcrumbItem, Button_default as Button, Caption, Card_default as Card, CardContent_default as CardContent, CardFooter_default as CardFooter, CardHeader_default as CardHeader, Chapter, Checkbox_default as Checkbox, Chip, CloudinaryImage_default as CloudinaryImage, CloudinaryProvider, CloudinaryVideo_default as CloudinaryVideo, Code, CommentThread_default as CommentThread, Content, ContentArea_default as ContentArea, DataView, DataViewTable_default as DataViewTable, DateSelector_default as DateSelector, DefaultLayout_default as DefaultLayout, Display, DocumentationPanel_default as DocumentationPanel, Drawer, DrawerToggler_default as DrawerToggler, EUIDevLayout_default as EUIDevLayout, EUIProvider, Flag, Flex, FlexCol_default as FlexCol, FlexRow_default as FlexRow, Footer, FooterNav_default as FooterNav, FooterNavGroup_default as FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse_default as FormResponse, GenericLayout_default as GenericLayout, GlowWrapper_default as GlowWrapper, Graph, GraphEdge, GraphNode, GraphRenderer, Grid_default as Grid, Header, HeaderNav_default as HeaderNav, HeaderNavGroup_default as HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout_default as HomeLayout, Image2 as Image, ImageInput_default as ImageInput, Info_default as Info, Input, InputFile, InputLabel_default as InputLabel, InputList, InputListGroup, InputResponse_default as InputResponse, Label, Layout, Lead, LineChart_default as LineChart, Link, List_default as List, ListItem_default as ListItem, MarkdownEditor_default as MarkdownEditor, MarkdownProvider_default as MarkdownProvider, MarkdownTOC_default as MarkdownTOC, MarkdownViewer_default as MarkdownViewer, Menu, MenuGroup, MenuItem, MenuItemTitle, Modal_default as Modal, MotionSurface_default as MotionSurface, MultiImageInput_default as MultiImageInput, NumericRating_default as NumericRating, Overline, Paragraph, PieChart_default as PieChart, PriceTag, ProgressBar, ProgressBarRating_default as ProgressBarRating, Quote, Radio_default as Radio, RouteTab_default as RouteTab, RouteTabs_default as RouteTabs, ScrollToTop_default as ScrollToTop, Section, Select_default as Select, ShapeSwitch, ShowMore_default as ShowMore, Sidebar_default as Sidebar, SidebarLayout_default as SidebarLayout, SidemenuLayout_default as SidemenuLayout, Skeleton, Slider_default as Slider, StarRating_default as StarRating, StarRatingDistribution_default as StarRatingDistribution, StarRatingInput_default as StarRatingInput, Switch_default as Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table_default as Table, Tag_default as Tag, Tags_default as Tags, TextArea_default as TextArea, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, Toast, Tooltip4 as Tooltip, TopNav, Transition4 as Transition, TransitionDropdown_default as TransitionDropdown, TransitionFadeIn_default as TransitionFadeIn, Typography, UnderConstructionBanner, ValueBadge_default as ValueBadge, WorldMap, WorldMapCountryTable, YoutubeVideo_default as YoutubeVideoPlayer, cn, createForceLayout, createGridLayout, createTreeLayout, enumValues, getCurrencySymbol, getLayout, isMatch, isRenderFn, normalize, registerLayout, resolveAppearanceStyles, resolveWithGlobal, sendToast, useClickOutside, useCloudinaryConfig, useCurrentTheme_default as useCurrentTheme, useDrawer_default as useDrawer, useEUIConfig, useIsMobile_default as useIsMobile, useModal_default as useModal, useTheme_default as useTheme };
18896
+ export { Accordion_default as Accordion, AsyncComponentWrapper_default as AsyncComponentWrapper, Avatar, Backdrop_default as Backdrop, Badge, BarChart_default as BarChart, Block_default as Block, BlockGroup_default as BlockGroup, BoxNav_default as BoxNav, BoxNavItem_default as BoxNavItem, Brand_default as Brand, Breadcrumb, BreadcrumbItem_default as BreadcrumbItem, Button_default as Button, Caption, Card_default as Card, CardContent_default as CardContent, CardFooter_default as CardFooter, CardHeader_default as CardHeader, Chapter, Checkbox_default as Checkbox, Chip, CloudinaryImage_default as CloudinaryImage, CloudinaryProvider, CloudinaryVideo_default as CloudinaryVideo, Code, CommentThread_default as CommentThread, Content, ContentArea_default as ContentArea, DataView, DataViewTable_default as DataViewTable, DateSelector_default as DateSelector, DefaultLayout_default as DefaultLayout, Display, DocumentationPanel_default as DocumentationPanel, Drawer, DrawerToggler_default as DrawerToggler, EUIDevLayout_default as EUIDevLayout, EUIProvider, Flag, Flex, FlexCol_default as FlexCol, FlexRow_default as FlexRow, Footer, FooterNav_default as FooterNav, FooterNavGroup_default as FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse_default as FormResponse, GenericLayout_default as GenericLayout, GlowWrapper_default as GlowWrapper, Graph, GraphEdge, GraphNode, GraphRenderer, Grid_default as Grid, Header, HeaderNav_default as HeaderNav, HeaderNavGroup_default as HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout_default as HomeLayout, Image2 as Image, ImageInput_default as ImageInput, Info_default as Info, Input, InputFile, InputLabel_default as InputLabel, InputList, InputListGroup, InputResponse_default as InputResponse, Label, Layout, Lead, LineChart_default as LineChart, Link, List_default as List, ListItem_default as ListItem, MarkdownEditor_default as MarkdownEditor, MarkdownProvider_default as MarkdownProvider, MarkdownTOC_default as MarkdownTOC, MarkdownViewer_default as MarkdownViewer, Menu, MenuGroup, MenuItem, MenuItemTitle, Modal_default as Modal, MotionSurface_default as MotionSurface, MultiImageInput_default as MultiImageInput, NumericRating_default as NumericRating, Overline, Paragraph, PieChart_default as PieChart, PriceTag, ProgressBar, ProgressBarRating_default as ProgressBarRating, Quote, Radio_default as Radio, RouteTab_default as RouteTab, RouteTabs_default as RouteTabs, ScrollToTop_default as ScrollToTop, Section, Select_default as Select, ShapeSwitch, ShowMore_default as ShowMore, Sidebar_default as Sidebar, SidebarLayout_default as SidebarLayout, SidemenuLayout_default as SidemenuLayout, Skeleton, Slider_default as Slider, StarRating_default as StarRating, StarRatingDistribution_default as StarRatingDistribution, StarRatingInput_default as StarRatingInput, Switch_default as Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table_default as Table, Tag_default as Tag, Tags_default as Tags, TextArea_default as TextArea, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, Toast, Tooltip4 as Tooltip, TopNav, Transition4 as Transition, TransitionDropdown_default as TransitionDropdown, TransitionFadeIn_default as TransitionFadeIn, Typography, UnderConstructionBanner, ValueBadge_default as ValueBadge, WorldMap, WorldMapCountryTable, YoutubeVideo_default as YoutubeVideoPlayer, cn, createForceLayout, createGridLayout, createTreeLayout, enumValues, formatCommentDate, getCurrencySymbol, getLayout, isMatch, isRenderFn, normalize, registerLayout, resolveAppearanceStyles, resolveWithGlobal, sendToast, useClickOutside, useCloudinaryConfig, useCurrentTheme_default as useCurrentTheme, useDrawer_default as useDrawer, useEUIConfig, useIsMobile_default as useIsMobile, useModal_default as useModal, useTheme_default as useTheme };
18894
18897
  //# sourceMappingURL=index.mjs.map
18895
18898
  //# sourceMappingURL=index.mjs.map