@bitrix24/b24ui-nuxt 0.4.5 → 0.4.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/content/table-wrapper.ts +1 -1
- package/.nuxt/b24ui/dropdown-menu.ts +1 -1
- package/.nuxt/b24ui/index.ts +1 -0
- package/.nuxt/b24ui/popover.ts +6 -0
- package/.nuxt/b24ui/prose/table.ts +6 -0
- package/.nuxt/b24ui/prose/tbody.ts +5 -0
- package/.nuxt/b24ui/prose/td.ts +5 -0
- package/.nuxt/b24ui/prose/th.ts +5 -0
- package/.nuxt/b24ui/prose/thead.ts +5 -0
- package/.nuxt/b24ui/prose/tr.ts +5 -0
- package/dist/meta.cjs +711 -36
- package/dist/meta.d.cts +711 -36
- package/dist/meta.d.mts +711 -36
- package/dist/meta.d.ts +711 -36
- package/dist/meta.mjs +711 -36
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/App.vue +6 -6
- package/dist/runtime/components/Form.vue +5 -5
- package/dist/runtime/components/FormField.vue +1 -1
- package/dist/runtime/components/Popover.vue +105 -0
- package/dist/runtime/composables/defineLocale.d.ts +4 -4
- package/dist/runtime/composables/useLocale.d.ts +3 -3
- package/dist/runtime/composables/useLocale.js +3 -3
- package/dist/runtime/locale/ar.d.ts +2 -1
- package/dist/runtime/locale/br.d.ts +2 -1
- package/dist/runtime/locale/de.d.ts +2 -1
- package/dist/runtime/locale/en.d.ts +2 -1
- package/dist/runtime/locale/fr.d.ts +2 -1
- package/dist/runtime/locale/id.d.ts +2 -1
- package/dist/runtime/locale/it.d.ts +2 -1
- package/dist/runtime/locale/ja.d.ts +2 -1
- package/dist/runtime/locale/kz.d.ts +2 -1
- package/dist/runtime/locale/la.d.ts +2 -1
- package/dist/runtime/locale/ms.d.ts +2 -1
- package/dist/runtime/locale/pl.d.ts +2 -1
- package/dist/runtime/locale/ru.d.ts +2 -1
- package/dist/runtime/locale/sc.d.ts +2 -1
- package/dist/runtime/locale/tc.d.ts +2 -1
- package/dist/runtime/locale/th.d.ts +2 -1
- package/dist/runtime/locale/tr.d.ts +2 -1
- package/dist/runtime/locale/ua.d.ts +2 -1
- package/dist/runtime/locale/vn.d.ts +2 -1
- package/dist/runtime/plugins/colors.js +3 -1
- package/dist/runtime/prose/Code.vue +1 -1
- package/dist/runtime/prose/Img.vue +1 -1
- package/dist/runtime/prose/Table.vue +74 -0
- package/dist/runtime/prose/Tbody.vue +34 -0
- package/dist/runtime/prose/Td.vue +34 -0
- package/dist/runtime/prose/Th.vue +34 -0
- package/dist/runtime/prose/Thead.vue +34 -0
- package/dist/runtime/prose/Tr.vue +34 -0
- package/dist/runtime/types/form.d.ts +1 -1
- package/dist/runtime/types/index.d.ts +7 -0
- package/dist/runtime/types/index.js +7 -0
- package/dist/runtime/types/locale.d.ts +2 -2
- package/dist/runtime/utils/locale.d.ts +5 -5
- package/dist/runtime/vue/stubs.d.ts +3 -1
- package/dist/runtime/vue/stubs.js +3 -1
- package/dist/shared/{b24ui-nuxt.BH-d1ImO.mjs → b24ui-nuxt.CPOPpSQq.mjs} +69 -2
- package/dist/shared/{b24ui-nuxt.DxEKoBT7.cjs → b24ui-nuxt.lbv7ybxH.cjs} +69 -2
- 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 +8 -7
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { AppConfig } from '@nuxt/schema'
|
|
3
|
+
import _appConfig from '#build/app.config'
|
|
4
|
+
import theme from '#build/b24ui/prose/tr'
|
|
5
|
+
import { tv } from '../utils/tv'
|
|
6
|
+
|
|
7
|
+
const appConfigProseTr = _appConfig as AppConfig & { b24ui: { prose: { tr: Partial<typeof theme> } } }
|
|
8
|
+
|
|
9
|
+
const proseTr = tv({ extend: tv(theme), ...(appConfigProseTr.b24ui?.prose?.tr || {}) })
|
|
10
|
+
|
|
11
|
+
export interface proseTrProps {
|
|
12
|
+
class?: any
|
|
13
|
+
b24ui?: Partial<typeof proseTr.slots>
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface proseTrSlots {
|
|
17
|
+
default(props?: {}): any
|
|
18
|
+
}
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<script setup lang="ts">
|
|
22
|
+
const props = defineProps<proseTrProps>()
|
|
23
|
+
|
|
24
|
+
// eslint-disable-next-line vue/no-dupe-keys
|
|
25
|
+
const b24ui = proseTr({})
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<template>
|
|
29
|
+
<tr
|
|
30
|
+
:class="b24ui.base({ class: [props.class, props.b24ui?.base] })"
|
|
31
|
+
>
|
|
32
|
+
<slot />
|
|
33
|
+
</tr>
|
|
34
|
+
</template>
|
|
@@ -27,7 +27,7 @@ export interface Form<T extends object> {
|
|
|
27
27
|
export type FormSchema<T extends object> = ZodSchema | YupObjectSchema<T> | ValibotSchema | ValibotSchemaAsync | ValibotSafeParser<any, any> | ValibotSafeParserAsync<any, any> | JoiSchema<T> | SuperstructSchema<any, any> | StandardSchemaV1;
|
|
28
28
|
export type FormInputEvents = 'input' | 'blur' | 'change' | 'focus';
|
|
29
29
|
export interface FormError<P extends string = string> {
|
|
30
|
-
name
|
|
30
|
+
name?: P;
|
|
31
31
|
message: string;
|
|
32
32
|
}
|
|
33
33
|
export interface FormErrorWithId extends FormError {
|
|
@@ -21,6 +21,7 @@ export * from '../components/Kbd.vue';
|
|
|
21
21
|
export * from '../components/Link.vue';
|
|
22
22
|
export * from '../components/Modal.vue';
|
|
23
23
|
export * from '../components/ModalDialogClose.vue';
|
|
24
|
+
export * from '../components/Popover.vue';
|
|
24
25
|
export * from '../components/Progress.vue';
|
|
25
26
|
export * from '../components/RadioGroup.vue';
|
|
26
27
|
export * from '../components/Range.vue';
|
|
@@ -51,6 +52,12 @@ export * from '../prose/Ol.vue';
|
|
|
51
52
|
export * from '../prose/Ul.vue';
|
|
52
53
|
export * from '../prose/Li.vue';
|
|
53
54
|
export * from '../prose/Hr.vue';
|
|
55
|
+
export * from '../prose/Table.vue';
|
|
56
|
+
export * from '../prose/Thead.vue';
|
|
57
|
+
export * from '../prose/Tbody.vue';
|
|
58
|
+
export * from '../prose/Tr.vue';
|
|
59
|
+
export * from '../prose/Th.vue';
|
|
60
|
+
export * from '../prose/Td.vue';
|
|
54
61
|
export * from '../prose/Img.vue';
|
|
55
62
|
export * from '../prose/Code.vue';
|
|
56
63
|
export * from '../prose/Pre.vue';
|
|
@@ -21,6 +21,7 @@ export * from "../components/Kbd.vue";
|
|
|
21
21
|
export * from "../components/Link.vue";
|
|
22
22
|
export * from "../components/Modal.vue";
|
|
23
23
|
export * from "../components/ModalDialogClose.vue";
|
|
24
|
+
export * from "../components/Popover.vue";
|
|
24
25
|
export * from "../components/Progress.vue";
|
|
25
26
|
export * from "../components/RadioGroup.vue";
|
|
26
27
|
export * from "../components/Range.vue";
|
|
@@ -51,6 +52,12 @@ export * from "../prose/Ol.vue";
|
|
|
51
52
|
export * from "../prose/Ul.vue";
|
|
52
53
|
export * from "../prose/Li.vue";
|
|
53
54
|
export * from "../prose/Hr.vue";
|
|
55
|
+
export * from "../prose/Table.vue";
|
|
56
|
+
export * from "../prose/Thead.vue";
|
|
57
|
+
export * from "../prose/Tbody.vue";
|
|
58
|
+
export * from "../prose/Tr.vue";
|
|
59
|
+
export * from "../prose/Th.vue";
|
|
60
|
+
export * from "../prose/Td.vue";
|
|
54
61
|
export * from "../prose/Img.vue";
|
|
55
62
|
export * from "../prose/Code.vue";
|
|
56
63
|
export * from "../prose/Pre.vue";
|
|
@@ -3,13 +3,13 @@ import type { Locale, Direction } from '../types/locale';
|
|
|
3
3
|
import type { MaybeRef } from '@vueuse/core';
|
|
4
4
|
export type TranslatorOption = Record<string, string | number>;
|
|
5
5
|
export type Translator = (path: string, option?: TranslatorOption) => string;
|
|
6
|
-
export type LocaleContext = {
|
|
7
|
-
locale: Ref<Locale
|
|
6
|
+
export type LocaleContext<M> = {
|
|
7
|
+
locale: Ref<Locale<M>>;
|
|
8
8
|
lang: Ref<string>;
|
|
9
9
|
dir: Ref<Direction>;
|
|
10
10
|
code: Ref<string>;
|
|
11
11
|
t: Translator;
|
|
12
12
|
};
|
|
13
|
-
export declare function buildTranslator(locale: MaybeRef<Locale
|
|
14
|
-
export declare function translate(path: string, option: undefined | TranslatorOption, locale: Locale): string;
|
|
15
|
-
export declare function buildLocaleContext(locale: MaybeRef<Locale
|
|
13
|
+
export declare function buildTranslator<M>(locale: MaybeRef<Locale<M>>): Translator;
|
|
14
|
+
export declare function translate<M>(path: string, option: undefined | TranslatorOption, locale: Locale<M>): string;
|
|
15
|
+
export declare function buildLocaleContext<M>(locale: MaybeRef<Locale<M>>): LocaleContext<M>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { Ref } from 'vue';
|
|
2
2
|
import type { NuxtApp } from '#app';
|
|
3
|
-
export { useHead } from '@unhead/vue
|
|
3
|
+
export { useHead } from '@unhead/vue';
|
|
4
4
|
export { useRoute, useRouter } from 'vue-router';
|
|
5
5
|
export { defineShortcuts } from '../composables/defineShortcuts';
|
|
6
|
+
export { defineLocale } from '../composables/defineLocale';
|
|
6
7
|
export { useLocale } from '../composables/useLocale';
|
|
7
8
|
export { useConfetti } from '../composables/useConfetti';
|
|
8
9
|
export { useOverlay } from '../composables/useOverlay';
|
|
@@ -27,6 +28,7 @@ export declare const useCookie: <T = string>(_name: string, _options?: Record<st
|
|
|
27
28
|
export declare const useState: <T>(key: string, init: () => T) => Ref<T>;
|
|
28
29
|
export declare function useNuxtApp(): {
|
|
29
30
|
isHydrating: boolean;
|
|
31
|
+
isVue: boolean;
|
|
30
32
|
payload: {
|
|
31
33
|
serverRendered: boolean;
|
|
32
34
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ref } from "vue";
|
|
2
2
|
import appConfig from "#build/app.config";
|
|
3
3
|
import { useColorMode as useColorModeVueUse } from "@vueuse/core";
|
|
4
|
-
export { useHead } from "@unhead/vue
|
|
4
|
+
export { useHead } from "@unhead/vue";
|
|
5
5
|
export { useRoute, useRouter } from "vue-router";
|
|
6
6
|
export { defineShortcuts } from "../composables/defineShortcuts.js";
|
|
7
|
+
export { defineLocale } from "../composables/defineLocale.js";
|
|
7
8
|
export { useLocale } from "../composables/useLocale.js";
|
|
8
9
|
export { useConfetti } from "../composables/useConfetti.js";
|
|
9
10
|
export { useOverlay } from "../composables/useOverlay.js";
|
|
@@ -54,6 +55,7 @@ export const useState = (key, init) => {
|
|
|
54
55
|
export function useNuxtApp() {
|
|
55
56
|
return {
|
|
56
57
|
isHydrating: true,
|
|
58
|
+
isVue: true,
|
|
57
59
|
payload: { serverRendered: false }
|
|
58
60
|
};
|
|
59
61
|
}
|
|
@@ -1694,7 +1694,7 @@ const dropdownMenu = {
|
|
|
1694
1694
|
"bg-white dark:bg-base-dark",
|
|
1695
1695
|
"shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
1696
1696
|
"overflow-y-auto",
|
|
1697
|
-
"data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
1697
|
+
"motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
1698
1698
|
"divide-y divide-base-master/10 dark:divide-base-100/20 scroll-py-1",
|
|
1699
1699
|
"pointer-events-auto"
|
|
1700
1700
|
].join(" "),
|
|
@@ -3391,6 +3391,18 @@ const modal = {
|
|
|
3391
3391
|
}
|
|
3392
3392
|
};
|
|
3393
3393
|
|
|
3394
|
+
const popover = {
|
|
3395
|
+
slots: {
|
|
3396
|
+
content: [
|
|
3397
|
+
"bg-white dark:bg-base-dark",
|
|
3398
|
+
"shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
3399
|
+
"motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
3400
|
+
"focus:outline-none pointer-events-auto"
|
|
3401
|
+
].join(" "),
|
|
3402
|
+
arrow: "fill-white dark:fill-base-dark stroke-base-300 dark:stroke-base-300"
|
|
3403
|
+
}
|
|
3404
|
+
};
|
|
3405
|
+
|
|
3394
3406
|
const progress = {
|
|
3395
3407
|
slots: {
|
|
3396
3408
|
root: "gap-2",
|
|
@@ -5294,6 +5306,7 @@ const theme = {
|
|
|
5294
5306
|
kbd: kbd,
|
|
5295
5307
|
link: link,
|
|
5296
5308
|
modal: modal,
|
|
5309
|
+
popover: popover,
|
|
5297
5310
|
progress: progress,
|
|
5298
5311
|
radioGroup: radioGroup,
|
|
5299
5312
|
range: range,
|
|
@@ -5534,6 +5547,54 @@ const hr = {
|
|
|
5534
5547
|
}
|
|
5535
5548
|
};
|
|
5536
5549
|
|
|
5550
|
+
const table = {
|
|
5551
|
+
slots: {
|
|
5552
|
+
root: [
|
|
5553
|
+
"my-4",
|
|
5554
|
+
"overflow-x-auto"
|
|
5555
|
+
].join(" "),
|
|
5556
|
+
base: ""
|
|
5557
|
+
}
|
|
5558
|
+
};
|
|
5559
|
+
|
|
5560
|
+
const thead = {
|
|
5561
|
+
slots: {
|
|
5562
|
+
base: [
|
|
5563
|
+
"bg-base-50",
|
|
5564
|
+
"dark:bg-base-600"
|
|
5565
|
+
].join(" ")
|
|
5566
|
+
}
|
|
5567
|
+
};
|
|
5568
|
+
|
|
5569
|
+
const tbody = {
|
|
5570
|
+
slots: {
|
|
5571
|
+
base: ""
|
|
5572
|
+
}
|
|
5573
|
+
};
|
|
5574
|
+
|
|
5575
|
+
const tr = {
|
|
5576
|
+
slots: {
|
|
5577
|
+
base: ""
|
|
5578
|
+
}
|
|
5579
|
+
};
|
|
5580
|
+
|
|
5581
|
+
const th = {
|
|
5582
|
+
slots: {
|
|
5583
|
+
base: ""
|
|
5584
|
+
}
|
|
5585
|
+
};
|
|
5586
|
+
|
|
5587
|
+
const td = {
|
|
5588
|
+
slots: {
|
|
5589
|
+
base: [
|
|
5590
|
+
"[&_code]:text-xs/5",
|
|
5591
|
+
"[&_p]:my-0 [&_p]:leading-6",
|
|
5592
|
+
"[&_ul]:my-0 [&_ol]:my-0 [&_ul]:ps-4.5 [&_ol]:ps-4.5",
|
|
5593
|
+
"[&_li]:leading-6 [&_li]:my-0.5"
|
|
5594
|
+
].join(" ")
|
|
5595
|
+
}
|
|
5596
|
+
};
|
|
5597
|
+
|
|
5537
5598
|
const img = {
|
|
5538
5599
|
slots: {
|
|
5539
5600
|
base: ""
|
|
@@ -5632,6 +5693,12 @@ const themeProse = {
|
|
|
5632
5693
|
p: p,
|
|
5633
5694
|
pre: pre,
|
|
5634
5695
|
strong: strong,
|
|
5696
|
+
table: table,
|
|
5697
|
+
tbody: tbody,
|
|
5698
|
+
td: td,
|
|
5699
|
+
th: th,
|
|
5700
|
+
thead: thead,
|
|
5701
|
+
tr: tr,
|
|
5635
5702
|
ul: ul
|
|
5636
5703
|
};
|
|
5637
5704
|
|
|
@@ -5684,7 +5751,7 @@ const tableWrapper = {
|
|
|
5684
5751
|
},
|
|
5685
5752
|
rounded: {
|
|
5686
5753
|
true: "rounded-md",
|
|
5687
|
-
false: "
|
|
5754
|
+
false: ""
|
|
5688
5755
|
},
|
|
5689
5756
|
zebra: {
|
|
5690
5757
|
true: [
|
|
@@ -1696,7 +1696,7 @@ const dropdownMenu = {
|
|
|
1696
1696
|
"bg-white dark:bg-base-dark",
|
|
1697
1697
|
"shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
1698
1698
|
"overflow-y-auto",
|
|
1699
|
-
"data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
1699
|
+
"motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
1700
1700
|
"divide-y divide-base-master/10 dark:divide-base-100/20 scroll-py-1",
|
|
1701
1701
|
"pointer-events-auto"
|
|
1702
1702
|
].join(" "),
|
|
@@ -3393,6 +3393,18 @@ const modal = {
|
|
|
3393
3393
|
}
|
|
3394
3394
|
};
|
|
3395
3395
|
|
|
3396
|
+
const popover = {
|
|
3397
|
+
slots: {
|
|
3398
|
+
content: [
|
|
3399
|
+
"bg-white dark:bg-base-dark",
|
|
3400
|
+
"shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
3401
|
+
"motion-safe:data-[state=open]:animate-[scale-in_100ms_ease-out] motion-safe:data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
3402
|
+
"focus:outline-none pointer-events-auto"
|
|
3403
|
+
].join(" "),
|
|
3404
|
+
arrow: "fill-white dark:fill-base-dark stroke-base-300 dark:stroke-base-300"
|
|
3405
|
+
}
|
|
3406
|
+
};
|
|
3407
|
+
|
|
3396
3408
|
const progress = {
|
|
3397
3409
|
slots: {
|
|
3398
3410
|
root: "gap-2",
|
|
@@ -5296,6 +5308,7 @@ const theme = {
|
|
|
5296
5308
|
kbd: kbd,
|
|
5297
5309
|
link: link,
|
|
5298
5310
|
modal: modal,
|
|
5311
|
+
popover: popover,
|
|
5299
5312
|
progress: progress,
|
|
5300
5313
|
radioGroup: radioGroup,
|
|
5301
5314
|
range: range,
|
|
@@ -5536,6 +5549,54 @@ const hr = {
|
|
|
5536
5549
|
}
|
|
5537
5550
|
};
|
|
5538
5551
|
|
|
5552
|
+
const table = {
|
|
5553
|
+
slots: {
|
|
5554
|
+
root: [
|
|
5555
|
+
"my-4",
|
|
5556
|
+
"overflow-x-auto"
|
|
5557
|
+
].join(" "),
|
|
5558
|
+
base: ""
|
|
5559
|
+
}
|
|
5560
|
+
};
|
|
5561
|
+
|
|
5562
|
+
const thead = {
|
|
5563
|
+
slots: {
|
|
5564
|
+
base: [
|
|
5565
|
+
"bg-base-50",
|
|
5566
|
+
"dark:bg-base-600"
|
|
5567
|
+
].join(" ")
|
|
5568
|
+
}
|
|
5569
|
+
};
|
|
5570
|
+
|
|
5571
|
+
const tbody = {
|
|
5572
|
+
slots: {
|
|
5573
|
+
base: ""
|
|
5574
|
+
}
|
|
5575
|
+
};
|
|
5576
|
+
|
|
5577
|
+
const tr = {
|
|
5578
|
+
slots: {
|
|
5579
|
+
base: ""
|
|
5580
|
+
}
|
|
5581
|
+
};
|
|
5582
|
+
|
|
5583
|
+
const th = {
|
|
5584
|
+
slots: {
|
|
5585
|
+
base: ""
|
|
5586
|
+
}
|
|
5587
|
+
};
|
|
5588
|
+
|
|
5589
|
+
const td = {
|
|
5590
|
+
slots: {
|
|
5591
|
+
base: [
|
|
5592
|
+
"[&_code]:text-xs/5",
|
|
5593
|
+
"[&_p]:my-0 [&_p]:leading-6",
|
|
5594
|
+
"[&_ul]:my-0 [&_ol]:my-0 [&_ul]:ps-4.5 [&_ol]:ps-4.5",
|
|
5595
|
+
"[&_li]:leading-6 [&_li]:my-0.5"
|
|
5596
|
+
].join(" ")
|
|
5597
|
+
}
|
|
5598
|
+
};
|
|
5599
|
+
|
|
5539
5600
|
const img = {
|
|
5540
5601
|
slots: {
|
|
5541
5602
|
base: ""
|
|
@@ -5634,6 +5695,12 @@ const themeProse = {
|
|
|
5634
5695
|
p: p,
|
|
5635
5696
|
pre: pre,
|
|
5636
5697
|
strong: strong,
|
|
5698
|
+
table: table,
|
|
5699
|
+
tbody: tbody,
|
|
5700
|
+
td: td,
|
|
5701
|
+
th: th,
|
|
5702
|
+
thead: thead,
|
|
5703
|
+
tr: tr,
|
|
5637
5704
|
ul: ul
|
|
5638
5705
|
};
|
|
5639
5706
|
|
|
@@ -5686,7 +5753,7 @@ const tableWrapper = {
|
|
|
5686
5753
|
},
|
|
5687
5754
|
rounded: {
|
|
5688
5755
|
true: "rounded-md",
|
|
5689
|
-
false: "
|
|
5756
|
+
false: ""
|
|
5690
5757
|
},
|
|
5691
5758
|
zebra: {
|
|
5692
5759
|
true: [
|
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.
|
|
8
|
+
const templates = require('./shared/b24ui-nuxt.lbv7ybxH.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.
|
|
6
|
+
import { g as getTemplates, d as defaultOptions, a as getDefaultUiConfig } from './shared/b24ui-nuxt.CPOPpSQq.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
package/dist/vite.mjs
CHANGED
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.
|
|
4
|
+
"version": "0.4.7",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"@tailwindcss/postcss": "^4.0.12",
|
|
79
79
|
"@tailwindcss/vite": "^4.0.12",
|
|
80
80
|
"@tanstack/vue-table": "^8.21.2",
|
|
81
|
-
"@unhead/vue": "^2.0.0-rc.
|
|
82
|
-
"@vueuse/core": "^
|
|
83
|
-
"@vueuse/integrations": "^
|
|
81
|
+
"@unhead/vue": "^2.0.0-rc.10",
|
|
82
|
+
"@vueuse/core": "^13.0.0",
|
|
83
|
+
"@vueuse/integrations": "^13.0.0",
|
|
84
84
|
"canvas-confetti": "^1.9.3",
|
|
85
85
|
"colortranslator": "^4.1.0",
|
|
86
86
|
"consola": "^3.4.0",
|
|
@@ -106,7 +106,9 @@
|
|
|
106
106
|
"unplugin": "^2.2.0",
|
|
107
107
|
"unplugin-auto-import": "^19.1.1",
|
|
108
108
|
"unplugin-vue-components": "^28.4.1",
|
|
109
|
-
"vaul-vue": "^0.3.0"
|
|
109
|
+
"vaul-vue": "^0.3.0",
|
|
110
|
+
"vue": "^3.5.13",
|
|
111
|
+
"vue-router": "^4.5.0"
|
|
110
112
|
},
|
|
111
113
|
"devDependencies": {
|
|
112
114
|
"@types/canvas-confetti": "^1.9.0",
|
|
@@ -117,7 +119,7 @@
|
|
|
117
119
|
"@vue/test-utils": "^2.4.6",
|
|
118
120
|
"embla-carousel": "^8.5.2",
|
|
119
121
|
"eslint": "^9.22.0",
|
|
120
|
-
"happy-dom": "^17.
|
|
122
|
+
"happy-dom": "^17.4.3",
|
|
121
123
|
"joi": "^17.13.3",
|
|
122
124
|
"nuxt": "^3.16.0",
|
|
123
125
|
"nuxt-component-meta": "^0.10.0",
|
|
@@ -137,7 +139,6 @@
|
|
|
137
139
|
"@bitrix24/b24ui-nuxt": "workspace:*",
|
|
138
140
|
"chokidar": "3.6.0",
|
|
139
141
|
"debug": "4.3.7",
|
|
140
|
-
"happy-dom": "17.1.2",
|
|
141
142
|
"rollup": "4.34.9",
|
|
142
143
|
"typescript": "5.6.3",
|
|
143
144
|
"unplugin": "^2.2.0",
|