@bitrix24/b24ui-nuxt 0.4.11 → 0.5.1
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 +301 -68
- package/.nuxt/b24ui/sidebar-body.ts +1 -1
- package/.nuxt/b24ui/sidebar-footer.ts +1 -1
- package/.nuxt/b24ui/sidebar-header.ts +1 -1
- package/.nuxt/b24ui/sidebar-heading.ts +1 -1
- package/.nuxt/b24ui/sidebar-section.ts +1 -1
- package/.nuxt/b24ui.css +1 -1
- package/README.md +2 -2
- package/dist/meta.cjs +6503 -263
- package/dist/meta.d.cts +6503 -263
- package/dist/meta.d.mts +6503 -263
- package/dist/meta.d.ts +6503 -263
- package/dist/meta.mjs +6503 -263
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/DropdownMenu.vue +5 -5
- package/dist/runtime/components/Form.vue +21 -1
- package/dist/runtime/components/FormField.vue +5 -0
- package/dist/runtime/components/InputMenu.vue +3 -3
- package/dist/runtime/components/Modal.vue +10 -7
- package/dist/runtime/components/NavigationMenu.vue +44 -36
- package/dist/runtime/components/Popover.vue +3 -2
- package/dist/runtime/components/RadioGroup.vue +2 -2
- package/dist/runtime/components/Select.vue +3 -3
- package/dist/runtime/components/SelectMenu.vue +3 -3
- package/dist/runtime/components/Slideover.vue +10 -7
- package/dist/runtime/components/Toast.vue +1 -1
- package/dist/runtime/components/Tooltip.vue +3 -2
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/plugins/colors.d.ts +3 -0
- package/dist/runtime/types/form.d.ts +1 -3
- package/dist/runtime/utils/form.d.ts +0 -4
- package/dist/runtime/utils/form.js +2 -47
- package/dist/runtime/utils/link.d.ts +8 -8
- package/dist/runtime/vue/stubs.d.ts +1 -1
- package/dist/shared/{b24ui-nuxt.CJqO7fYv.mjs → b24ui-nuxt.CBnBA3PE.mjs} +466 -56
- package/dist/shared/{b24ui-nuxt.CltBJi1M.cjs → b24ui-nuxt.ClMXHpMM.cjs} +466 -56
- 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 +11 -11
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.ClMXHpMM.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.CBnBA3PE.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
|
+
"version": "0.5.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"@bitrix24/b24style": "^1.0.1",
|
|
73
73
|
"@internationalized/date": "^3.7.0",
|
|
74
74
|
"@internationalized/number": "^3.6.0",
|
|
75
|
-
"@nuxt/kit": "^3.16.
|
|
76
|
-
"@nuxt/schema": "^3.16.
|
|
75
|
+
"@nuxt/kit": "^3.16.1",
|
|
76
|
+
"@nuxt/schema": "^3.16.1",
|
|
77
77
|
"@nuxtjs/color-mode": "^3.5.2",
|
|
78
|
-
"@tailwindcss/postcss": "^4.0.
|
|
79
|
-
"@tailwindcss/vite": "^4.0.
|
|
78
|
+
"@tailwindcss/postcss": "^4.0.15",
|
|
79
|
+
"@tailwindcss/vite": "^4.0.15",
|
|
80
80
|
"@tanstack/vue-table": "^8.21.2",
|
|
81
81
|
"@unhead/vue": "^2.0.0-rc.13",
|
|
82
82
|
"@vueuse/core": "^13.0.0",
|
|
@@ -101,12 +101,12 @@
|
|
|
101
101
|
"reka-ui": "^2.1.0",
|
|
102
102
|
"scule": "^1.3.0",
|
|
103
103
|
"tailwind-variants": "^1.0.0",
|
|
104
|
-
"tailwindcss": "^4.0.
|
|
104
|
+
"tailwindcss": "^4.0.15",
|
|
105
105
|
"tinyglobby": "^0.2.12",
|
|
106
|
-
"unplugin": "^2.2.
|
|
106
|
+
"unplugin": "^2.2.1",
|
|
107
107
|
"unplugin-auto-import": "^19.1.1",
|
|
108
108
|
"unplugin-vue-components": "^28.4.1",
|
|
109
|
-
"vaul-vue": "^0.
|
|
109
|
+
"vaul-vue": "^0.4.1",
|
|
110
110
|
"vue": "^3.5.13",
|
|
111
111
|
"vue-router": "^4.5.0"
|
|
112
112
|
},
|
|
@@ -121,10 +121,10 @@
|
|
|
121
121
|
"eslint": "^9.22.0",
|
|
122
122
|
"happy-dom": "^17.4.4",
|
|
123
123
|
"joi": "^17.13.3",
|
|
124
|
-
"nuxt": "^3.16.
|
|
124
|
+
"nuxt": "^3.16.1",
|
|
125
125
|
"nuxt-component-meta": "^0.10.0",
|
|
126
126
|
"superstruct": "^2.0.2",
|
|
127
|
-
"valibot": "^0.
|
|
127
|
+
"valibot": "^1.0.0",
|
|
128
128
|
"vitepress": "^1.5.0",
|
|
129
129
|
"vitest": "^3.0.9",
|
|
130
130
|
"vitest-environment-nuxt": "^1.0.1",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"debug": "4.3.7",
|
|
142
142
|
"rollup": "4.34.9",
|
|
143
143
|
"typescript": "5.6.3",
|
|
144
|
-
"unplugin": "^2.2.
|
|
144
|
+
"unplugin": "^2.2.1",
|
|
145
145
|
"vue": "3.5.13",
|
|
146
146
|
"vue-tsc": "2.2.0"
|
|
147
147
|
},
|