@bitrix24/b24ui-nuxt 0.5.1 → 0.5.3

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.
@@ -3565,12 +3565,11 @@ const navigationMenu = {
3565
3565
  "relative overflow-hidden",
3566
3566
  "w-full",
3567
3567
  "bg-white dark:bg-base-dark",
3568
- "shadow-lg",
3569
- "rounded-2xs",
3570
- "ring ring-base-300 dark:ring-base-800",
3568
+ "shadow-[0_15px_21px_rgba(83,92,105,.15)]",
3571
3569
  "h-(--reka-navigation-menu-viewport-height)",
3572
- "transition-[width,height,left] duration-200 origin-[top_center]",
3573
- "motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]"
3570
+ "transition-[width,height] duration-200 origin-[top_center]"
3571
+ // left
3572
+ // 'motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]'
3574
3573
  ].join(" "),
3575
3574
  content: "absolute top-0 left-0 w-full",
3576
3575
  indicator: [
@@ -3642,6 +3641,10 @@ const navigationMenu = {
3642
3641
  pill: {
3643
3642
  link: [
3644
3643
  "hover:before:bg-base-250/80 dark:hover:before:bg-white/10"
3644
+ ].join(" "),
3645
+ viewport: [
3646
+ "rounded-md",
3647
+ "ring ring-base-300 dark:ring-base-800"
3645
3648
  ].join(" ")
3646
3649
  },
3647
3650
  link: ""
@@ -3649,8 +3652,8 @@ const navigationMenu = {
3649
3652
  orientation: {
3650
3653
  horizontal: {
3651
3654
  root: "items-center justify-between",
3652
- list: "flex items-center",
3653
- item: "py-2",
3655
+ list: "flex items-center gap-x-1",
3656
+ item: "py-2 empty:hidden",
3654
3657
  link: "px-2.5 py-1.5 before:inset-x-px before:inset-y-0",
3655
3658
  childList: "grid p-2"
3656
3659
  },
@@ -3667,29 +3670,42 @@ const navigationMenu = {
3667
3670
  horizontal: {
3668
3671
  viewport: "",
3669
3672
  viewportWrapper: "justify-center",
3670
- 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]"
3673
+ 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]",
3674
+ childLinkLabelExternalIcon: [
3675
+ "h-4"
3676
+ ].join(" ")
3671
3677
  },
3672
3678
  vertical: {
3673
- viewport: "sm:w-(--reka-navigation-menu-viewport-width) left-(--reka-navigation-menu-viewport-left)",
3674
- content: ""
3679
+ viewport: [
3680
+ "w-(--reka-navigation-menu-viewport-width) left-(--reka-navigation-menu-viewport-left)",
3681
+ "[&:has(>[data-viewport=rtl])]:left-auto [&:has(>[data-viewport=rtl])]:-right-[calc(100%-var(--reka-navigation-menu-viewport-width))]"
3682
+ ].join(" "),
3683
+ content: "",
3684
+ childLinkLabel: [
3685
+ "text-md",
3686
+ "text-base-950 dark:text-base-50"
3687
+ ].join(" "),
3688
+ childLinkLabelExternalIcon: [
3689
+ "h-4"
3690
+ ].join(" ")
3675
3691
  }
3676
3692
  },
3677
3693
  active: {
3678
3694
  true: {
3679
3695
  childLink: [
3680
- "bg-base-250/80 dark:bg-white/10",
3696
+ "bg-base-20 dark:bg-base-900",
3681
3697
  "text-base-950 dark:text-base-50",
3682
3698
  "font-semibold"
3683
3699
  ].join(" "),
3684
- childLinkIcon: "text-base-950 dark:text-base-50"
3700
+ childLinkIcon: "text-base-950 dark:text-base-200"
3685
3701
  },
3686
3702
  false: {
3687
3703
  link: "text-base-900 dark:text-base-200",
3688
3704
  linkLeadingIcon: "text-base-500 dark:text-base-700",
3689
3705
  childLink: [
3690
- "hover:bg-base-250/80 dark:hover:bg-white/10",
3706
+ "hover:bg-base-20 dark:hover:bg-base-900",
3691
3707
  "text-base-500 dark:text-base-700",
3692
- "hover:text-base-950 dark:hover:dark:text-base-50",
3708
+ "hover:text-base-950 dark:hover:dark:text-base-200",
3693
3709
  "transition-colors"
3694
3710
  ].join(" "),
3695
3711
  childLinkIcon: [
@@ -3750,6 +3766,16 @@ const navigationMenu = {
3750
3766
  },
3751
3767
  // endregion ////
3752
3768
  // region pill ////
3769
+ {
3770
+ disabled: true,
3771
+ orientation: "horizontal",
3772
+ variant: "pill",
3773
+ class: {
3774
+ link: [
3775
+ "hover:before:rounded-md"
3776
+ ].join(" ")
3777
+ }
3778
+ },
3753
3779
  {
3754
3780
  disabled: false,
3755
3781
  active: false,
@@ -3812,6 +3838,26 @@ const navigationMenu = {
3812
3838
  ].join(" ")
3813
3839
  }
3814
3840
  },
3841
+ {
3842
+ color: "default",
3843
+ orientation: "horizontal",
3844
+ variant: "pill",
3845
+ active: true,
3846
+ class: {
3847
+ link: [
3848
+ "min-h-9",
3849
+ "before:rounded-md",
3850
+ "before:bg-base-800 dark:before:bg-white/35",
3851
+ "hover:before:bg-base-800 hover:dark:before:bg-white/35",
3852
+ "data-[state=open]:before:bg-base-800 dark:data-[state=open]:before:bg-white/35"
3853
+ ].join(" "),
3854
+ linkLabelWrapper: [
3855
+ "min-h-9",
3856
+ "bg-inherit dark:bg-inherit",
3857
+ "rounded-none"
3858
+ ].join(" ")
3859
+ }
3860
+ },
3815
3861
  {
3816
3862
  color: "danger",
3817
3863
  variant: "pill",
@@ -3831,6 +3877,26 @@ const navigationMenu = {
3831
3877
  ].join(" ")
3832
3878
  }
3833
3879
  },
3880
+ {
3881
+ color: "danger",
3882
+ orientation: "horizontal",
3883
+ variant: "pill",
3884
+ active: true,
3885
+ class: {
3886
+ link: [
3887
+ "min-h-9",
3888
+ "before:rounded-md",
3889
+ "before:bg-red-800 dark:before:bg-red-800",
3890
+ "hover:before:bg-red-800 hover:dark:before:bg-red-800",
3891
+ "data-[state=open]:before:bg-red-800 dark:data-[state=open]:before:bg-red-800"
3892
+ ].join(" "),
3893
+ linkLabelWrapper: [
3894
+ "min-h-9",
3895
+ "bg-inherit dark:bg-inherit",
3896
+ "rounded-none"
3897
+ ].join(" ")
3898
+ }
3899
+ },
3834
3900
  {
3835
3901
  color: "success",
3836
3902
  variant: "pill",
@@ -3850,6 +3916,26 @@ const navigationMenu = {
3850
3916
  ].join(" ")
3851
3917
  }
3852
3918
  },
3919
+ {
3920
+ color: "success",
3921
+ orientation: "horizontal",
3922
+ variant: "pill",
3923
+ active: true,
3924
+ class: {
3925
+ link: [
3926
+ "min-h-9",
3927
+ "before:rounded-md",
3928
+ "before:bg-green-800 dark:before:bg-green-800",
3929
+ "hover:before:bg-green-800 hover:dark:before:bg-green-800",
3930
+ "data-[state=open]:before:bg-green-800 dark:data-[state=open]:before:bg-green-800"
3931
+ ].join(" "),
3932
+ linkLabelWrapper: [
3933
+ "min-h-9",
3934
+ "bg-inherit dark:bg-inherit",
3935
+ "rounded-none"
3936
+ ].join(" ")
3937
+ }
3938
+ },
3853
3939
  {
3854
3940
  color: "warning",
3855
3941
  variant: "pill",
@@ -3869,6 +3955,26 @@ const navigationMenu = {
3869
3955
  ].join(" ")
3870
3956
  }
3871
3957
  },
3958
+ {
3959
+ color: "warning",
3960
+ orientation: "horizontal",
3961
+ variant: "pill",
3962
+ active: true,
3963
+ class: {
3964
+ link: [
3965
+ "min-h-9",
3966
+ "before:rounded-md",
3967
+ "before:bg-orange-800 dark:before:bg-orange-800",
3968
+ "hover:before:bg-orange-800 hover:dark:before:bg-orange-800",
3969
+ "data-[state=open]:before:bg-orange-800 dark:data-[state=open]:before:bg-orange-800"
3970
+ ].join(" "),
3971
+ linkLabelWrapper: [
3972
+ "min-h-9",
3973
+ "bg-inherit dark:bg-inherit",
3974
+ "rounded-none"
3975
+ ].join(" ")
3976
+ }
3977
+ },
3872
3978
  {
3873
3979
  color: "primary",
3874
3980
  variant: "pill",
@@ -3888,6 +3994,26 @@ const navigationMenu = {
3888
3994
  ].join(" ")
3889
3995
  }
3890
3996
  },
