@bitrix24/b24ui-nuxt 0.4.10 → 0.5.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.
Files changed (55) hide show
  1. package/.nuxt/b24ui/collapsible.ts +6 -0
  2. package/.nuxt/b24ui/index.ts +2 -0
  3. package/.nuxt/b24ui/navigation-menu.ts +312 -0
  4. package/.nuxt/b24ui/sidebar-body.ts +1 -1
  5. package/.nuxt/b24ui/sidebar-footer.ts +1 -1
  6. package/.nuxt/b24ui/sidebar-header.ts +1 -1
  7. package/.nuxt/b24ui/sidebar-heading.ts +1 -1
  8. package/.nuxt/b24ui/sidebar-section.ts +1 -1
  9. package/cli/package.json +1 -1
  10. package/dist/meta.cjs +9778 -588
  11. package/dist/meta.d.cts +9778 -588
  12. package/dist/meta.d.mts +9778 -588
  13. package/dist/meta.d.ts +9778 -588
  14. package/dist/meta.mjs +9778 -588
  15. package/dist/module.cjs +1 -1
  16. package/dist/module.json +1 -1
  17. package/dist/module.mjs +1 -1
  18. package/dist/runtime/components/Collapsible.vue +56 -0
  19. package/dist/runtime/components/DropdownMenu.vue +3 -1
  20. package/dist/runtime/components/Form.vue +21 -1
  21. package/dist/runtime/components/FormField.vue +5 -0
  22. package/dist/runtime/components/Navbar.vue +1 -2
  23. package/dist/runtime/components/NavbarDivider.vue +1 -2
  24. package/dist/runtime/components/NavbarSection.vue +1 -2
  25. package/dist/runtime/components/NavbarSpacer.vue +1 -2
  26. package/dist/runtime/components/NavigationMenu.vue +345 -0
  27. package/dist/runtime/components/Sidebar.vue +1 -2
  28. package/dist/runtime/components/SidebarFooter.vue +1 -2
  29. package/dist/runtime/components/SidebarHeader.vue +1 -2
  30. package/dist/runtime/components/SidebarHeading.vue +1 -2
  31. package/dist/runtime/components/SidebarLayout.vue +34 -8
  32. package/dist/runtime/components/SidebarSection.vue +1 -2
  33. package/dist/runtime/components/SidebarSpacer.vue +1 -2
  34. package/dist/runtime/components/StackedLayout.vue +1 -3
  35. package/dist/runtime/composables/defineLocale.js +1 -0
  36. package/dist/runtime/composables/defineShortcuts.js +1 -0
  37. package/dist/runtime/composables/useKbd.js +1 -1
  38. package/dist/runtime/composables/useLocale.js +2 -2
  39. package/dist/runtime/composables/useOverlay.js +1 -1
  40. package/dist/runtime/index.css +1 -1
  41. package/dist/runtime/types/form.d.ts +1 -3
  42. package/dist/runtime/types/index.d.ts +2 -0
  43. package/dist/runtime/types/index.js +2 -0
  44. package/dist/runtime/utils/form.d.ts +0 -4
  45. package/dist/runtime/utils/form.js +2 -47
  46. package/dist/runtime/utils/link.d.ts +8 -8
  47. package/dist/runtime/utils/tv.js +1 -1
  48. package/dist/runtime/vue/stubs.d.ts +1 -1
  49. package/dist/shared/{b24ui-nuxt._rviRWFf.mjs → b24ui-nuxt.Bj4fKDSa.mjs} +375 -4
  50. package/dist/shared/{b24ui-nuxt.CY35QViH.cjs → b24ui-nuxt.DHbGsmbj.cjs} +375 -4
  51. package/dist/unplugin.cjs +1 -1
  52. package/dist/unplugin.mjs +1 -1
  53. package/dist/vite.cjs +1 -1
  54. package/dist/vite.mjs +1 -1
  55. package/package.json +6 -6
@@ -1637,6 +1637,16 @@ const chip = {
1637
1637
  }
1638
1638
  };
1639
1639
 
