@bitrix24/b24ui-nuxt 0.6.8 → 0.7.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/accordion.ts +20 -0
- package/.nuxt/b24ui/advice.ts +2 -10
- package/.nuxt/b24ui/alert.ts +2 -15
- package/.nuxt/b24ui/avatar-group.ts +2 -10
- package/.nuxt/b24ui/avatar.ts +3 -11
- package/.nuxt/b24ui/badge.ts +48 -13
- package/.nuxt/b24ui/button-group.ts +2 -22
- package/.nuxt/b24ui/button.ts +4 -17
- package/.nuxt/b24ui/calendar.ts +3 -11
- package/.nuxt/b24ui/checkbox.ts +75 -11
- package/.nuxt/b24ui/chip.ts +2 -10
- package/.nuxt/b24ui/collapsible.ts +2 -10
- package/.nuxt/b24ui/container.ts +2 -10
- package/.nuxt/b24ui/countdown.ts +2 -10
- package/.nuxt/b24ui/description-list.ts +2 -15
- package/.nuxt/b24ui/dropdown-menu.ts +4 -11
- package/.nuxt/b24ui/form-field.ts +3 -10
- package/.nuxt/b24ui/form.ts +2 -10
- package/.nuxt/b24ui/index.ts +1 -0
- package/.nuxt/b24ui/input-menu.ts +6 -30
- package/.nuxt/b24ui/input-number.ts +15 -10
- package/.nuxt/b24ui/input.ts +4 -17
- package/.nuxt/b24ui/kbd.ts +2 -10
- package/.nuxt/b24ui/link.ts +11 -17
- package/.nuxt/b24ui/modal.ts +3 -11
- package/.nuxt/b24ui/navbar-divider.ts +2 -10
- package/.nuxt/b24ui/navbar-section.ts +2 -10
- package/.nuxt/b24ui/navbar-spacer.ts +2 -10
- package/.nuxt/b24ui/navbar.ts +2 -10
- package/.nuxt/b24ui/navigation-menu.ts +69 -60
- package/.nuxt/b24ui/popover.ts +2 -10
- package/.nuxt/b24ui/progress.ts +2 -10
- package/.nuxt/b24ui/radio-group.ts +3 -11
- package/.nuxt/b24ui/range.ts +2 -10
- package/.nuxt/b24ui/select-menu.ts +10 -40
- package/.nuxt/b24ui/select.ts +10 -40
- package/.nuxt/b24ui/separator.ts +2 -10
- package/.nuxt/b24ui/sidebar-body.ts +2 -10
- package/.nuxt/b24ui/sidebar-footer.ts +2 -10
- package/.nuxt/b24ui/sidebar-header.ts +2 -10
- package/.nuxt/b24ui/sidebar-heading.ts +2 -10
- package/.nuxt/b24ui/sidebar-layout.ts +3 -11
- package/.nuxt/b24ui/sidebar-section.ts +2 -10
- package/.nuxt/b24ui/sidebar-spacer.ts +2 -10
- package/.nuxt/b24ui/sidebar.ts +2 -10
- package/.nuxt/b24ui/skeleton.ts +2 -10
- package/.nuxt/b24ui/slideover.ts +2 -10
- package/.nuxt/b24ui/stacked-layout.ts +2 -10
- package/.nuxt/b24ui/switch.ts +2 -10
- package/.nuxt/b24ui/tabs.ts +6 -13
- package/.nuxt/b24ui/textarea.ts +4 -17
- package/.nuxt/b24ui/toast.ts +2 -15
- package/.nuxt/b24ui/toaster.ts +3 -11
- package/.nuxt/b24ui/tooltip.ts +3 -11
- package/.nuxt/b24ui.css +1 -1
- package/cli/templates.mjs +2 -2
- package/dist/meta.d.mts +35333 -15836
- package/dist/meta.mjs +35333 -15836
- package/dist/module.json +1 -1
- package/dist/module.mjs +11 -3
- package/dist/runtime/air-design-tokens.css +1 -0
- package/dist/runtime/components/Accordion.vue +96 -0
- package/dist/runtime/components/Accordion.vue.d.ts +78 -0
- package/dist/runtime/components/Advice.vue +1 -1
- package/dist/runtime/components/Alert.vue +1 -1
- package/dist/runtime/components/App.vue +1 -1
- package/dist/runtime/components/Avatar.vue +11 -3
- package/dist/runtime/components/Avatar.vue.d.ts +2 -1
- package/dist/runtime/components/AvatarGroup.vue +1 -1
- package/dist/runtime/components/Badge.vue +5 -3
- package/dist/runtime/components/Badge.vue.d.ts +2 -0
- package/dist/runtime/components/Button.vue +2 -3
- package/dist/runtime/components/Button.vue.d.ts +1 -1
- package/dist/runtime/components/Calendar.vue +1 -1
- package/dist/runtime/components/Checkbox.vue +13 -4
- package/dist/runtime/components/Checkbox.vue.d.ts +9 -0
- package/dist/runtime/components/Chip.vue +1 -1
- package/dist/runtime/components/Collapsible.vue +1 -1
- package/dist/runtime/components/Countdown.vue +1 -1
- package/dist/runtime/components/Countdown.vue.d.ts +2 -2
- package/dist/runtime/components/DescriptionList.vue +3 -2
- package/dist/runtime/components/DescriptionList.vue.d.ts +1 -1
- package/dist/runtime/components/DropdownMenu.vue +1 -1
- package/dist/runtime/components/DropdownMenu.vue.d.ts +2 -0
- package/dist/runtime/components/DropdownMenuContent.vue +74 -72
- package/dist/runtime/components/DropdownMenuContent.vue.d.ts +4 -20
- package/dist/runtime/components/Form.vue +6 -6
- package/dist/runtime/components/Form.vue.d.ts +12 -11
- package/dist/runtime/components/FormField.vue +4 -4
- package/dist/runtime/components/Input.vue +12 -8
- package/dist/runtime/components/Input.vue.d.ts +31 -30
- package/dist/runtime/components/InputMenu.vue +23 -20
- package/dist/runtime/components/InputMenu.vue.d.ts +6 -4
- package/dist/runtime/components/InputNumber.vue +17 -10
- package/dist/runtime/components/InputNumber.vue.d.ts +6 -3
- package/dist/runtime/components/Link.vue +5 -13
- package/dist/runtime/components/Modal.vue +22 -14
- package/dist/runtime/components/Modal.vue.d.ts +18 -5
- package/dist/runtime/components/Navbar.vue +1 -1
- package/dist/runtime/components/NavbarDivider.vue +1 -1
- package/dist/runtime/components/NavbarSection.vue +1 -1
- package/dist/runtime/components/NavbarSpacer.vue +1 -1
- package/dist/runtime/components/NavigationMenu.vue +186 -44
- package/dist/runtime/components/NavigationMenu.vue.d.ts +39 -8
- package/dist/runtime/components/OverlayProvider.vue +2 -2
- package/dist/runtime/components/Popover.vue +4 -0
- package/dist/runtime/components/Popover.vue.d.ts +2 -1
- package/dist/runtime/components/Progress.vue +3 -2
- package/dist/runtime/components/Progress.vue.d.ts +2 -2
- package/dist/runtime/components/RadioGroup.vue +24 -8
- package/dist/runtime/components/RadioGroup.vue.d.ts +3 -1
- package/dist/runtime/components/Range.vue +2 -2
- package/dist/runtime/components/Range.vue.d.ts +19 -20
- package/dist/runtime/components/Select.vue +57 -31
- package/dist/runtime/components/Select.vue.d.ts +110 -2
- package/dist/runtime/components/SelectMenu.vue +77 -23
- package/dist/runtime/components/SelectMenu.vue.d.ts +111 -5
- package/dist/runtime/components/Separator.vue +3 -3
- package/dist/runtime/components/Sidebar.vue +1 -1
- package/dist/runtime/components/SidebarBody.vue +1 -1
- package/dist/runtime/components/SidebarFooter.vue +1 -1
- package/dist/runtime/components/SidebarHeader.vue +1 -1
- package/dist/runtime/components/SidebarHeading.vue +1 -1
- package/dist/runtime/components/SidebarLayout.vue +1 -1
- package/dist/runtime/components/SidebarSection.vue +1 -1
- package/dist/runtime/components/SidebarSpacer.vue +1 -1
- package/dist/runtime/components/Slideover.vue +23 -15
- package/dist/runtime/components/Slideover.vue.d.ts +18 -5
- package/dist/runtime/components/StackedLayout.vue +1 -1
- package/dist/runtime/components/Switch.vue +1 -1
- package/dist/runtime/components/Tabs.vue +28 -7
- package/dist/runtime/components/Tabs.vue.d.ts +6 -1
- package/dist/runtime/components/Textarea.vue +13 -9
- package/dist/runtime/components/Textarea.vue.d.ts +31 -30
- package/dist/runtime/components/Toast.vue +7 -6
- package/dist/runtime/components/Toast.vue.d.ts +6 -0
- package/dist/runtime/components/Toaster.vue +4 -4
- package/dist/runtime/components/Toaster.vue.d.ts +6 -0
- package/dist/runtime/components/Tooltip.vue +9 -2
- package/dist/runtime/components/Tooltip.vue.d.ts +2 -1
- package/dist/runtime/components/content/TableWrapper.vue +1 -1
- package/dist/runtime/composables/defineLocale.d.ts +2 -0
- package/dist/runtime/composables/defineLocale.js +4 -0
- package/dist/runtime/composables/defineShortcuts.js +8 -2
- package/dist/runtime/composables/useFormField.d.ts +1 -1
- package/dist/runtime/composables/useFormField.js +2 -1
- package/dist/runtime/composables/useKbd.d.ts +1 -0
- package/dist/runtime/composables/useKbd.js +4 -3
- package/dist/runtime/composables/useOverlay.d.ts +11 -11
- package/dist/runtime/composables/useOverlay.js +17 -11
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/inertia/components/Link.vue +45 -60
- package/dist/runtime/inertia/components/Link.vue.d.ts +1 -1
- package/dist/runtime/inertia/components/LinkBase.vue +68 -0
- package/dist/runtime/inertia/components/LinkBase.vue.d.ts +25 -0
- package/dist/runtime/inertia/stubs.d.ts +1 -1
- package/dist/runtime/inertia/stubs.js +1 -1
- package/dist/runtime/prose/A.vue +1 -1
- package/dist/runtime/prose/Blockquote.vue +1 -1
- package/dist/runtime/prose/Code.vue +1 -1
- package/dist/runtime/prose/Em.vue +1 -1
- package/dist/runtime/prose/H1.vue +1 -1
- package/dist/runtime/prose/H2.vue +1 -1
- package/dist/runtime/prose/H3.vue +1 -1
- package/dist/runtime/prose/H4.vue +1 -1
- package/dist/runtime/prose/H5.vue +1 -1
- package/dist/runtime/prose/H6.vue +1 -1
- package/dist/runtime/prose/Hr.vue +1 -1
- package/dist/runtime/prose/Img.vue +1 -1
- package/dist/runtime/prose/Li.vue +1 -1
- package/dist/runtime/prose/Ol.vue +1 -1
- package/dist/runtime/prose/P.vue +1 -1
- package/dist/runtime/prose/Pre.vue +1 -1
- package/dist/runtime/prose/Strong.vue +1 -1
- package/dist/runtime/prose/Table.vue +1 -1
- package/dist/runtime/prose/Tbody.vue +1 -1
- package/dist/runtime/prose/Td.vue +1 -1
- package/dist/runtime/prose/Th.vue +1 -1
- package/dist/runtime/prose/Thead.vue +1 -1
- package/dist/runtime/prose/Tr.vue +1 -1
- package/dist/runtime/prose/Ul.vue +1 -1
- package/dist/runtime/types/form.d.ts +11 -10
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/types/locale.d.ts +1 -0
- package/dist/runtime/types/tv.d.ts +53 -0
- package/dist/runtime/types/tv.js +0 -0
- package/dist/runtime/types/utils.d.ts +4 -51
- package/dist/runtime/types/utils.js +1 -0
- package/dist/runtime/utils/link.d.ts +1 -0
- package/dist/runtime/utils/link.js +12 -0
- package/dist/runtime/vue/components/Link.vue +26 -40
- package/dist/runtime/vue/composables/useAppConfig.js +3 -1
- package/dist/runtime/vue/stubs.d.ts +1 -1
- package/dist/runtime/vue/stubs.js +1 -1
- package/dist/shared/{b24ui-nuxt.jU270f-Q.mjs → b24ui-nuxt.CxsFEY3M.mjs} +268 -122
- package/dist/unplugin.d.mts +2 -2
- package/dist/unplugin.mjs +6 -3
- package/dist/vite.d.mts +1 -1
- package/dist/vite.mjs +2 -2
- package/package.json +30 -29
package/dist/unplugin.d.mts
CHANGED
|
@@ -3,11 +3,11 @@ import { Options } from 'unplugin-auto-import/types';
|
|
|
3
3
|
import { Options as Options$1 } from 'unplugin-vue-components/types';
|
|
4
4
|
import * as b24ui from '#build/b24ui';
|
|
5
5
|
import { ModuleOptions } from './module.mjs';
|
|
6
|
-
import {
|
|
6
|
+
import { TVConfig } from '../dist/runtime/types/tv.js';
|
|
7
7
|
import '@nuxt/schema';
|
|
8
8
|
import '../dist/runtime/types/index.js';
|
|
9
9
|
|
|
10
|
-
type AppConfigB24UI = {} &
|
|
10
|
+
type AppConfigB24UI = {} & TVConfig<typeof b24ui>;
|
|
11
11
|
interface Bitrix24UIOptions extends Omit<ModuleOptions, 'colorMode'> {
|
|
12
12
|
/** Whether to generate declaration files for auto-imported components. */
|
|
13
13
|
dts?: boolean;
|
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.CxsFEY3M.mjs';
|
|
7
7
|
import { globSync } from 'tinyglobby';
|
|
8
8
|
import { genSafeVariableName } from 'knitwork';
|
|
9
9
|
import MagicString from 'magic-string';
|
|
@@ -158,10 +158,13 @@ function ComponentImportPlugin(options, meta) {
|
|
|
158
158
|
name: "bitrix24:b24ui:components",
|
|
159
159
|
enforce: "pre",
|
|
160
160
|
resolveId(id, importer) {
|
|
161
|
-
if (!importer
|
|
161
|
+
if (!importer) {
|
|
162
162
|
return;
|
|
163
163
|
}
|
|
164
|
-
if (!
|
|
164
|
+
if (!normalize(importer).includes(runtimeDir) && (!options.extraRuntimeDir || !normalize(importer).includes(options.extraRuntimeDir))) {
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
if (!RELATIVE_IMPORT_RE.test(id) && !id.startsWith("@bitrix24/b24ui-nuxt/components/")) {
|
|
165
168
|
return;
|
|
166
169
|
}
|
|
167
170
|
const filename = id.match(/([^/]+)\.vue$/)?.[1];
|
package/dist/vite.d.mts
CHANGED
|
@@ -7,7 +7,7 @@ import '#build/b24ui';
|
|
|
7
7
|
import './module.mjs';
|
|
8
8
|
import '@nuxt/schema';
|
|
9
9
|
import '../dist/runtime/types/index.js';
|
|
10
|
-
import '../dist/runtime/types/
|
|
10
|
+
import '../dist/runtime/types/tv.js';
|
|
11
11
|
|
|
12
12
|
declare const _default: (options?: Bitrix24UIOptions | undefined) => vite.Plugin<any> | vite.Plugin<any>[];
|
|
13
13
|
|
package/dist/vite.mjs
CHANGED
|
@@ -4,11 +4,11 @@ import 'pathe';
|
|
|
4
4
|
import 'unplugin';
|
|
5
5
|
import 'defu';
|
|
6
6
|
import '@tailwindcss/vite';
|
|
7
|
-
import './shared/b24ui-nuxt.
|
|
7
|
+
import './shared/b24ui-nuxt.CxsFEY3M.mjs';
|
|
8
8
|
import 'scule';
|
|
9
9
|
import '@nuxt/kit';
|
|
10
|
-
import 'tinyglobby';
|
|
11
10
|
import 'knitwork';
|
|
11
|
+
import 'tinyglobby';
|
|
12
12
|
import 'magic-string';
|
|
13
13
|
import 'mlly';
|
|
14
14
|
import 'unplugin-vue-components';
|
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.7.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -102,20 +102,20 @@
|
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"@bitrix24/b24icons-vue": "^2.0.2",
|
|
104
104
|
"@bitrix24/b24style": "^1.0.1",
|
|
105
|
-
"@internationalized/date": "^3.8.
|
|
106
|
-
"@internationalized/number": "^3.6.
|
|
107
|
-
"@nuxt/kit": "^3.17.
|
|
108
|
-
"@nuxt/schema": "^3.17.
|
|
105
|
+
"@internationalized/date": "^3.8.2",
|
|
106
|
+
"@internationalized/number": "^3.6.3",
|
|
107
|
+
"@nuxt/kit": "^3.17.5",
|
|
108
|
+
"@nuxt/schema": "^3.17.5",
|
|
109
109
|
"@nuxtjs/color-mode": "^3.5.2",
|
|
110
110
|
"@standard-schema/spec": "^1.0.0",
|
|
111
|
-
"@tailwindcss/postcss": "^4.1.
|
|
112
|
-
"@tailwindcss/vite": "^4.1.
|
|
111
|
+
"@tailwindcss/postcss": "^4.1.11",
|
|
112
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
113
113
|
"@tanstack/vue-table": "^8.21.3",
|
|
114
|
-
"@unhead/vue": "^2.0.
|
|
115
|
-
"@vueuse/core": "^13.
|
|
116
|
-
"@vueuse/integrations": "^13.
|
|
114
|
+
"@unhead/vue": "^2.0.11",
|
|
115
|
+
"@vueuse/core": "^13.4.0",
|
|
116
|
+
"@vueuse/integrations": "^13.4.0",
|
|
117
117
|
"canvas-confetti": "^1.9.3",
|
|
118
|
-
"colortranslator": "^
|
|
118
|
+
"colortranslator": "^5.0.0",
|
|
119
119
|
"consola": "^3.4.2",
|
|
120
120
|
"defu": "^6.1.4",
|
|
121
121
|
"embla-carousel-auto-height": "^8.6.0",
|
|
@@ -132,15 +132,16 @@
|
|
|
132
132
|
"mlly": "^1.7.4",
|
|
133
133
|
"ohash": "^2.0.11",
|
|
134
134
|
"pathe": "^2.0.3",
|
|
135
|
-
"reka-ui": "
|
|
135
|
+
"reka-ui": "2.3.1",
|
|
136
136
|
"scule": "^1.3.0",
|
|
137
137
|
"tailwind-variants": "^1.0.0",
|
|
138
|
-
"tailwindcss": "^4.1.
|
|
138
|
+
"tailwindcss": "^4.1.11",
|
|
139
139
|
"tinyglobby": "^0.2.14",
|
|
140
140
|
"unplugin": "^2.3.5",
|
|
141
141
|
"unplugin-auto-import": "^19.3.0",
|
|
142
|
-
"unplugin-vue-components": "^28.
|
|
143
|
-
"vaul-vue": "
|
|
142
|
+
"unplugin-vue-components": "^28.8.0",
|
|
143
|
+
"vaul-vue": "0.4.1",
|
|
144
|
+
"vue-component-type-helpers": "^2.2.10"
|
|
144
145
|
},
|
|
145
146
|
"devDependencies": {
|
|
146
147
|
"@nuxt/eslint-config": "^1.4.1",
|
|
@@ -149,11 +150,11 @@
|
|
|
149
150
|
"@types/canvas-confetti": "^1.9.0",
|
|
150
151
|
"@vue/test-utils": "^2.4.6",
|
|
151
152
|
"embla-carousel": "^8.6.0",
|
|
152
|
-
"eslint": "^9.
|
|
153
|
-
"happy-dom": "^
|
|
154
|
-
"nuxt": "^3.17.
|
|
153
|
+
"eslint": "^9.30.0",
|
|
154
|
+
"happy-dom": "^18.0.1",
|
|
155
|
+
"nuxt": "^3.17.5",
|
|
155
156
|
"nuxt-component-meta": "^0.11.0",
|
|
156
|
-
"vitest": "^3.2.
|
|
157
|
+
"vitest": "^3.2.4",
|
|
157
158
|
"vitest-environment-nuxt": "^1.0.1",
|
|
158
159
|
"vue-tsc": "^2.2.10"
|
|
159
160
|
},
|
|
@@ -195,8 +196,8 @@
|
|
|
195
196
|
"chokidar": "3.6.0",
|
|
196
197
|
"debug": "4.3.7",
|
|
197
198
|
"rollup": "4.34.9",
|
|
198
|
-
"
|
|
199
|
-
"
|
|
199
|
+
"unimport": "4.1.1",
|
|
200
|
+
"unplugin": "^2.3.5"
|
|
200
201
|
},
|
|
201
202
|
"keywords": [
|
|
202
203
|
"bitrix24-ui",
|
|
@@ -216,16 +217,16 @@
|
|
|
216
217
|
"ui-framework"
|
|
217
218
|
],
|
|
218
219
|
"scripts": {
|
|
219
|
-
"dev:prepare-short": "nuxt-module-build build --stub && nuxt-module-build prepare &&
|
|
220
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare &&
|
|
220
|
+
"dev:prepare-short": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground && pnpm dev:vue:build && nuxt prepare demo",
|
|
221
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground && pnpm dev:vue:build && nuxt prepare demo && nuxt-component-meta playground --outputDir ../src/.component-meta/",
|
|
221
222
|
"build": "nuxt-module-build build",
|
|
222
|
-
"dev": "
|
|
223
|
-
"dev:build": "
|
|
223
|
+
"dev": "nuxt dev playground --uiDev",
|
|
224
|
+
"dev:build": "nuxt build playground",
|
|
224
225
|
"dev:generate": "nuxt generate playground",
|
|
225
226
|
"dev:preview": "nuxt preview playground",
|
|
226
|
-
"dev:vue": "
|
|
227
|
-
"dev:vue:build": "
|
|
228
|
-
"demo:dev": "
|
|
227
|
+
"dev:vue": "pnpm --filter @bitrix24/b24ui-vue-playground dev -- --uiDev",
|
|
228
|
+
"dev:vue:build": "pnpm --filter @bitrix24/b24ui-vue-playground build",
|
|
229
|
+
"demo:dev": "nuxt dev demo",
|
|
229
230
|
"demo:generate": "nuxt generate demo",
|
|
230
231
|
"demo:preview": "nuxt preview demo",
|
|
231
232
|
"docs:full:dev": "pnpm build && vitepress dev docs",
|
|
@@ -235,7 +236,7 @@
|
|
|
235
236
|
"docs:preview": "vitepress preview docs",
|
|
236
237
|
"lint": "eslint .",
|
|
237
238
|
"lint:fix": "eslint . --fix",
|
|
238
|
-
"typecheck": "vue-tsc --noEmit &&
|
|
239
|
+
"typecheck": "vue-tsc --noEmit && nuxt typecheck playground && cd playground-vue && vue-tsc --noEmit",
|
|
239
240
|
"test": "vitest",
|
|
240
241
|
"test:vue": "vitest -c vitest.vue.config.ts"
|
|
241
242
|
}
|