3997
+ {
3998
+ color: "primary",
3999
+ orientation: "horizontal",
4000
+ variant: "pill",
4001
+ active: true,
4002
+ class: {
4003
+ link: [
4004
+ "min-h-9",
4005
+ "before:rounded-md",
4006
+ "before:bg-blue-800 dark:before:bg-blue-800",
4007
+ "hover:before:bg-blue-800 hover:dark:before:bg-blue-800",
4008
+ "data-[state=open]:before:bg-blue-800 dark:data-[state=open]:before:bg-blue-800"
4009
+ ].join(" "),
4010
+ linkLabelWrapper: [
4011
+ "min-h-9",
4012
+ "bg-inherit dark:bg-inherit",
4013
+ "rounded-none"
4014
+ ].join(" ")
4015
+ }
4016
+ },
3891
4017
  {
3892
4018
  color: "secondary",
3893
4019
  variant: "pill",
@@ -3907,6 +4033,26 @@ const navigationMenu = {
3907
4033
  ].join(" ")
3908
4034
  }
3909
4035
  },
4036
+ {
4037
+ color: "secondary",
4038
+ orientation: "horizontal",
4039
+ variant: "pill",
4040
+ active: true,
4041
+ class: {
4042
+ link: [
4043
+ "min-h-9",
4044
+ "before:rounded-md",
4045
+ "before:bg-cyan-800 dark:before:bg-cyan-800",
4046
+ "hover:before:bg-cyan-800 hover:dark:before:bg-cyan-800",
4047
+ "data-[state=open]:before:bg-cyan-800 dark:data-[state=open]:before:bg-cyan-800"
4048
+ ].join(" "),
4049
+ linkLabelWrapper: [
4050
+ "min-h-9",
4051
+ "bg-inherit dark:bg-inherit",
4052
+ "rounded-none"
4053
+ ].join(" ")
4054
+ }
4055
+ },
3910
4056
  {
3911
4057
  color: "collab",
3912
4058
  variant: "pill",
@@ -3926,6 +4072,26 @@ const navigationMenu = {
3926
4072
  ].join(" ")
3927
4073
  }
