@bitrix24/b24ui-nuxt 0.2.8 → 0.2.9
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/avatar.ts +1 -1
- package/.nuxt/b24ui/modal.ts +3 -2
- package/.nuxt/b24ui/prose/table-wrapper.ts +46 -0
- package/README.md +1 -1
- package/dist/meta.cjs +12375 -15587
- package/dist/meta.d.cts +12375 -15587
- package/dist/meta.d.mts +12375 -15587
- package/dist/meta.d.ts +12375 -15587
- package/dist/meta.mjs +12375 -15587
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Alert.vue +2 -2
- package/dist/runtime/components/Avatar.vue +21 -34
- package/dist/runtime/components/Form.vue +6 -4
- package/dist/runtime/components/Modal.vue +20 -15
- package/dist/runtime/components/Toast.vue +2 -2
- package/dist/runtime/components/Toaster.vue +2 -1
- package/dist/runtime/components/Tooltip.vue +1 -1
- package/dist/runtime/components/prose/TableWrapper.vue +67 -0
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/shared/{b24ui-nuxt.BJy-SIWG.mjs → b24ui-nuxt.0h2uYsyZ.mjs} +91 -5
- package/dist/shared/{b24ui-nuxt.DBz6Z5xw.cjs → b24ui-nuxt.DcPkWX-m.cjs} +91 -5
- package/dist/unplugin.cjs +13 -1
- package/dist/unplugin.mjs +13 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +12 -12
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.DcPkWX-m.cjs');
|
|
9
9
|
const tinyglobby = require('tinyglobby');
|
|
10
10
|
const knitwork = require('knitwork');
|
|
11
11
|
const MagicString = require('magic-string');
|
|
@@ -78,6 +78,18 @@ ${plugins.map((p) => ` app.use(${knitwork.genSafeVariableName(p)})`).join("\n
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
`;
|
|
81
|
+
},
|
|
82
|
+
// Argument Vite specific configuration
|
|
83
|
+
vite: {
|
|
84
|
+
config() {
|
|
85
|
+
return {
|
|
86
|
+
// Opt-out Bitrix24 UI from Vite's pre-bundling,
|
|
87
|
+
// as we need Vite's pipeline to resolve imports like `#imports`
|
|
88
|
+
optimizeDeps: {
|
|
89
|
+
exclude: ["@bitrix24/b24ui-nuxt"]
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
}
|
|
81
93
|
}
|
|
82
94
|
};
|
|
83
95
|
}
|
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.0h2uYsyZ.mjs';
|
|
7
7
|
import { globSync } from 'tinyglobby';
|
|
8
8
|
import { genSafeVariableName } from 'knitwork';
|
|
9
9
|
import MagicString from 'magic-string';
|
|
@@ -68,6 +68,18 @@ ${plugins.map((p) => ` app.use(${genSafeVariableName(p)})`).join("\n")}
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
`;
|
|
71
|
+
},
|
|
72
|
+
// Argument Vite specific configuration
|
|
73
|
+
vite: {
|
|
74
|
+
config() {
|
|
75
|
+
return {
|
|
76
|
+
// Opt-out Bitrix24 UI from Vite's pre-bundling,
|
|
77
|
+
// as we need Vite's pipeline to resolve imports like `#imports`
|
|
78
|
+
optimizeDeps: {
|
|
79
|
+
exclude: ["@bitrix24/b24ui-nuxt"]
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
}
|
|
71
83
|
}
|
|
72
84
|
};
|
|
73
85
|
}
|
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.2.
|
|
4
|
+
"version": "0.2.9",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"@nuxt/kit": "^3.15.4",
|
|
72
72
|
"@nuxt/schema": "^3.15.4",
|
|
73
73
|
"@nuxtjs/color-mode": "^3.5.2",
|
|
74
|
-
"@tailwindcss/postcss": "^4.0.
|
|
75
|
-
"@tailwindcss/vite": "^4.0.
|
|
74
|
+
"@tailwindcss/postcss": "^4.0.7",
|
|
75
|
+
"@tailwindcss/vite": "^4.0.7",
|
|
76
76
|
"@tanstack/vue-table": "^8.21.2",
|
|
77
77
|
"@unhead/vue": "^1.11.19",
|
|
78
78
|
"@vueuse/core": "^12.7.0",
|
|
@@ -93,25 +93,26 @@
|
|
|
93
93
|
"mlly": "^1.7.4",
|
|
94
94
|
"ohash": "^1.1.4",
|
|
95
95
|
"pathe": "^2.0.3",
|
|
96
|
-
"reka-ui": "
|
|
96
|
+
"reka-ui": "^2.0.0",
|
|
97
97
|
"scule": "^1.3.0",
|
|
98
|
+
"sirv": "^3.0.1",
|
|
98
99
|
"tailwind-variants": "^0.3.1",
|
|
99
|
-
"tailwindcss": "^4.0.
|
|
100
|
-
"tinyglobby": "^0.2.
|
|
100
|
+
"tailwindcss": "^4.0.7",
|
|
101
|
+
"tinyglobby": "^0.2.11",
|
|
101
102
|
"unplugin": "^2.2.0",
|
|
102
103
|
"unplugin-auto-import": "^19.1.0",
|
|
103
|
-
"unplugin-vue-components": "^28.
|
|
104
|
-
"vaul-vue": "^0.
|
|
104
|
+
"unplugin-vue-components": "^28.4.0",
|
|
105
|
+
"vaul-vue": "^0.3.0"
|
|
105
106
|
},
|
|
106
107
|
"devDependencies": {
|
|
107
|
-
"@nuxt/eslint-config": "^1.0
|
|
108
|
+
"@nuxt/eslint-config": "^1.1.0",
|
|
108
109
|
"@nuxt/module-builder": "^0.8.4",
|
|
109
110
|
"@nuxt/test-utils": "^3.15.4",
|
|
110
111
|
"@standard-schema/spec": "^1.0.0",
|
|
111
112
|
"@vue/test-utils": "^2.4.6",
|
|
112
113
|
"embla-carousel": "^8.5.2",
|
|
113
114
|
"eslint": "^9.20.1",
|
|
114
|
-
"happy-dom": "^17.1.
|
|
115
|
+
"happy-dom": "^17.1.1",
|
|
115
116
|
"joi": "^17.13.3",
|
|
116
117
|
"knitwork": "^1.2.0",
|
|
117
118
|
"nuxt": "^3.15.4",
|
|
@@ -119,7 +120,7 @@
|
|
|
119
120
|
"superstruct": "^2.0.2",
|
|
120
121
|
"valibot": "^0.42.1",
|
|
121
122
|
"vitepress": "^1.5.0",
|
|
122
|
-
"vitest": "^3.0.
|
|
123
|
+
"vitest": "^3.0.6",
|
|
123
124
|
"vitest-environment-nuxt": "^1.0.1",
|
|
124
125
|
"vue-tsc": "^2.2.0",
|
|
125
126
|
"yup": "^1.6.1",
|
|
@@ -136,7 +137,6 @@
|
|
|
136
137
|
"typescript": "5.6.3",
|
|
137
138
|
"unimport": "3.14.5",
|
|
138
139
|
"unplugin": "^2.2.0",
|
|
139
|
-
"vite": "^6.0.11",
|
|
140
140
|
"vue": "3.5.13",
|
|
141
141
|
"vue-tsc": "2.2.0"
|
|
142
142
|
},
|