negodesign 0.0.54 → 0.0.56
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/components/core/carousel/grid/product/types.d.ts +5 -0
- package/dist/components/core/carousel/grid/product/ui/CarouselGridProduct.svelte +9 -0
- package/dist/components/core/carousel/hero/CarouselHero.svelte +1 -1
- package/dist/components/core/nav/ui/Menu.svelte +66 -0
- package/dist/components/core/nav/ui/Menu.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/{nav-menu.svelte → NavMenu.svelte} +1 -1
- package/dist/components/core/nav/ui/mobile/nav-menu-drawer.svelte +1 -1
- package/dist/components/core/nav/ui/{menu-links.svelte → shared/MenuLinks.svelte} +1 -1
- package/dist/components/core/nav/ui/{menu-links.svelte.d.ts → shared/MenuLinks.svelte.d.ts} +1 -1
- package/dist/components/core/nav/ui/shared/MenuListItem.svelte +48 -0
- package/dist/components/core/nav/ui/shared/MenuListItem.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItem.svelte +15 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItem.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemCard.svelte +62 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemCard.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemGrid.svelte +32 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemGrid.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemList.svelte +24 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItemList.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItems.svelte +21 -0
- package/dist/components/core/nav/ui/shared/NavigationMenuItems.svelte.d.ts +4 -0
- package/dist/components/core/nav/ui/shared/types.d.ts +41 -0
- package/dist/components/core/nav/ui/shared/types.js +1 -0
- package/dist/components/core/sidebar/MenuBarSidebar.svelte +4 -4
- package/dist/components/core/{nav/ui/nav-menu-sidebar.svelte → sidebar/ui/navbar/NavMenuBarSidebar.svelte} +3 -3
- package/dist/components/core/sidebar/ui/navbar/NavMenuBarSidebar.svelte.d.ts +7 -0
- package/dist/components/core/{nav/ui/nav-menu-bottom-sidebar.svelte → sidebar/ui/navbar/NavMenuBottomSidebar.svelte} +2 -2
- package/dist/components/core/{nav/ui/nav-menu-bottom-sidebar.svelte.d.ts → sidebar/ui/navbar/NavMenuBottomSidebar.svelte.d.ts} +2 -2
- package/dist/components/core/{nav/ui/nav-menu-top-bar-sidebar.svelte → sidebar/ui/navbar/NavMenuTopBarSidebar.svelte} +4 -4
- package/dist/components/core/{nav/ui/nav-menu-top-bar-sidebar.svelte.d.ts → sidebar/ui/navbar/NavMenuTopBarSidebar.svelte.d.ts} +1 -1
- package/dist/components/core/{nav/ui/nav-user-sidebar.svelte → sidebar/ui/navbar/NavUserSidebar.svelte} +6 -6
- package/dist/components/core/{nav/ui/nav-user-sidebar.svelte.d.ts → sidebar/ui/navbar/NavUserSidebar.svelte.d.ts} +1 -1
- package/dist/components/core/{nav/ui → sidebar/ui/navbar}/nav-menu-header-sidebar.svelte +3 -3
- package/dist/components/ui/navigation-menu/index.d.ts +9 -0
- package/dist/components/ui/navigation-menu/index.js +11 -0
- package/dist/components/ui/navigation-menu/navigation-menu-content.svelte +20 -0
- package/dist/components/ui/navigation-menu/navigation-menu-content.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu-indicator.svelte +22 -0
- package/dist/components/ui/navigation-menu/navigation-menu-indicator.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu-item.svelte +17 -0
- package/dist/components/ui/navigation-menu/navigation-menu-item.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu-link.svelte +17 -0
- package/dist/components/ui/navigation-menu/navigation-menu-link.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu-list.svelte +20 -0
- package/dist/components/ui/navigation-menu/navigation-menu-list.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu-trigger.svelte +30 -0
- package/dist/components/ui/navigation-menu/navigation-menu-trigger.svelte.d.ts +5 -0
- package/dist/components/ui/navigation-menu/navigation-menu-viewport.svelte +22 -0
- package/dist/components/ui/navigation-menu/navigation-menu-viewport.svelte.d.ts +4 -0
- package/dist/components/ui/navigation-menu/navigation-menu.svelte +31 -0
- package/dist/components/ui/navigation-menu/navigation-menu.svelte.d.ts +7 -0
- package/dist/globals.css +287 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.js +4 -3
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
- package/dist/components/core/nav/ui/nav-menu-sidebar.svelte.d.ts +0 -7
- /package/dist/components/core/nav/ui/{nav-menu.svelte.d.ts → NavMenu.svelte.d.ts} +0 -0
- /package/dist/components/core/{nav/ui → sidebar/ui/navbar}/nav-menu-header-sidebar.svelte.d.ts +0 -0
package/dist/globals.css
CHANGED
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
--tracking-wider: 0.05em;
|
|
72
72
|
--tracking-widest: 0.1em;
|
|
73
73
|
--leading-tight: 1.25;
|
|
74
|
+
--leading-snug: 1.375;
|
|
74
75
|
--leading-relaxed: 1.625;
|
|
75
76
|
--radius-xl: calc(var(--radius) * 1.4);
|
|
76
77
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -338,6 +339,15 @@
|
|
|
338
339
|
.top-8 {
|
|
339
340
|
top: calc(var(--spacing) * 8);
|
|
340
341
|
}
|
|
342
|
+
.top-\[60\%\] {
|
|
343
|
+
top: 60%;
|
|
344
|
+
}
|
|
345
|
+
.top-full {
|
|
346
|
+
top: 100%;
|
|
347
|
+
}
|
|
348
|
+
.top-px {
|
|
349
|
+
top: 1px;
|
|
350
|
+
}
|
|
341
351
|
.-right-8 {
|
|
342
352
|
right: calc(var(--spacing) * -8);
|
|
343
353
|
}
|
|
@@ -422,6 +432,9 @@
|
|
|
422
432
|
.z-50 {
|
|
423
433
|
z-index: 50;
|
|
424
434
|
}
|
|
435
|
+
.z-\[1\] {
|
|
436
|
+
z-index: 1;
|
|
437
|
+
}
|
|
425
438
|
.order-first {
|
|
426
439
|
order: -9999;
|
|
427
440
|
}
|
|
@@ -434,6 +447,9 @@
|
|
|
434
447
|
.row-span-2 {
|
|
435
448
|
grid-row: span 2 / span 2;
|
|
436
449
|
}
|
|
450
|
+
.row-span-3 {
|
|
451
|
+
grid-row: span 3 / span 3;
|
|
452
|
+
}
|
|
437
453
|
.container {
|
|
438
454
|
width: 100%;
|
|
439
455
|
@media (width >= 40rem) {
|
|
@@ -503,6 +519,9 @@
|
|
|
503
519
|
.me-2 {
|
|
504
520
|
margin-inline-end: calc(var(--spacing) * 2);
|
|
505
521
|
}
|
|
522
|
+
.-mt-1 {
|
|
523
|
+
margin-top: calc(var(--spacing) * -1);
|
|
524
|
+
}
|
|
506
525
|
.-mt-4 {
|
|
507
526
|
margin-top: calc(var(--spacing) * -4);
|
|
508
527
|
}
|
|
@@ -609,6 +628,12 @@
|
|
|
609
628
|
-webkit-box-orient: vertical;
|
|
610
629
|
-webkit-line-clamp: 1;
|
|
611
630
|
}
|
|
631
|
+
.line-clamp-2 {
|
|
632
|
+
overflow: hidden;
|
|
633
|
+
display: -webkit-box;
|
|
634
|
+
-webkit-box-orient: vertical;
|
|
635
|
+
-webkit-line-clamp: 2;
|
|
636
|
+
}
|
|
612
637
|
.line-clamp-3 {
|
|
613
638
|
overflow: hidden;
|
|
614
639
|
display: -webkit-box;
|
|
@@ -825,6 +850,9 @@
|
|
|
825
850
|
.h-\[calc\(100\%-3px\)\] {
|
|
826
851
|
height: calc(100% - 3px);
|
|
827
852
|
}
|
|
853
|
+
.h-\[calc\(var\(--bits-navigation-menu-viewport-height\)\+1rem\)\] {
|
|
854
|
+
height: calc(var(--bits-navigation-menu-viewport-height) + 1rem);
|
|
855
|
+
}
|
|
828
856
|
.h-auto {
|
|
829
857
|
height: auto;
|
|
830
858
|
}
|
|
@@ -1005,6 +1033,9 @@
|
|
|
1005
1033
|
.w-full {
|
|
1006
1034
|
width: 100%;
|
|
1007
1035
|
}
|
|
1036
|
+
.w-max {
|
|
1037
|
+
width: max-content;
|
|
1038
|
+
}
|
|
1008
1039
|
.w-min {
|
|
1009
1040
|
width: min-content;
|
|
1010
1041
|
}
|
|
@@ -1041,6 +1072,9 @@
|
|
|
1041
1072
|
.max-w-full {
|
|
1042
1073
|
max-width: 100%;
|
|
1043
1074
|
}
|
|
1075
|
+
.max-w-max {
|
|
1076
|
+
max-width: max-content;
|
|
1077
|
+
}
|
|
1044
1078
|
.max-w-md {
|
|
1045
1079
|
max-width: var(--container-md);
|
|
1046
1080
|
}
|
|
@@ -1074,6 +1108,9 @@
|
|
|
1074
1108
|
.min-w-48 {
|
|
1075
1109
|
min-width: calc(var(--spacing) * 48);
|
|
1076
1110
|
}
|
|
1111
|
+
.min-w-50 {
|
|
1112
|
+
min-width: calc(var(--spacing) * 50);
|
|
1113
|
+
}
|
|
1077
1114
|
.min-w-56 {
|
|
1078
1115
|
min-width: calc(var(--spacing) * 56);
|
|
1079
1116
|
}
|
|
@@ -1225,6 +1262,9 @@
|
|
|
1225
1262
|
.list-disc {
|
|
1226
1263
|
list-style-type: disc;
|
|
1227
1264
|
}
|
|
1265
|
+
.list-none {
|
|
1266
|
+
list-style-type: none;
|
|
1267
|
+
}
|
|
1228
1268
|
.grid-cols-1 {
|
|
1229
1269
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1230
1270
|
}
|
|
@@ -1282,6 +1322,9 @@
|
|
|
1282
1322
|
.justify-start {
|
|
1283
1323
|
justify-content: flex-start;
|
|
1284
1324
|
}
|
|
1325
|
+
.gap-0 {
|
|
1326
|
+
gap: 0px;
|
|
1327
|
+
}
|
|
1285
1328
|
.gap-0\.5 {
|
|
1286
1329
|
gap: calc(var(--spacing) * 0.5);
|
|
1287
1330
|
}
|
|
@@ -1448,6 +1491,9 @@
|
|
|
1448
1491
|
.rounded-tl-lg {
|
|
1449
1492
|
border-top-left-radius: var(--radius);
|
|
1450
1493
|
}
|
|
1494
|
+
.rounded-tl-sm {
|
|
1495
|
+
border-top-left-radius: calc(var(--radius) * 0.6);
|
|
1496
|
+
}
|
|
1451
1497
|
.rounded-r-md {
|
|
1452
1498
|
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
1453
1499
|
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
@@ -1870,6 +1916,13 @@
|
|
|
1870
1916
|
.bg-yellow-500 {
|
|
1871
1917
|
background-color: var(--color-yellow-500);
|
|
1872
1918
|
}
|
|
1919
|
+
.bg-linear-to-b {
|
|
1920
|
+
--tw-gradient-position: to bottom;
|
|
1921
|
+
@supports (background-image: linear-gradient(in lab, red, red)) {
|
|
1922
|
+
--tw-gradient-position: to bottom in oklab;
|
|
1923
|
+
}
|
|
1924
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1925
|
+
}
|
|
1873
1926
|
.bg-linear-to-r {
|
|
1874
1927
|
--tw-gradient-position: to right;
|
|
1875
1928
|
@supports (background-image: linear-gradient(in lab, red, red)) {
|
|
@@ -1885,6 +1938,13 @@
|
|
|
1885
1938
|
--tw-gradient-from: var(--color-blue-400);
|
|
1886
1939
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1887
1940
|
}
|
|
1941
|
+
.from-muted\/50 {
|
|
1942
|
+
--tw-gradient-from: var(--muted);
|
|
1943
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1944
|
+
--tw-gradient-from: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
1945
|
+
}
|
|
1946
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1947
|
+
}
|
|
1888
1948
|
.to-\[\#9089fc\] {
|
|
1889
1949
|
--tw-gradient-to: #9089fc;
|
|
1890
1950
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
@@ -1893,6 +1953,10 @@
|
|
|
1893
1953
|
--tw-gradient-to: var(--color-blue-500);
|
|
1894
1954
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1895
1955
|
}
|
|
1956
|
+
.to-muted {
|
|
1957
|
+
--tw-gradient-to: var(--muted);
|
|
1958
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1959
|
+
}
|
|
1896
1960
|
.bg-clip-padding {
|
|
1897
1961
|
background-clip: padding-box;
|
|
1898
1962
|
}
|
|
@@ -1929,6 +1993,9 @@
|
|
|
1929
1993
|
.p-2 {
|
|
1930
1994
|
padding: calc(var(--spacing) * 2);
|
|
1931
1995
|
}
|
|
1996
|
+
.p-2\.5 {
|
|
1997
|
+
padding: calc(var(--spacing) * 2.5);
|
|
1998
|
+
}
|
|
1932
1999
|
.p-3 {
|
|
1933
2000
|
padding: calc(var(--spacing) * 3);
|
|
1934
2001
|
}
|
|
@@ -1977,6 +2044,9 @@
|
|
|
1977
2044
|
.px-4 {
|
|
1978
2045
|
padding-inline: calc(var(--spacing) * 4);
|
|
1979
2046
|
}
|
|
2047
|
+
.px-4\.5 {
|
|
2048
|
+
padding-inline: calc(var(--spacing) * 4.5);
|
|
2049
|
+
}
|
|
1980
2050
|
.px-5 {
|
|
1981
2051
|
padding-inline: calc(var(--spacing) * 5);
|
|
1982
2052
|
}
|
|
@@ -2049,6 +2119,9 @@
|
|
|
2049
2119
|
.pr-2 {
|
|
2050
2120
|
padding-right: calc(var(--spacing) * 2);
|
|
2051
2121
|
}
|
|
2122
|
+
.pr-3 {
|
|
2123
|
+
padding-right: calc(var(--spacing) * 3);
|
|
2124
|
+
}
|
|
2052
2125
|
.pr-5 {
|
|
2053
2126
|
padding-right: calc(var(--spacing) * 5);
|
|
2054
2127
|
}
|
|
@@ -2191,6 +2264,10 @@
|
|
|
2191
2264
|
--tw-leading: var(--leading-relaxed);
|
|
2192
2265
|
line-height: var(--leading-relaxed);
|
|
2193
2266
|
}
|
|
2267
|
+
.leading-snug {
|
|
2268
|
+
--tw-leading: var(--leading-snug);
|
|
2269
|
+
line-height: var(--leading-snug);
|
|
2270
|
+
}
|
|
2194
2271
|
.leading-tight {
|
|
2195
2272
|
--tw-leading: var(--leading-tight);
|
|
2196
2273
|
line-height: var(--leading-tight);
|
|
@@ -2396,6 +2473,9 @@
|
|
|
2396
2473
|
.line-through {
|
|
2397
2474
|
text-decoration-line: line-through;
|
|
2398
2475
|
}
|
|
2476
|
+
.no-underline {
|
|
2477
|
+
text-decoration-line: none;
|
|
2478
|
+
}
|
|
2399
2479
|
.underline {
|
|
2400
2480
|
text-decoration-line: underline;
|
|
2401
2481
|
}
|
|
@@ -2649,6 +2729,10 @@
|
|
|
2649
2729
|
--tw-duration: 1000ms;
|
|
2650
2730
|
transition-duration: 1000ms;
|
|
2651
2731
|
}
|
|
2732
|
+
.ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] {
|
|
2733
|
+
--tw-ease: cubic-bezier(0.22,1,0.36,1);
|
|
2734
|
+
transition-timing-function: cubic-bezier(0.22,1,0.36,1);
|
|
2735
|
+
}
|
|
2652
2736
|
.ease-in-out {
|
|
2653
2737
|
--tw-ease: var(--ease-in-out);
|
|
2654
2738
|
transition-timing-function: var(--ease-in-out);
|
|
@@ -2740,6 +2824,9 @@
|
|
|
2740
2824
|
.group-aria-disabled\:opacity-50:is(:where(.group)[aria-disabled="true"] *) {
|
|
2741
2825
|
opacity: 50%;
|
|
2742
2826
|
}
|
|
2827
|
+
.group-data-popup-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger)[data-popup-open] *) {
|
|
2828
|
+
rotate: 180deg;
|
|
2829
|
+
}
|
|
2743
2830
|
.group-data-selected\/command-item\:text-foreground:is(:where(.group\/command-item)[data-selected] *) {
|
|
2744
2831
|
color: var(--foreground);
|
|
2745
2832
|
}
|
|
@@ -2876,6 +2963,45 @@
|
|
|
2876
2963
|
.group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) {
|
|
2877
2964
|
text-align: center;
|
|
2878
2965
|
}
|
|
2966
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:top-full:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2967
|
+
top: 100%;
|
|
2968
|
+
}
|
|
2969
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2970
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
2971
|
+
}
|
|
2972
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2973
|
+
overflow: hidden;
|
|
2974
|
+
}
|
|
2975
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:rounded-2xl:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2976
|
+
border-radius: calc(var(--radius) * 1.8);
|
|
2977
|
+
}
|
|
2978
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:bg-popover:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2979
|
+
background-color: var(--popover);
|
|
2980
|
+
}
|
|
2981
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2982
|
+
color: var(--popover-foreground);
|
|
2983
|
+
}
|
|
2984
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:shadow-2xl:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2985
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
2986
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2987
|
+
}
|
|
2988
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:ring-1:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2989
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2990
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2991
|
+
}
|
|
2992
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:ring-foreground\/5:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2993
|
+
--tw-ring-color: var(--foreground);
|
|
2994
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2995
|
+
--tw-ring-color: color-mix(in oklab, var(--foreground) 5%, transparent);
|
|
2996
|
+
}
|
|
2997
|
+
}
|
|
2998
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:duration-300:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2999
|
+
--tw-duration: 300ms;
|
|
3000
|
+
transition-duration: 300ms;
|
|
3001
|
+
}
|
|
3002
|
+
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:is(:where(.group\/navigation-menu-trigger):where([data-state="open"]), :where(.group\/navigation-menu-trigger):where([data-open]:not([data-open="false"]))) *) {
|
|
3003
|
+
rotate: 180deg;
|
|
3004
|
+
}
|
|
2879
3005
|
.group-data-horizontal\/tabs\:h-9:is(:where(.group\/tabs):where([data-orientation="horizontal"]) *) {
|
|
2880
3006
|
height: calc(var(--spacing) * 9);
|
|
2881
3007
|
}
|
|
@@ -3119,6 +3245,9 @@
|
|
|
3119
3245
|
border-bottom-width: 0px;
|
|
3120
3246
|
}
|
|
3121
3247
|
@media (hover: hover) {
|
|
3248
|
+
.hover\:bg-accent:hover {
|
|
3249
|
+
background-color: var(--accent);
|
|
3250
|
+
}
|
|
3122
3251
|
.hover\:bg-black\/70:hover {
|
|
3123
3252
|
background-color: color-mix(in srgb, #000 70%, transparent);
|
|
3124
3253
|
}
|
|
@@ -3249,6 +3378,9 @@
|
|
|
3249
3378
|
--tw-font-weight: var(--font-weight-bold);
|
|
3250
3379
|
font-weight: var(--font-weight-bold);
|
|
3251
3380
|
}
|
|
3381
|
+
.hover\:text-accent-foreground:hover {
|
|
3382
|
+
color: var(--accent-foreground);
|
|
3383
|
+
}
|
|
3252
3384
|
.hover\:text-foreground:hover {
|
|
3253
3385
|
color: var(--foreground);
|
|
3254
3386
|
}
|
|
@@ -3297,9 +3429,16 @@
|
|
|
3297
3429
|
.focus\:bg-accent:focus {
|
|
3298
3430
|
background-color: var(--accent);
|
|
3299
3431
|
}
|
|
3432
|
+
.focus\:bg-muted:focus {
|
|
3433
|
+
background-color: var(--muted);
|
|
3434
|
+
}
|
|
3300
3435
|
.focus\:text-accent-foreground:focus {
|
|
3301
3436
|
color: var(--accent-foreground);
|
|
3302
3437
|
}
|
|
3438
|
+
.focus\:shadow-md:focus {
|
|
3439
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
3440
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3441
|
+
}
|
|
3303
3442
|
.focus\:ring-0:focus {
|
|
3304
3443
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3305
3444
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3406,6 +3545,9 @@
|
|
|
3406
3545
|
:where([data-slot="dialog-content"]) .in-data-\[slot\=dialog-content\]\:rounded-lg\! {
|
|
3407
3546
|
border-radius: var(--radius) !important;
|
|
3408
3547
|
}
|
|
3548
|
+
:where([data-slot="navigation-menu-content"]) .in-data-\[slot\=navigation-menu-content\]\:rounded-xl {
|
|
3549
|
+
border-radius: calc(var(--radius) * 1.4);
|
|
3550
|
+
}
|
|
3409
3551
|
.has-disabled\:opacity-50:has(:disabled) {
|
|
3410
3552
|
opacity: 50%;
|
|
3411
3553
|
}
|
|
@@ -3568,6 +3710,17 @@
|
|
|
3568
3710
|
.data-placeholder\:text-muted-foreground[data-placeholder] {
|
|
3569
3711
|
color: var(--muted-foreground);
|
|
3570
3712
|
}
|
|
3713
|
+
.data-popup-open\:bg-muted\/50[data-popup-open] {
|
|
3714
|
+
background-color: var(--muted);
|
|
3715
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3716
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
3717
|
+
}
|
|
3718
|
+
}
|
|
3719
|
+
@media (hover: hover) {
|
|
3720
|
+
.data-popup-open\:hover\:bg-muted[data-popup-open]:hover {
|
|
3721
|
+
background-color: var(--muted);
|
|
3722
|
+
}
|
|
3723
|
+
}
|
|
3571
3724
|
.data-selected\:bg-muted[data-selected] {
|
|
3572
3725
|
background-color: var(--muted);
|
|
3573
3726
|
}
|
|
@@ -3580,6 +3733,12 @@
|
|
|
3580
3733
|
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
3581
3734
|
border-color: var(--ring);
|
|
3582
3735
|
}
|
|
3736
|
+
.data-\[active\=true\]\:bg-muted\/50[data-active="true"] {
|
|
3737
|
+
background-color: var(--muted);
|
|
3738
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3739
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
3740
|
+
}
|
|
3741
|
+
}
|
|
3583
3742
|
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
3584
3743
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3585
3744
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3590,6 +3749,14 @@
|
|
|
3590
3749
|
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
3591
3750
|
}
|
|
3592
3751
|
}
|
|
3752
|
+
@media (hover: hover) {
|
|
3753
|
+
.data-\[active\=true\]\:hover\:bg-muted[data-active="true"]:hover {
|
|
3754
|
+
background-color: var(--muted);
|
|
3755
|
+
}
|
|
3756
|
+
}
|
|
3757
|
+
.data-\[active\=true\]\:focus\:bg-muted[data-active="true"]:focus {
|
|
3758
|
+
background-color: var(--muted);
|
|
3759
|
+
}
|
|
3593
3760
|
.data-\[active\=true\]\:aria-invalid\:border-destructive[data-active="true"][aria-invalid="true"] {
|
|
3594
3761
|
border-color: var(--destructive);
|
|
3595
3762
|
}
|
|
@@ -3617,6 +3784,30 @@
|
|
|
3617
3784
|
.data-\[inset\]\:pl-8[data-inset] {
|
|
3618
3785
|
padding-left: calc(var(--spacing) * 8);
|
|
3619
3786
|
}
|
|
3787
|
+
.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"] {
|
|
3788
|
+
--tw-enter-translate-x: calc(52*var(--spacing));
|
|
3789
|
+
}
|
|
3790
|
+
.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"] {
|
|
3791
|
+
--tw-enter-translate-x: calc(52*var(--spacing)*-1);
|
|
3792
|
+
}
|
|
3793
|
+
.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"] {
|
|
3794
|
+
--tw-exit-translate-x: calc(52*var(--spacing));
|
|
3795
|
+
}
|
|
3796
|
+
.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"] {
|
|
3797
|
+
--tw-exit-translate-x: calc(52*var(--spacing)*-1);
|
|
3798
|
+
}
|
|
3799
|
+
.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
|
|
3800
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3801
|
+
}
|
|
3802
|
+
.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"] {
|
|
3803
|
+
--tw-enter-opacity: 0;
|
|
3804
|
+
}
|
|
3805
|
+
.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"] {
|
|
3806
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3807
|
+
}
|
|
3808
|
+
.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"] {
|
|
3809
|
+
--tw-exit-opacity: 0;
|
|
3810
|
+
}
|
|
3620
3811
|
.data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] {
|
|
3621
3812
|
height: 1px;
|
|
3622
3813
|
}
|
|
@@ -3791,6 +3982,14 @@
|
|
|
3791
3982
|
:is(.\*\*\:data-\[slot\=kbd\]\:rounded-4xl *)[data-slot="kbd"] {
|
|
3792
3983
|
border-radius: calc(var(--radius) * 2.6);
|
|
3793
3984
|
}
|
|
3985
|
+
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot="navigation-menu-link"]:focus {
|
|
3986
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3987
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3988
|
+
}
|
|
3989
|
+
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none *)[data-slot="navigation-menu-link"]:focus {
|
|
3990
|
+
--tw-outline-style: none;
|
|
3991
|
+
outline-style: none;
|
|
3992
|
+
}
|
|
3794
3993
|
:is(.\*\:data-\[slot\=select-value\]\:line-clamp-1 > *)[data-slot="select-value"] {
|
|
3795
3994
|
overflow: hidden;
|
|
3796
3995
|
display: -webkit-box;
|
|
@@ -3820,6 +4019,12 @@
|
|
|
3820
4019
|
--tw-enter-scale: calc(95*1%);
|
|
3821
4020
|
--tw-enter-scale: .95;
|
|
3822
4021
|
}
|
|
4022
|
+
.data-\[state\=hidden\]\:animate-out[data-state="hidden"] {
|
|
4023
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4024
|
+
}
|
|
4025
|
+
.data-\[state\=hidden\]\:fade-out[data-state="hidden"] {
|
|
4026
|
+
--tw-exit-opacity: 0;
|
|
4027
|
+
}
|
|
3823
4028
|
.data-\[state\=inactive\]\:text-foreground\![data-state="inactive"] {
|
|
3824
4029
|
color: var(--foreground) !important;
|
|
3825
4030
|
}
|
|
@@ -3832,6 +4037,12 @@
|
|
|
3832
4037
|
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
|
|
3833
4038
|
background-color: var(--muted);
|
|
3834
4039
|
}
|
|
4040
|
+
.data-\[state\=visible\]\:animate-in[data-state="visible"] {
|
|
4041
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4042
|
+
}
|
|
4043
|
+
.data-\[state\=visible\]\:fade-in[data-state="visible"] {
|
|
4044
|
+
--tw-enter-opacity: 0;
|
|
4045
|
+
}
|
|
3835
4046
|
.data-\[variant\=destructive\]\:text-destructive[data-variant="destructive"] {
|
|
3836
4047
|
color: var(--destructive);
|
|
3837
4048
|
}
|
|
@@ -3918,6 +4129,9 @@
|
|
|
3918
4129
|
.sm\:w-32 {
|
|
3919
4130
|
width: calc(var(--spacing) * 32);
|
|
3920
4131
|
}
|
|
4132
|
+
.sm\:w-100 {
|
|
4133
|
+
width: calc(var(--spacing) * 100);
|
|
4134
|
+
}
|
|
3921
4135
|
.sm\:max-w-md {
|
|
3922
4136
|
max-width: var(--container-md);
|
|
3923
4137
|
}
|
|
@@ -3981,6 +4195,9 @@
|
|
|
3981
4195
|
}
|
|
3982
4196
|
}
|
|
3983
4197
|
@media (width >= 48rem) {
|
|
4198
|
+
.md\:absolute {
|
|
4199
|
+
position: absolute;
|
|
4200
|
+
}
|
|
3984
4201
|
.md\:-top-10 {
|
|
3985
4202
|
top: calc(var(--spacing) * -10);
|
|
3986
4203
|
}
|
|
@@ -4027,6 +4244,10 @@
|
|
|
4027
4244
|
width: calc(var(--spacing) * 6);
|
|
4028
4245
|
height: calc(var(--spacing) * 6);
|
|
4029
4246
|
}
|
|
4247
|
+
.md\:size-10 {
|
|
4248
|
+
width: calc(var(--spacing) * 10);
|
|
4249
|
+
height: calc(var(--spacing) * 10);
|
|
4250
|
+
}
|
|
4030
4251
|
.md\:h-14 {
|
|
4031
4252
|
height: calc(var(--spacing) * 14);
|
|
4032
4253
|
}
|
|
@@ -4084,9 +4305,21 @@
|
|
|
4084
4305
|
.md\:w-40 {
|
|
4085
4306
|
width: calc(var(--spacing) * 40);
|
|
4086
4307
|
}
|
|
4308
|
+
.md\:w-100 {
|
|
4309
|
+
width: calc(var(--spacing) * 100);
|
|
4310
|
+
}
|
|
4311
|
+
.md\:w-125 {
|
|
4312
|
+
width: calc(var(--spacing) * 125);
|
|
4313
|
+
}
|
|
4087
4314
|
.md\:w-225 {
|
|
4088
4315
|
width: calc(var(--spacing) * 225);
|
|
4089
4316
|
}
|
|
4317
|
+
.md\:w-\[calc\(var\(--bits-navigation-menu-viewport-width\)\+1rem\)\] {
|
|
4318
|
+
width: calc(var(--bits-navigation-menu-viewport-width) + 1rem);
|
|
4319
|
+
}
|
|
4320
|
+
.md\:w-auto {
|
|
4321
|
+
width: auto;
|
|
4322
|
+
}
|
|
4090
4323
|
.md\:max-w-md {
|
|
4091
4324
|
max-width: var(--container-md);
|
|
4092
4325
|
}
|
|
@@ -4138,6 +4371,9 @@
|
|
|
4138
4371
|
.md\:bg-transparent {
|
|
4139
4372
|
background-color: transparent;
|
|
4140
4373
|
}
|
|
4374
|
+
.md\:p-2 {
|
|
4375
|
+
padding: calc(var(--spacing) * 2);
|
|
4376
|
+
}
|
|
4141
4377
|
.md\:p-6 {
|
|
4142
4378
|
padding: calc(var(--spacing) * 6);
|
|
4143
4379
|
}
|
|
@@ -4283,9 +4519,15 @@
|
|
|
4283
4519
|
.lg\:w-105 {
|
|
4284
4520
|
width: calc(var(--spacing) * 105);
|
|
4285
4521
|
}
|
|
4522
|
+
.lg\:w-125 {
|
|
4523
|
+
width: calc(var(--spacing) * 125);
|
|
4524
|
+
}
|
|
4286
4525
|
.lg\:max-w-100 {
|
|
4287
4526
|
max-width: calc(var(--spacing) * 100);
|
|
4288
4527
|
}
|
|
4528
|
+
.lg\:min-w-150 {
|
|
4529
|
+
min-width: calc(var(--spacing) * 150);
|
|
4530
|
+
}
|
|
4289
4531
|
.lg\:grid-cols-2 {
|
|
4290
4532
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4291
4533
|
}
|
|
@@ -4295,6 +4537,9 @@
|
|
|
4295
4537
|
.lg\:grid-cols-4 {
|
|
4296
4538
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4297
4539
|
}
|
|
4540
|
+
.lg\:grid-cols-\[\.75fr_1fr\] {
|
|
4541
|
+
grid-template-columns: .75fr 1fr;
|
|
4542
|
+
}
|
|
4298
4543
|
.lg\:grid-cols-\[1fr_26rem\] {
|
|
4299
4544
|
grid-template-columns: 1fr 26rem;
|
|
4300
4545
|
}
|
|
@@ -4513,6 +4758,12 @@
|
|
|
4513
4758
|
.data-open\:bg-accent:where([data-state="open"]), .data-open\:bg-accent:where([data-open]:not([data-open="false"])) {
|
|
4514
4759
|
background-color: var(--accent);
|
|
4515
4760
|
}
|
|
4761
|
+
.data-open\:bg-muted\/50:where([data-state="open"]), .data-open\:bg-muted\/50:where([data-open]:not([data-open="false"])) {
|
|
4762
|
+
background-color: var(--muted);
|
|
4763
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4764
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
4765
|
+
}
|
|
4766
|
+
}
|
|
4516
4767
|
.data-open\:text-accent-foreground:where([data-state="open"]), .data-open\:text-accent-foreground:where([data-open]:not([data-open="false"])) {
|
|
4517
4768
|
color: var(--accent-foreground);
|
|
4518
4769
|
}
|
|
@@ -4523,11 +4774,29 @@
|
|
|
4523
4774
|
--tw-enter-opacity: calc(0/100);
|
|
4524
4775
|
--tw-enter-opacity: 0;
|
|
4525
4776
|
}
|
|
4777
|
+
.data-open\:zoom-in-90:where([data-state="open"]), .data-open\:zoom-in-90:where([data-open]:not([data-open="false"])) {
|
|
4778
|
+
--tw-enter-scale: calc(90*1%);
|
|
4779
|
+
--tw-enter-scale: .9;
|
|
4780
|
+
}
|
|
4526
4781
|
.data-open\:zoom-in-95:where([data-state="open"]), .data-open\:zoom-in-95:where([data-open]:not([data-open="false"])) {
|
|
4527
4782
|
--tw-enter-scale: calc(95*1%);
|
|
4528
4783
|
--tw-enter-scale: .95;
|
|
4529
4784
|
}
|
|
4785
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:animate-in:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:animate-in:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4786
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4787
|
+
}
|
|
4788
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4789
|
+
--tw-enter-opacity: calc(0/100);
|
|
4790
|
+
--tw-enter-opacity: 0;
|
|
4791
|
+
}
|
|
4792
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-open\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="open"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-open\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-open]:not([data-open="false"])) {
|
|
4793
|
+
--tw-enter-scale: calc(95*1%);
|
|
4794
|
+
--tw-enter-scale: .95;
|
|
4795
|
+
}
|
|
4530
4796
|
@media (hover: hover) {
|
|
4797
|
+
:is(.data-open\:hover\:bg-muted:where([data-state="open"]), .data-open\:hover\:bg-muted:where([data-open]:not([data-open="false"]))):hover {
|
|
4798
|
+
background-color: var(--muted);
|
|
4799
|
+
}
|
|
4531
4800
|
:is(.data-open\:hover\:bg-sidebar-accent:where([data-state="open"]), .data-open\:hover\:bg-sidebar-accent:where([data-open]:not([data-open="false"]))):hover {
|
|
4532
4801
|
background-color: var(--sidebar-accent);
|
|
4533
4802
|
}
|
|
@@ -4535,6 +4804,9 @@
|
|
|
4535
4804
|
color: var(--sidebar-accent-foreground);
|
|
4536
4805
|
}
|
|
4537
4806
|
}
|
|
4807
|
+
:is(.data-open\:focus\:bg-muted:where([data-state="open"]), .data-open\:focus\:bg-muted:where([data-open]:not([data-open="false"]))):focus {
|
|
4808
|
+
background-color: var(--muted);
|
|
4809
|
+
}
|
|
4538
4810
|
.data-\[side\=bottom\]\:data-open\:slide-in-from-bottom-10[data-side="bottom"]:where([data-state="open"]), .data-\[side\=bottom\]\:data-open\:slide-in-from-bottom-10[data-side="bottom"]:where([data-open]:not([data-open="false"])) {
|
|
4539
4811
|
--tw-enter-translate-y: calc(10*var(--spacing));
|
|
4540
4812
|
--tw-enter-translate-y: calc(.1*100%);
|
|
@@ -4561,10 +4833,25 @@
|
|
|
4561
4833
|
--tw-exit-opacity: calc(0/100);
|
|
4562
4834
|
--tw-exit-opacity: 0;
|
|
4563
4835
|
}
|
|
4836
|
+
.data-closed\:zoom-out-90:where([data-state="closed"]), .data-closed\:zoom-out-90:where([data-closed]:not([data-closed="false"])) {
|
|
4837
|
+
--tw-exit-scale: calc(90*1%);
|
|
4838
|
+
--tw-exit-scale: .9;
|
|
4839
|
+
}
|
|
4564
4840
|
.data-closed\:zoom-out-95:where([data-state="closed"]), .data-closed\:zoom-out-95:where([data-closed]:not([data-closed="false"])) {
|
|
4565
4841
|
--tw-exit-scale: calc(95*1%);
|
|
4566
4842
|
--tw-exit-scale: .95;
|
|
4567
4843
|
}
|
|
4844
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:animate-out:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:animate-out:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
4845
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4846
|
+
}
|
|
4847
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:fade-out-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:fade-out-0:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
4848
|
+
--tw-exit-opacity: calc(0/100);
|
|
4849
|
+
--tw-exit-opacity: 0;
|
|
4850
|
+
}
|
|
4851
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:zoom-out-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-state="closed"]), .group-data-\[viewport\=false\]\/navigation-menu\:data-closed\:zoom-out-95:is(:where(.group\/navigation-menu)[data-viewport="false"] *):where([data-closed]:not([data-closed="false"])) {
|
|
4852
|
+
--tw-exit-scale: calc(95*1%);
|
|
4853
|
+
--tw-exit-scale: .95;
|
|
4854
|
+
}
|
|
4568
4855
|
.data-\[side\=bottom\]\:data-closed\:slide-out-to-bottom-10[data-side="bottom"]:where([data-state="closed"]), .data-\[side\=bottom\]\:data-closed\:slide-out-to-bottom-10[data-side="bottom"]:where([data-closed]:not([data-closed="false"])) {
|
|
4569
4856
|
--tw-exit-translate-y: calc(10*var(--spacing));
|
|
4570
4857
|
--tw-exit-translate-y: calc(.1*100%);
|
package/dist/index.d.ts
CHANGED
|
@@ -29,11 +29,12 @@ import CarouselPromotion from "./components/core/carousel/promotion/ui/CarouselP
|
|
|
29
29
|
import CarouselBadge from "./components/core/carousel/badge/ui/CarouselBadge.svelte";
|
|
30
30
|
import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
|
|
31
31
|
import CompanyProfile from "./components/pages/company-profile/CompanyProfile.svelte";
|
|
32
|
+
import Menu from "./components/core/nav/ui/Menu.svelte";
|
|
32
33
|
import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
33
34
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
34
|
-
import NavMenu from "./components/core/nav/ui/nav-menu.svelte";
|
|
35
|
-
import NegoDesign from "./components/NegoDesign.svelte";
|
|
36
35
|
import Footer from "./components/core/footer/ui/Footer.svelte";
|
|
36
|
+
import NavMenu from "./components/core/nav/ui/NavMenu.svelte";
|
|
37
|
+
import NegoDesign from "./components/NegoDesign.svelte";
|
|
37
38
|
/** Store reativa do idioma atual. Altere com `$locale = "pt"`. */
|
|
38
39
|
export { locale } from "./i18n";
|
|
39
40
|
/** Lista de idiomas disponíveis. Atualizado automaticamente. */
|
|
@@ -44,7 +45,7 @@ export { t } from "./i18n";
|
|
|
44
45
|
export { getMergedTranslations } from "./i18n/config";
|
|
45
46
|
/** Retorna a lista de idiomas disponíveis. */
|
|
46
47
|
export { getLocales } from "./i18n/config";
|
|
47
|
-
export {
|
|
48
|
+
export { Menu,
|
|
48
49
|
/**
|
|
49
50
|
* Componente raiz do Negodesign.
|
|
50
51
|
* Configura o tema, idioma e traduções da aplicação.
|
package/dist/index.js
CHANGED
|
@@ -29,11 +29,12 @@ import CarouselPromotion from "./components/core/carousel/promotion/ui/CarouselP
|
|
|
29
29
|
import CarouselBadge from "./components/core/carousel/badge/ui/CarouselBadge.svelte";
|
|
30
30
|
import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
|
|
31
31
|
import CompanyProfile from "./components/pages/company-profile/CompanyProfile.svelte";
|
|
32
|
+
import Menu from "./components/core/nav/ui/Menu.svelte";
|
|
32
33
|
import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
33
34
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
34
|
-
import NavMenu from "./components/core/nav/ui/nav-menu.svelte";
|
|
35
|
-
import NegoDesign from "./components/NegoDesign.svelte";
|
|
36
35
|
import Footer from "./components/core/footer/ui/Footer.svelte";
|
|
36
|
+
import NavMenu from "./components/core/nav/ui/NavMenu.svelte";
|
|
37
|
+
import NegoDesign from "./components/NegoDesign.svelte";
|
|
37
38
|
/** Store reativa do idioma atual. Altere com `$locale = "pt"`. */
|
|
38
39
|
export { locale } from "./i18n";
|
|
39
40
|
/** Lista de idiomas disponíveis. Atualizado automaticamente. */
|
|
@@ -44,7 +45,7 @@ export { t } from "./i18n";
|
|
|
44
45
|
export { getMergedTranslations } from "./i18n/config";
|
|
45
46
|
/** Retorna a lista de idiomas disponíveis. */
|
|
46
47
|
export { getLocales } from "./i18n/config";
|
|
47
|
-
export {
|
|
48
|
+
export { Menu,
|
|
48
49
|
/**
|
|
49
50
|
* Componente raiz do Negodesign.
|
|
50
51
|
* Configura o tema, idioma e traduções da aplicação.
|
package/dist/types/index.d.ts
CHANGED
|
@@ -29,7 +29,8 @@ import type { NegoDesignProps } from "../components/types";
|
|
|
29
29
|
import type { CarouselGridPromotionProps } from "../components/core/carousel/grid/promotion/types";
|
|
30
30
|
import type { CarouselGridProductProps } from "../components/core/carousel/grid/product/types";
|
|
31
31
|
import type { CompanyProfileProps } from "../components/pages/company-profile/types";
|
|
32
|
-
|
|
32
|
+
import type { MenuProps } from "../components/core/nav/ui/shared/types";
|
|
33
|
+
export type { MenuProps,
|
|
33
34
|
/** Props de um link individual no menu de navegação. @see NavMenuLinksProps */
|
|
34
35
|
NavMenuLinksProps,
|
|
35
36
|
/** Props do logotipo no NavMenu. @see NavMenuLogoProps */
|
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { NavMenuItem } from "../data/nav-menu-sidebar";
|
|
2
|
-
type $$ComponentProps = {
|
|
3
|
-
items: NavMenuItem[];
|
|
4
|
-
};
|
|
5
|
-
declare const NavMenuSidebar: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
-
type NavMenuSidebar = ReturnType<typeof NavMenuSidebar>;
|
|
7
|
-
export default NavMenuSidebar;
|
|
File without changes
|