3928
4074
  },
4075
+ {
4076
+ color: "collab",
4077
+ orientation: "horizontal",
4078
+ variant: "pill",
4079
+ active: true,
4080
+ class: {
4081
+ link: [
4082
+ "min-h-9",
4083
+ "before:rounded-md",
4084
+ "before:bg-collab-800 dark:before:bg-collab-800",
4085
+ "hover:before:bg-collab-800 hover:dark:before:bg-collab-800",
4086
+ "data-[state=open]:before:bg-collab-800 dark:data-[state=open]:before:bg-collab-800"
4087
+ ].join(" "),
4088
+ linkLabelWrapper: [
4089
+ "min-h-9",
4090
+ "bg-inherit dark:bg-inherit",
4091
+ "rounded-none"
4092
+ ].join(" ")
4093
+ }
4094
+ },
3929
4095
  {
3930
4096
  color: "ai",
3931
4097
  variant: "pill",
@@ -3945,6 +4111,26 @@ const navigationMenu = {
3945
4111
  ].join(" ")
3946
4112
  }
3947
4113
  },
4114
+ {
4115
+ color: "ai",
4116
+ orientation: "horizontal",
4117
+ variant: "pill",
4118
+ active: true,
4119
+ class: {
4120
+ link: [
4121
+ "min-h-9",
4122
+ "before:rounded-md",
4123
+ "before:bg-ai-800 dark:before:bg-ai-800",
4124
+ "hover:before:bg-ai-800 hover:dark:before:bg-ai-800",
4125
+ "data-[state=open]:before:bg-ai-800 dark:data-[state=open]:before:bg-ai-800"
4126
+ ].join(" "),
4127
+ linkLabelWrapper: [
4128
+ "min-h-9",
4129
+ "bg-inherit dark:bg-inherit",
4130
+ "rounded-none"
4131
+ ].join(" ")
4132
+ }
4133
+ },
3948
4134
  {
3949
4135
  variant: "pill",
3950
4136
  active: true,
@@ -3966,6 +4152,17 @@ const navigationMenu = {
3966
4152
  ].join(" ")
3967
4153
  }
