@bitrix24/b24ui-nuxt 0.6.6 → 0.6.7
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/skeleton.ts +1 -1
- package/dist/meta.d.mts +2719 -297
- package/dist/meta.mjs +2719 -297
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/DescriptionList.vue +12 -0
- package/dist/runtime/components/DescriptionList.vue.d.ts +10 -8
- package/dist/runtime/components/DropdownMenu.vue.d.ts +2 -0
- package/dist/runtime/components/DropdownMenuContent.vue +4 -0
- package/dist/runtime/components/InputMenu.vue +6 -2
- package/dist/runtime/components/InputMenu.vue.d.ts +2 -0
- package/dist/runtime/components/Modal.vue +11 -9
- package/dist/runtime/components/Modal.vue.d.ts +3 -0
- package/dist/runtime/components/NavigationMenu.vue +4 -0
- package/dist/runtime/components/NavigationMenu.vue.d.ts +2 -0
- package/dist/runtime/components/Popover.vue +9 -6
- package/dist/runtime/components/Popover.vue.d.ts +3 -0
- package/dist/runtime/components/Select.vue +5 -0
- package/dist/runtime/components/Select.vue.d.ts +2 -0
- package/dist/runtime/components/SelectMenu.vue +5 -1
- package/dist/runtime/components/SelectMenu.vue.d.ts +2 -0
- package/dist/runtime/components/SidebarLayout.vue +4 -0
- package/dist/runtime/components/SidebarLayout.vue.d.ts +5 -3
- package/dist/runtime/components/Slideover.vue +11 -9
- package/dist/runtime/components/Slideover.vue.d.ts +3 -0
- package/dist/runtime/components/StackedLayout.vue +4 -0
- package/dist/runtime/components/StackedLayout.vue.d.ts +5 -3
- package/dist/shared/{b24ui-nuxt.BL9IkPeR.mjs → b24ui-nuxt.jU270f-Q.mjs} +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +1 -1
package/.nuxt/b24ui/skeleton.ts
CHANGED
|
@@ -5,7 +5,7 @@ const result = typeof template === 'function' ? (template as Function)({
|
|
|
5
5
|
}) : template
|
|
6
6
|
|
|
7
7
|
const theme = {
|
|
8
|
-
"base": "animate-pulse rounded-md bg-gray-200 dark:bg-gray-800
|
|
8
|
+
"base": "animate-pulse rounded-md bg-gray-200 dark:bg-gray-800"
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export default result as typeof theme
|