@bitrix24/b24ui-nuxt 0.5.9 → 0.5.11
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/.nuxt/b24ui/navigation-menu.ts +0 -2
- package/.nuxt/b24ui/popover.ts +1 -1
- package/dist/meta.cjs +734 -842
- package/dist/meta.d.cts +734 -842
- package/dist/meta.d.mts +734 -842
- package/dist/meta.d.ts +734 -842
- package/dist/meta.mjs +734 -842
- package/dist/module.cjs +11 -7
- package/dist/module.json +3 -3
- package/dist/module.mjs +11 -7
- package/dist/runtime/components/Button.vue +8 -1
- package/dist/runtime/components/DropdownMenuContent.vue +8 -5
- package/dist/runtime/components/InputMenu.vue +0 -1
- package/dist/runtime/components/NavigationMenu.vue +17 -15
- package/dist/runtime/components/SelectMenu.vue +0 -1
- package/dist/runtime/components/Tabs.vue +8 -4
- package/dist/runtime/components/Toaster.vue +7 -2
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/vue/stubs.d.ts +3 -3
- package/dist/shared/{b24ui-nuxt.C1lGF53R.mjs → b24ui-nuxt.CS9Lf0os.mjs} +4 -3
- package/dist/shared/{b24ui-nuxt.BVg3rkkG.cjs → b24ui-nuxt.DrKwIWoc.cjs} +4 -3
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +57 -18
|
@@ -134,14 +134,12 @@ export default {
|
|
|
134
134
|
},
|
|
135
135
|
"contentOrientation": {
|
|
136
136
|
"horizontal": {
|
|
137
|
-
"viewport": "",
|
|
138
137
|
"viewportWrapper": "justify-center",
|
|
139
138
|
"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]",
|
|
140
139
|
"childLinkLabelExternalIcon": "h-4"
|
|
141
140
|
},
|
|
142
141
|
"vertical": {
|
|
143
142
|
"viewport": "w-(--reka-navigation-menu-viewport-width) left-(--reka-navigation-menu-viewport-left) [&:has(>[data-viewport=rtl])]:left-auto [&:has(>[data-viewport=rtl])]:-right-[calc(100%-var(--reka-navigation-menu-viewport-width))]",
|
|
144
|
-
"content": "",
|
|
145
143
|
"childLinkLabel": "text-md text-base-950 dark:text-base-50",
|
|
146
144
|
"childLinkLabelExternalIcon": "h-4"
|
|
147
145
|
}
|
package/.nuxt/b24ui/popover.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"slots": {
|
|
3
3
|
"content": "bg-white dark:bg-base-dark shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800 motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in] focus:outline-none pointer-events-auto",
|
|
4
|
-
"arrow": "fill-white dark:fill-base-dark stroke-base-300 dark:stroke-base-
|
|
4
|
+
"arrow": "fill-white dark:fill-base-dark stroke-base-300 dark:stroke-base-800"
|
|
5
5
|
}
|
|
6
6
|
}
|