3968
4154
  },
4155
+ {
4156
+ variant: "pill",
4157
+ orientation: "horizontal",
4158
+ active: true,
4159
+ highlight: false,
4160
+ class: {
4161
+ linkLabelWrapper: [
4162
+ "bg-inherit dark:bg-inherit"
4163
+ ].join(" ")
4164
+ }
4165
+ },
3969
4166
  {
3970
4167
  variant: "pill",
3971
4168
  active: true,
@@ -3974,11 +4171,133 @@ const navigationMenu = {
3974
4171
  link: [
3975
4172
  "hover:before:bg-base-250/80 dark:hover:before:bg-white/10",
3976
4173
  "before:transition-colors"
3977
- ]
4174
+ ].join(" ")
4175
+ }
4176
+ },
4177
+ {
4178
+ color: "default",
4179
+ orientation: "horizontal",
4180
+ variant: "pill",
4181
+ active: true,
4182
+ highlight: true,
4183
+ class: {
4184
+ link: [
4185
+ "hover:before:bg-base-800 hover:dark:before:bg-white/35",
4186
+ "before:transition-colors"
4187
+ ].join(" ")
4188
+ }
4189
+ },
4190
+ {
4191
+ color: "danger",
4192
+ orientation: "horizontal",
4193
+ variant: "pill",
4194
+ active: true,
4195
+ highlight: true,
4196
+ class: {
4197
+ link: [
4198
+ "hover:before:bg-red-800 hover:dark:before:bg-red-800",
4199
+ "before:transition-colors"
4200
+ ].join(" ")
4201
+ }
4202
+ },
4203
+ {
4204
+ color: "success",
4205
+ orientation: "horizontal",
4206
+ variant: "pill",
4207
+ active: true,
4208
+ highlight: true,
4209
+ class: {
4210
+ link: [
4211
+ "hover:before:bg-green-800 hover:dark:before:bg-green-800",
4212
+ "before:transition-colors"
4213
+ ].join(" ")
4214
+ }
4215
+ },
4216
+ {
4217
+ color: "warning",
4218
+ orientation: "horizontal",
4219
+ variant: "pill",
4220
+ active: true,
4221
+ highlight: true,
4222
+ class: {
4223
+ link: [
4224
+ "hover:before:bg-orange-800 hover:dark:before:bg-orange-800",
4225
+ "before:transition-colors"
4226
+ ].join(" ")
4227
+ }
4228
+ },
4229
+ {
4230
+ color: "primary",
4231
+ orientation: "horizontal",
4232
+ variant: "pill",
4233
+ active: true,
4234
+ highlight: true,
4235
+ class: {
4236
+ link: [
4237
+ "hover:before:bg-blue-800 hover:dark:before:bg-blue-800",
4238
+ "before:transition-colors"
4239
+ ].join(" ")
4240
+ }
4241
+ },
4242
+ {
4243
+ color: "secondary",
4244
+ orientation: "horizontal",
4245
+ variant: "pill",
4246
+ active: true,
4247
+ highlight: true,
4248
+ class: {
4249
+ link: [
4250
+ "hover:before:bg-cyan-800 hover:dark:before:bg-cyan-800",
4251
+ "before:transition-colors"
4252
+ ].join(" ")
4253
+ }
4254
+ },
4255
+ {
4256
+ color: "collab",
4257
+ orientation: "horizontal",
4258
+ variant: "pill",
4259
+ active: true,
4260
+ highlight: true,
4261
+ class: {
4262
+ link: [
4263
+ "hover:before:bg-collab-800 hover:dark:before:bg-collab-800",
4264
+ "before:transition-colors"
4265
+ ].join(" ")
4266
+ }
4267
+ },
4268
+ {
4269
+ color: "ai",
4270
+ orientation: "horizontal",
4271
+ variant: "pill",
4272
+ active: true,
4273
+ highlight: true,
4274
+ class: {
4275
+ link: [
4276
+ "hover:before:bg-ai-800 hover:dark:before:bg-ai-800",
4277
+ "before:transition-colors"
4278
+ ].join(" ")
3978
4279
  }
3979
4280
  },
