@bitrix24/b24ui-nuxt 0.4.9 → 0.4.10
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/index.ts +13 -0
- package/.nuxt/b24ui/navbar-divider.ts +5 -0
- package/.nuxt/b24ui/navbar-section.ts +5 -0
- package/.nuxt/b24ui/navbar-spacer.ts +5 -0
- package/.nuxt/b24ui/navbar.ts +5 -0
- package/.nuxt/b24ui/sidebar-body.ts +15 -0
- package/.nuxt/b24ui/sidebar-footer.ts +5 -0
- package/.nuxt/b24ui/sidebar-header.ts +5 -0
- package/.nuxt/b24ui/sidebar-heading.ts +5 -0
- package/.nuxt/b24ui/sidebar-layout.ts +38 -0
- package/.nuxt/b24ui/sidebar-section.ts +5 -0
- package/.nuxt/b24ui/sidebar-spacer.ts +5 -0
- package/.nuxt/b24ui/sidebar.ts +5 -0
- package/.nuxt/b24ui/stacked-layout.ts +9 -0
- package/dist/meta.cjs +974 -11
- package/dist/meta.d.cts +974 -11
- package/dist/meta.d.mts +974 -11
- package/dist/meta.d.ts +974 -11
- package/dist/meta.mjs +974 -11
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Navbar.vue +44 -0
- package/dist/runtime/components/NavbarDivider.vue +43 -0
- package/dist/runtime/components/NavbarSection.vue +47 -0
- package/dist/runtime/components/NavbarSpacer.vue +43 -0
- package/dist/runtime/components/Sidebar.vue +44 -0
- package/dist/runtime/components/SidebarBody.vue +49 -0
- package/dist/runtime/components/SidebarFooter.vue +43 -0
- package/dist/runtime/components/SidebarHeader.vue +43 -0
- package/dist/runtime/components/SidebarHeading.vue +43 -0
- package/dist/runtime/components/SidebarLayout.vue +131 -0
- package/dist/runtime/components/SidebarSection.vue +47 -0
- package/dist/runtime/components/SidebarSpacer.vue +43 -0
- package/dist/runtime/components/StackedLayout.vue +51 -0
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/plugins/colors.js +2 -5
- package/dist/runtime/types/index.d.ts +13 -0
- package/dist/runtime/types/index.js +13 -0
- package/dist/runtime/utils/link.d.ts +7 -7
- package/dist/runtime/vue/plugins/head.js +3 -0
- package/dist/runtime/vue/stubs.d.ts +1 -2
- package/dist/runtime/vue/stubs.js +1 -2
- package/dist/shared/{b24ui-nuxt.CH0xlXgy.cjs → b24ui-nuxt.CY35QViH.cjs} +230 -0
- package/dist/shared/{b24ui-nuxt.D6rkGFKm.mjs → b24ui-nuxt._rviRWFf.mjs} +230 -0
- package/dist/unplugin.cjs +6 -2
- package/dist/unplugin.mjs +6 -2
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +4 -4
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.CY35QViH.cjs');
|
|
9
9
|
const tinyglobby = require('tinyglobby');
|
|
10
10
|
const knitwork = require('knitwork');
|
|
11
11
|
const MagicString = require('magic-string');
|
|
@@ -123,7 +123,11 @@ function ComponentImportPlugin(options, meta) {
|
|
|
123
123
|
const overrideNames = new Set(overrides.map((c) => `B24${c.replace(/\.vue$/, "")}`));
|
|
124
124
|
const pluginOptions = defu.defu(options.components, {
|
|
125
125
|
dts: options.dts ?? true,
|
|
126
|
-
exclude: [
|
|
126
|
+
exclude: [
|
|
127
|
+
/[\\/]node_modules[\\/](?!\.pnpm|@bitrix24\/b24ui-nuxt|@compodium\/examples)/,
|
|
128
|
+
/[\\/]\.git[\\/]/,
|
|
129
|
+
/[\\/]\.nuxt[\\/]/
|
|
130
|
+
],
|
|
127
131
|
resolvers: [
|
|
128
132
|
(componentName) => {
|
|
129
133
|
if (overrideNames.has(componentName))
|
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._rviRWFf.mjs';
|
|
7
7
|
import { globSync } from 'tinyglobby';
|
|
8
8
|
import { genSafeVariableName } from 'knitwork';
|
|
9
9
|
import MagicString from 'magic-string';
|
|
@@ -113,7 +113,11 @@ function ComponentImportPlugin(options, meta) {
|
|
|
113
113
|
const overrideNames = new Set(overrides.map((c) => `B24${c.replace(/\.vue$/, "")}`));
|
|
114
114
|
const pluginOptions = defu(options.components, {
|
|
115
115
|
dts: options.dts ?? true,
|
|
116
|
-
exclude: [
|
|
116
|
+
exclude: [
|
|
117
|
+
/[\\/]node_modules[\\/](?!\.pnpm|@bitrix24\/b24ui-nuxt|@compodium\/examples)/,
|
|
118
|
+
/[\\/]\.git[\\/]/,
|
|
119
|
+
/[\\/]\.nuxt[\\/]/
|
|
120
|
+
],
|
|
117
121
|
resolvers: [
|
|
118
122
|
(componentName) => {
|
|
119
123
|
if (overrideNames.has(componentName))
|
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.10",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@tailwindcss/postcss": "^4.0.14",
|
|
79
79
|
"@tailwindcss/vite": "^4.0.14",
|
|
80
80
|
"@tanstack/vue-table": "^8.21.2",
|
|
81
|
-
"@unhead/vue": "^2.0.0-rc.
|
|
81
|
+
"@unhead/vue": "^2.0.0-rc.13",
|
|
82
82
|
"@vueuse/core": "^13.0.0",
|
|
83
83
|
"@vueuse/integrations": "^13.0.0",
|
|
84
84
|
"canvas-confetti": "^1.9.3",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"mlly": "^1.7.4",
|
|
99
99
|
"ohash": "^2.0.11",
|
|
100
100
|
"pathe": "^2.0.3",
|
|
101
|
-
"reka-ui": "^2.0
|
|
101
|
+
"reka-ui": "^2.1.0",
|
|
102
102
|
"scule": "^1.3.0",
|
|
103
103
|
"tailwind-variants": "^1.0.0",
|
|
104
104
|
"tailwindcss": "^4.0.14",
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
"superstruct": "^2.0.2",
|
|
127
127
|
"valibot": "^0.42.1",
|
|
128
128
|
"vitepress": "^1.5.0",
|
|
129
|
-
"vitest": "^3.0.
|
|
129
|
+
"vitest": "^3.0.9",
|
|
130
130
|
"vitest-environment-nuxt": "^1.0.1",
|
|
131
131
|
"vue-tsc": "^2.2.0",
|
|
132
132
|
"yup": "^1.6.1",
|