@bitrix24/b24ui-nuxt 0.4.5 → 0.4.6
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/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 +413 -36
- package/dist/meta.d.cts +413 -36
- package/dist/meta.d.mts +413 -36
- package/dist/meta.d.ts +413 -36
- package/dist/meta.mjs +413 -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/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/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/index.d.ts +6 -0
- package/dist/runtime/types/index.js +6 -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 +4 -0
- package/dist/runtime/vue/stubs.js +1 -0
- package/dist/shared/{b24ui-nuxt.BH-d1ImO.mjs → b24ui-nuxt.BiEJAB1L.mjs} +55 -1
- package/dist/shared/{b24ui-nuxt.DxEKoBT7.cjs → b24ui-nuxt.yyScbwpE.cjs} +55 -1
- 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 +7 -6
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.6",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"@tailwindcss/vite": "^4.0.12",
|
|
80
80
|
"@tanstack/vue-table": "^8.21.2",
|
|
81
81
|
"@unhead/vue": "^2.0.0-rc.9",
|
|
82
|
-
"@vueuse/core": "^
|
|
83
|
-
"@vueuse/integrations": "^
|
|
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",
|