3980
4281
  // endregion ////
3981
4282
  // region link ////
4283
+ {
4284
+ orientation: "horizontal",
4285
+ variant: "link",
4286
+ class: {
4287
+ viewportWrapper: [
4288
+ "top-[calc(100%+0.4rem)]"
4289
+ ].join(" "),
4290
+ viewport: [
4291
+ "rounded-b-md",
4292
+ "[&:has(>[data-viewport=ltr])]:rounded-tr-md [&:has(>[data-viewport=rtl])]:rounded-tl-md",
4293
+ "clip-path-viewport-wrapper"
4294
+ ].join(" "),
4295
+ link: [
4296
+ "before:inset-x-[0px] before:-inset-y-[6px] before:h-[70px]",
4297
+ "before:rounded-t-md"
4298
+ ].join(" ")
4299
+ }
4300
+ },
3982
4301
  {
3983
4302
  disabled: false,
3984
4303
  active: false,
@@ -3994,13 +4313,26 @@ const navigationMenu = {
3994
4313
  ].join(" ")
3995
4314
  }
3996
4315
  },
4316
+ {
4317
+ disabled: false,
4318
+ variant: "link",
4319
+ orientation: "horizontal",
4320
+ class: {
4321
+ link: [
4322
+ "data-[state=open]:before:shadow-[0_6px_21px_rgba(83,92,105,.15)]",
4323
+ "data-[state=open]:before:bg-white dark:data-[state=open]:before:bg-base-dark"
4324
+ ].join(" ")
4325
+ }
4326
+ },
3997
4327
  {
3998
4328
  disabled: false,
3999
4329
  active: false,
4000
4330
  variant: "link",
4001
4331
  orientation: "horizontal",
4002
4332
  class: {
4003
- link: "data-[state=open]:text-base-950 dark:data-[state=open]:text-base-50",
4333
+ link: [
4334
+ "data-[state=open]:text-base-950 dark:data-[state=open]:text-base-50"
4335
+ ].join(" "),
4004
4336
  linkLeadingIcon: "group-data-[state=open]:text-base-950 dark:group-data-[state=open]:text-base-50"
4005
4337
  }
4006
4338
  },
@@ -4045,8 +4377,8 @@ const navigationMenu = {
4045
4377
  variant: "link",
4046
4378
  active: true,
4047
4379
  class: {
4048
- link: "font-semibold text-blue-800 dark:text-blue-600",
4049
- linkLeadingIcon: "text-blue-800 group-data-[state=open]:text-blue-600 dark:text-blue-600 dark:group-data-[state=open]:text-blue-600"
4380
+ link: "font-semibold text-blue-850 dark:text-blue-600",
4381
+ linkLeadingIcon: "text-blue-850 group-data-[state=open]:text-blue-600 dark:text-blue-600 dark:group-data-[state=open]:text-blue-600"
4050
4382
  }
4051
4383
  },