1640
+ const collapsible = {
1641
+ slots: {
1642
+ root: "",
1643
+ content: [
1644
+ "motion-safe:data-[state=open]:animate-[collapsible-down_200ms_ease-out] motion-safe:data-[state=closed]:animate-[collapsible-up_200ms_ease-out]",
1645
+ "overflow-hidden"
1646
+ ].join(" ")
1647
+ }
1648
+ };
1649
+
1640
1650
  const container = {
1641
1651
  base: "max-w-[80rem] mx-auto px-5"
1642
1652
  // max-w-7xl w-full
@@ -3505,6 +3515,365 @@ const modal = {
3505
3515
  }
3506
3516
  };
3507
3517
 
3518
+ const navigationMenu = {
3519
+ slots: {
3520
+ root: "relative flex [&>div]:min-w-0 font-b24-secondary",
3521
+ list: "isolate min-w-0",
3522
+ label: [
3523
+ "w-full min-h-6",
3524
+ "flex items-center rtl:flex-row-reverse gap-1.5",
3525
+ "font-medium text-xs/6",
3526
+ "text-base-500 dark:text-base-400",
3527
+ "ps-2xl pe-xs rtl:ps-xs rtl:pe-2xl"
3528
+ ].join(" "),
3529
+ item: "min-w-0",
3530
+ link: [
3531
+ "group relative",
3532
+ "cursor-pointer",
3533
+ "w-full",
3534
+ "flex items-center gap-1.5",
3535
+ "font-normal text-lg leading-9 min-h-9",
3536
+ "before:absolute before:z-[-1]",
3537
+ "focus:outline-none focus-visible:before:rounded-md focus-visible:outline-none dark:focus-visible:outline-none focus-visible:before:ring-inset focus-visible:before:ring-2"
3538
+ ].join(" "),
3539
+ linkLeadingIcon: "shrink-0 size-5",
3540
+ linkLeadingAvatar: "shrink-0",
3541
+ linkLeadingAvatarSize: "2xs",
3542
+ linkTrailing: "ms-auto inline-flex gap-1.5 items-center",
3543
+ linkTrailingBadge: "shrink-0",
3544
+ linkTrailingBadgeSize: "sm",
3545
+ linkTrailingIcon: "text-base-600 size-5 transform shrink-0 group-data-[state=open]:rotate-180 transition-transform duration-200",
3546
+ linkLabel: "truncate",
3547
+ linkLabelExternalIcon: "inline-block h-6 w-3 align-top text-base-500 dark:text-base-700",
3548
+ childList: "",
3549
+ childItem: "",
3550
+ childLink: [
3551
+ "group",
3552
+ "size-full",
3553
+ "px-3 py-2",
3554
+ // 'rounded-md',
3555
+ "flex items-start gap-2",
3556
+ "text-start"
3557
+ ].join(" "),
3558
+ childLinkWrapper: "flex flex-col items-start",
3559
+ childLinkIcon: "size-5 shrink-0",
3560
+ childLinkLabel: "font-semibold text-sm relative inline-flex",
3561
+ childLinkLabelExternalIcon: "inline-block h-6 w-3 align-top text-base-500 dark:text-base-700",
3562
+ childLinkDescription: "text-sm text-(--ui-text-muted)",
3563
+ separator: "px-2 h-px bg-(--ui-border)",
3564
+ viewportWrapper: "absolute top-full left-0 flex w-full",
3565
+ viewport: [
3566
+ "relative overflow-hidden",
3567
+ "w-full",
3568
+ "bg-(--ui-bg)",
3569
+ "shadow-lg",
3570
+ "rounded-md",
3571
+ "ring ring-(--ui-border)",
3572
+ "h-(--reka-navigation-menu-viewport-height)",
3573
+ "transition-[width,height,left] duration-200 origin-[top_center]",
3574
+ "motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]"
3575
+ ].join(" "),
3576
+ content: "absolute top-0 left-0 w-full",
3577
+ indicator: [
3578
+ "absolute",
3579
+ "motion-safe:data-[state=visible]:animate-[fade-in_100ms_ease-out] motion-safe:data-[state=hidden]:animate-[fade-out_100ms_ease-in]",
3580
+ "data-[state=hidden]:opacity-0",
3581
+ "bottom-0",
3582
+ "z-[1]",
3583
+ "w-(--reka-navigation-menu-indicator-size)",
3584
+ "h-2.5",
3585
+ "translate-x-(--reka-navigation-menu-indicator-position)",
3586
+ "flex items-end justify-center",
3587
+ "overflow-hidden",
3588
+ "transition-[translate,width] duration-200"
3589
+ ].join(" "),
3590
+ arrow: "relative top-[50%] size-2.5 rotate-45 border border-(--ui-border) bg-(--ui-bg) z-[1] rounded-md"
3591
+ },
3592
+ variants: {
3593
+ color: {
3594
+ default: {
3595
+ link: "focus-visible:before:ring-base-300 dark:focus-visible:before:ring-base-800",
3596
+ childLink: "focus-visible:outline-base-300 dark:focus-visible:outline-base-800"
3597
+ },
3598
+ danger: "",
3599
+ success: "",
3600
+ warning: "",
3601
+ primary: "",
3602
+ secondary: "",
3603
+ collab: "",
3604
+ ai: ""
3605
+ },
3606
+ highlightColor: {
3607
+ default: "",
3608
+ danger: "",
3609
+ success: "",
3610
+ warning: "",
3611
+ primary: "",
3612
+ secondary: "",
3613
+ collab: "",
3614
+ ai: ""
3615
+ },
3616
+ variant: {
3617
+ pill: {
3618
+ link: [
3619
+ "hover:before:bg-base-250/80 dark:hover:before:bg-white/10"
3620
+ ].join(" ")
3621
+ },
3622
+ link: ""
3623
+ },
3624
+ orientation: {
3625
+ horizontal: {
3626
+ root: "items-center justify-between",
3627
+ list: "flex items-center",
3628
+ item: "py-2",
3629
+ link: "px-2.5 py-1.5 before:inset-x-px before:inset-y-0",
3630
+ childList: "grid p-2"
3631
+ },
3632
+ vertical: {
3633
+ root: "flex-col w-full",
3634
+ link: [
3635
+ "ps-2xl pe-xs rtl:ps-xs rtl:pe-2xl",
3636
+ "flex-row rtl:flex-row-reverse",
3637
+ "before:inset-y-px before:inset-x-0"
3638
+ ].join(" ")
3639
+ }
3640
+ },
3641
+ contentOrientation: {
3642
+ horizontal: {
3643
+ viewport: "",
3644
+ viewportWrapper: "justify-center",
3645
+ content: "motion-safe:data-[motion=from-start]:animate-[enter-from-left_200ms_ease] motion-safe:data-[motion=from-end]:animate-[enter-from-right_200ms_ease] motion-safe:data-[motion=to-start]:animate-[exit-to-left_200ms_ease] motion-safe:data-[motion=to-end]:animate-[exit-to-right_200ms_ease]"
3646
+ },
3647
+ vertical: {
3648
+ viewport: "sm:w-(--reka-navigation-menu-viewport-width) left-(--reka-navigation-menu-viewport-left)",
3649
+ content: ""
3650
+ }
3651
+ },
3652
+ active: {
3653
+ true: {
3654
+ childLink: "bg-(--ui-bg-elevated) text-(--ui-text-highlighted)",
3655
+ childLinkIcon: "text-(--ui-text)"
3656
+ },
3657
+ false: {
3658
+ link: "text-base-900 dark:text-base-200",
3659
+ linkLeadingIcon: "text-base-500 dark:text-base-700",
3660
+ childLink: [
3661
+ "hover:bg-(--ui-bg-elevated)/50 text-(--ui-text) hover:text-(--ui-text-highlighted)",
3662
+ "transition-colors"
3663
+ ].join(" "),
3664
+ childLinkIcon: [
3665
+ "text-base-500 dark:text-base-700",
3666
+ "group-hover:text-(--ui-text)",
3667
+ "transition-colors"
3668
+ ].join(" ")
3669
+ }
3670
+ },
3671
+ disabled: {
3672
+ true: {
3673
+ link: "cursor-not-allowed opacity-75"
3674
+ }
3675
+ },
3676
+ highlight: {
3677
+ true: ""
3678
+ },
3679
+ level: {
3680
+ true: ""
3681
+ },
3682
+ collapsed: {
3683
+ true: ""
3684
+ }
3685
+ },
3686
+ compoundVariants: [
3687
+ // region horizontal ////
3688
+ {
3689
+ orientation: "horizontal",
3690
+ contentOrientation: "horizontal",
3691
+ class: {
3692
+ childList: "grid-cols-2 gap-2"
3693
+ }
3694
+ },
3695
+ {
3696
+ orientation: "horizontal",
3697
+ contentOrientation: "vertical",
3698
+ class: {
3699
+ childList: "gap-1",
3700
+ content: "w-60"
3701
+ }
3702
+ },
3703
+ {
3704
+ orientation: "horizontal",
3705
+ highlight: true,
3706
+ class: {
3707
+ link: ["after:absolute after:-bottom-2 after:inset-x-2.5 after:block after:h-px after:rounded-full", "after:transition-colors"]
3708
+ }
3709
+ },
3710
+ // endregion ////
3711
+ // region vertical ////
3712
+ {
3713
+ orientation: "vertical",
3714
+ highlight: true,
3715
+ level: true,
3716
+ class: {
3717
+ link: ["after:absolute after:-start-1.5 after:inset-y-0.5 after:block after:w-px after:rounded-full", "after:transition-colors"]
3718
+ }
3719
+ },
3720
+ // endregion ////
3721
+ // region disabled ////
3722
+ {
3723
+ disabled: false,
3724
+ active: false,
3725
+ variant: "pill",
3726
+ class: {
3727
+ link: [
3728
+ "transition-colors before:transition-colors"
3729
+ ].join(" "),
3730
+ linkLeadingIcon: [
3731
+ "group-hover:text-(--ui-text)",
3732
+ "transition-colors"
3733
+ ].join(" ")
3734
+ }
3735
+ },
3736
+ {
3737
+ disabled: false,
3738
+ active: false,
3739
+ variant: "pill",
3740
+ orientation: "horizontal",
3741
+ class: {
3742
+ link: "data-[state=open]:text-(--ui-text-highlighted)",
3743
+ linkLeadingIcon: "group-data-[state=open]:text-(--ui-text)"
3744
+ }
3745
+ },
3746
+ {
3747
+ disabled: false,
3748
+ variant: "pill",
3749
+ highlight: true,
3750
+ orientation: "horizontal",
3751
+ class: {
3752
+ link: "data-[state=open]:before:bg-(--ui-bg-elevated)/50"
3753
+ }
3754
+ },
3755
+ {
3756
+ disabled: false,
3757
+ variant: "pill",
3758
+ highlight: false,
3759
+ active: false,
3760
+ orientation: "horizontal",
3761
+ class: {
3762
+ link: "data-[state=open]:before:bg-(--ui-bg-elevated)/50"
3763
+ }
3764
+ },
3765
+ // endregion ////
3766
+ {
3767
+ color: "default",
3768
+ variant: "pill",
3769
+ active: true,
3770
+ class: {
3771
+ // link: 'text-(--ui-text-highlighted)',
3772
+ linkLeadingIcon: "text-(--ui-text-highlighted) group-data-[state=open]:text-(--ui-text-highlighted)",
3773
+ linkLabel: [
3774
+ "text-white dark:text-white",
3775
+ "bg-base-800 dark:bg-white/35"
3776
+ ].join(" ")
3777
+ }
3778
+ },
3779
+ {
3780
+ variant: "pill",
3781
+ active: true,
3782
+ highlight: false,
3783
+ class: {
3784
+ link: [
3785
+ "leading-9"
3786
+ ].join(" "),
3787
+ linkLabel: [
3788
+ "px-3",
3789
+ "-ms-3 me-3 rtl:-me-3 rtl:ms-3",
3790
+ "font-semibold leading-[1.563rem]",
3791
+ "text-white dark:text-white",
3792
+ "bg-base-800 dark:bg-white/35",
3793
+ // (--ui-bg-elevated)
3794
+ "rounded-2xl"
3795
+ ].join(" ")
3796
+ }
3797
+ },
3798
+ {
3799
+ variant: "pill",
3800
+ active: true,
3801
+ highlight: true,
3802
+ class: {
3803
+ link: [
3804
+ "hover:before:bg-(--ui-bg-elevated)/50",
3805
+ "before:transition-colors"
3806
+ ]
3807
+ }
3808
+ },
3809
+ // region link ////
3810
+ {
3811
+ disabled: false,
3812
+ active: false,
3813
+ variant: "link",
3814
+ class: {
3815
+ link: [
3816
+ "hover:text-base-950 dark:hover:text-base-50",
3817
+ "transition-colors"
3818
+ ].join(" "),
3819
+ linkLeadingIcon: [
3820
+ "group-hover:text-(--ui-text)",
3821
+ "transition-colors"
3822
+ ].join(" ")
3823
+ }
3824
+ },
3825
+ {
3826
+ disabled: false,
3827
+ active: false,
3828
+ variant: "link",
3829
+ orientation: "horizontal",
3830
+ class: {
3831
+ link: "data-[state=open]:text-(--ui-text-highlighted)",
3832
+ linkLeadingIcon: "group-data-[state=open]:text-(--ui-text)"
3833
+ }
3834
+ },
3835
+ {
3836
+ color: "default",
3837
+ variant: "link",
3838
+ active: true,
3839
+ class: {
3840
+ link: "text-(--ui-text-highlighted)",
3841
+ linkLeadingIcon: "text-(--ui-text-highlighted) group-data-[state=open]:text-(--ui-text-highlighted)"
3842
+ }
3843
+ },
3844
+ // endregion ////
3845
+ {
3846
+ highlightColor: "default",
3847
+ highlight: true,
3848
+ level: true,
3849
+ active: true,
3850
+ class: {
3851
+ link: "after:bg-(--ui-bg-inverted)"
3852
+ }
3853
+ },
3854
+ {
3855
+ orientation: "vertical",
3856
+ collapsed: false,
3857
+ class: {
3858
+ childList: "v-1",
3859
+ childItem: "v-2 [&>a]:ps-[44px]"
3860
+ }
3861
+ },
3862
+ {
3863
+ orientation: "vertical",
3864
+ collapsed: true,
3865
+ class: {
3866
+ link: "px-1.5"
3867
+ }
3868
+ }
3869
+ ],
3870
+ defaultVariants: {
3871
+ color: "default",
3872
+ highlightColor: "default",
3873
+ variant: "pill"
3874
+ }
3875
+ };
3876
+
3508
3877
  const popover = {
3509
3878
  slots: {
3510
3879
  content: [
@@ -5509,7 +5878,7 @@ const sidebar = {
5509
5878
  const sidebarHeader = {
5510
5879
  slots: {
5511
5880
  root: [
5512
- "p-4",
5881
+ "py-4",
5513
5882
  "flex flex-col",
5514
5883
  // 'border-b border-base-950/5 dark:border-white/5',
5515
5884
  "[&>[data-slot=section]+[data-slot=section]]:mt-2.5"
@@ -5520,7 +5889,7 @@ const sidebarHeader = {
5520
5889
  const sidebarBody = {
5521
5890
  slots: {
5522
5891
  root: [
5523
- "p-4",
5892
+ "py-4",
5524
5893
  "flex flex-1 flex-col",
5525
5894
  "overflow-y-auto",
5526
5895
  "[&>[data-slot=section]+[data-slot=section]]:mt-8"
@@ -5541,7 +5910,7 @@ const sidebarBody = {
5541
5910
  const sidebarFooter = {
5542
5911
  slots: {
5543
5912
  root: [
5544
- "p-4",
5913
+ "py-4",
5545
5914
  "flex flex-col",
5546
5915
  "max-lg:hidden",
5547
5916
  // 'border-t border-base-950/5 dark:border-white/5',
@@ -5553,6 +5922,7 @@ const sidebarFooter = {
5553
5922
  const sidebarSection = {
5554
5923
  slots: {
5555
5924
  root: [
5925
+ "ps-2xl pe-xs",
5556
5926
  "flex flex-col gap-0.5"
5557
5927
  ].join(" ")
5558
5928
  }
@@ -5562,7 +5932,6 @@ const sidebarHeading = {
5562
5932
  slots: {
5563
5933
  root: [
5564
5934
  "mb-1",
5565
- "px-2",
5566
5935
  "text-xs/6 font-medium ",
5567
5936
  "text-base-500 dark:text-base-400"
5568
5937
  ].join(" ")
@@ -5626,6 +5995,7 @@ const theme = {
5626
5995
  calendar: calendar,
5627
5996
  checkbox: checkbox,
5628
5997
  chip: chip,
5998
+ collapsible: collapsible,
5629
5999
  container: container,
5630
6000
  countdown: countdown,
5631
6001
  descriptionList: descriptionList,
@@ -5642,6 +6012,7 @@ const theme = {
5642
6012
  navbarDivider: navbarDivider,
5643
6013
  navbarSection: navbarSection,
5644
6014
  navbarSpacer: navbarSpacer,
6015
+ navigationMenu: navigationMenu,
5645
6016
  popover: popover,
5646
6017
  progress: progress,
5647
6018
  radioGroup: radioGroup,
package/dist/unplugin.cjs CHANGED
@@ -5,7 +5,7 @@ const pathe = require('pathe');
5
5
  const unplugin = require('unplugin');
6
6
  const defu = require('defu');
7
7
  const tailwind = require('@tailwindcss/vite');
8
- const templates = require('./shared/b24ui-nuxt.CY35QViH.cjs');
8
+ const templates = require('./shared/b24ui-nuxt.DHbGsmbj.cjs');
9
9
  const tinyglobby = require('tinyglobby');
10
10
  const knitwork = require('knitwork');
11
11
  const MagicString = require('magic-string');
package/dist/unplugin.mjs CHANGED
@@ -3,7 +3,7 @@ import { join, normalize } from 'pathe';
3
3
  import { createUnplugin } from 'unplugin';
4
4
  import { defu } from 'defu';
5
5
  import tailwind from '@tailwindcss/vite';
6
- import { g as getTemplates, d as defaultOptions, a as getDefaultUiConfig } from './shared/b24ui-nuxt._rviRWFf.mjs';
6
+ import { g as getTemplates, d as defaultOptions, a as getDefaultUiConfig } from './shared/b24ui-nuxt.Bj4fKDSa.mjs';
7
7
  import { globSync } from 'tinyglobby';
8
8
  import { genSafeVariableName } from 'knitwork';
9
9
  import MagicString from 'magic-string';
package/dist/vite.cjs CHANGED
@@ -6,7 +6,7 @@ require('pathe');
6
6
  require('unplugin');
7
7
  require('defu');
8
8
  require('@tailwindcss/vite');
9
- require('./shared/b24ui-nuxt.CY35QViH.cjs');
9
+ require('./shared/b24ui-nuxt.DHbGsmbj.cjs');
10
10
  require('scule');
11
11
  require('@nuxt/kit');
12
12
  require('tinyglobby');
package/dist/vite.mjs CHANGED
@@ -4,7 +4,7 @@ import 'pathe';
4
4
  import 'unplugin';
5
5
  import 'defu';
6
6
  import '@tailwindcss/vite';
7
- import './shared/b24ui-nuxt._rviRWFf.mjs';
7
+ import './shared/b24ui-nuxt.Bj4fKDSa.mjs';
8
8
  import 'scule';
9
9
  import '@nuxt/kit';
10
10
  import 'tinyglobby';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrix24/b24ui-nuxt",
3
3
  "description": "Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE",
4
- "version": "0.4.10",
4
+ "version": "0.5.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/bitrix24/b24ui.git"
@@ -72,8 +72,8 @@
72
72
  "@bitrix24/b24style": "^1.0.1",
73
73
  "@internationalized/date": "^3.7.0",
74
74
  "@internationalized/number": "^3.6.0",
75
- "@nuxt/kit": "^3.16.0",
76
- "@nuxt/schema": "^3.16.0",
75
+ "@nuxt/kit": "^3.16.1",
76
+ "@nuxt/schema": "^3.16.1",
77
77
  "@nuxtjs/color-mode": "^3.5.2",
78
78
  "@tailwindcss/postcss": "^4.0.14",
79
79
  "@tailwindcss/vite": "^4.0.14",
@@ -83,7 +83,7 @@
83
83
  "@vueuse/integrations": "^13.0.0",
84
84
  "canvas-confetti": "^1.9.3",
85
85
  "colortranslator": "^4.1.0",
86
- "consola": "^3.4.0",
86
+ "consola": "^3.4.2",
87
87
  "defu": "^6.1.4",
88
88
  "embla-carousel-auto-height": "^8.5.2",
89
89
  "embla-carousel-auto-scroll": "^8.5.2",
@@ -121,10 +121,10 @@
121
121
  "eslint": "^9.22.0",
122
122
  "happy-dom": "^17.4.4",
123
123
  "joi": "^17.13.3",
124
- "nuxt": "^3.16.0",
124
+ "nuxt": "^3.16.1",
125
125
  "nuxt-component-meta": "^0.10.0",
126
126
  "superstruct": "^2.0.2",
127
- "valibot": "^0.42.1",
127
+ "valibot": "^1.0.0",
128
128
  "vitepress": "^1.5.0",
129
129
  "vitest": "^3.0.9",
130
130
  "vitest-environment-nuxt": "^1.0.1",