4052
4384
  {
@@ -4079,6 +4411,7 @@ const navigationMenu = {
4079
4411
  // endregion ////
4080
4412
  // region highlight.Color ////
4081
4413
  {
4414
+ orientation: "vertical",
4082
4415
  highlightColor: "default",
4083
4416
  highlight: true,
4084
4417
  level: true,
@@ -4088,6 +4421,18 @@ const navigationMenu = {
4088
4421
  }
4089
4422
  },
4090
4423
  {
4424
+ orientation: "horizontal",
4425
+ variant: "link",
4426
+ highlightColor: "default",
4427
+ highlight: true,
4428
+ level: true,
4429
+ active: true,
4430
+ class: {
4431
+ link: "after:bg-base-500"
4432
+ }
4433
+ },
4434
+ {
4435
+ orientation: "vertical",
4091
4436
  highlightColor: "danger",
4092
4437
  highlight: true,
4093
4438
  level: true,
@@ -4097,15 +4442,46 @@ const navigationMenu = {
4097
4442
  }
4098
4443
  },
4099
4444
  {
4445
+ orientation: "horizontal",
4446
+ variant: "link",
4447
+ highlightColor: "danger",
4448
+ highlight: true,
4449
+ level: true,
4450
+ active: true,
4451
+ class: {
4452
+ link: "after:bg-red-500 dark:after:bg-red-600"
4453
+ }
4454
+ },
4455
+ {
4456
+ orientation: "vertical",
4100
4457
  highlightColor: "success",
4101
4458
  highlight: true,
4102
4459
  level: true,
4103
4460
  active: true,
4461
+ class: { link: "after:bg-green-500 dark:after:bg-green-600" }
4462
+ },
4463
+ {
4464
+ orientation: "horizontal",
4465
+ variant: "link",
4466
+ highlightColor: "success",
4467
+ highlight: true,
4468
+ level: true,
4469
+ active: true,
4470
+ class: { link: "after:bg-green-500 dark:after:bg-green-600" }
4471
+ },
4472
+ {
4473
+ orientation: "vertical",
4474
+ highlightColor: "warning",
4475
+ highlight: true,
4476
+ level: true,
4477
+ active: true,
4104
4478
  class: {
4105
- link: "after:bg-green-500 dark:after:bg-green-600"
4479
+ link: "after:bg-orange-500 dark:after:bg-orange-600"
4106
4480
  }
4107
4481
  },
4108
4482
  {
4483
+ orientation: "horizontal",
4484
+ variant: "link",
4109
4485
  highlightColor: "warning",
4110
4486
  highlight: true,
4111
4487
  level: true,
@@ -4115,6 +4491,7 @@ const navigationMenu = {
4115
4491
  }
4116
4492
  },
4117
4493
  {
4494
+ orientation: "vertical",
4118
4495
  highlightColor: "primary",
4119
4496
  highlight: true,
4120
4497
  level: true,
@@ -4124,6 +4501,18 @@ const navigationMenu = {
4124
4501
  }
4125
4502
  },
4126
4503
  {
4504
+ orientation: "horizontal",
4505
+ variant: "link",
4506
+ highlightColor: "primary",
4507
+ highlight: true,
4508
+ level: true,
4509
+ active: true,
4510
+ class: {
4511
+ link: "after:bg-blue-850 dark:after:bg-blue-600"
4512
+ }
4513
+ },
4514
+ {
4515
+ orientation: "vertical",
4127
4516
  highlightColor: "secondary",
4128
4517
  highlight: true,
4129
4518
  level: true,
@@ -4133,6 +4522,18 @@ const navigationMenu = {
4133
4522
  }
4134
4523
  },
4135
4524
  {
4525
+ orientation: "horizontal",
4526
+ variant: "link",
4527
+ highlightColor: "secondary",
4528
+ highlight: true,
4529
+ level: true,
4530
+ active: true,
4531
+ class: {
4532
+ link: "after:bg-cyan-500 dark:after:bg-cyan-600"
4533
+ }
4534
+ },
4535
+ {
4536
+ orientation: "vertical",
4136
4537
  highlightColor: "collab",
4137
4538
  highlight: true,
4138
4539
  level: true,
@@ -4142,6 +4543,29 @@ const navigationMenu = {
4142
4543
  }
4143
4544
  },
4144
4545
  {
4546
+ orientation: "horizontal",
4547
+ variant: "link",
4548
+ highlightColor: "collab",
4549
+ highlight: true,
4550
+ level: true,
4551
+ active: true,
4552
+ class: {
4553
+ link: "after:bg-collab-500 dark:after:bg-collab-600"
4554
+ }
4555
+ },
4556
+ {
4557
+ orientation: "vertical",
4558
+ highlightColor: "ai",
4559
+ highlight: true,
4560
+ level: true,
4561
+ active: true,
4562
+ class: {
4563
+ link: "after:bg-ai-500 dark:after:bg-ai-600"
4564
+ }
4565
+ },
4566
+ {
4567
+ orientation: "horizontal",
4568
+ variant: "link",
4145
4569
  highlightColor: "ai",
4146
4570
  highlight: true,
4147
4571
  level: true,
@@ -4172,7 +4596,8 @@ const navigationMenu = {
4172
4596
  defaultVariants: {
4173
4597
  color: "default",
4174
4598
  highlightColor: "default",
4175
- variant: "pill"
4599
+ contentOrientation: "vertical",
4600
+ variant: "link"
4176
4601
  }
4177
4602
  };
4178
4603