@bitrix24/b24ui-nuxt 0.2.2 → 0.2.3
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/button.ts +9 -2
- package/.nuxt/b24ui/checkbox.ts +1 -1
- package/.nuxt/b24ui/index.ts +1 -0
- package/.nuxt/b24ui/input-menu.ts +1 -1
- package/.nuxt/b24ui/modal.ts +28 -0
- package/.nuxt/b24ui/radio-group.ts +1 -1
- package/.nuxt/b24ui/range.ts +1 -1
- package/.nuxt/b24ui/select-menu.ts +1 -1
- package/.nuxt/b24ui/select.ts +1 -1
- package/.nuxt/b24ui/switch.ts +1 -1
- package/.nuxt/b24ui/tabs.ts +2 -2
- package/.nuxt/b24ui/toaster.ts +4 -4
- package/dist/meta.cjs +1357 -13
- package/dist/meta.d.cts +1357 -13
- package/dist/meta.d.mts +1357 -13
- package/dist/meta.d.ts +1357 -13
- package/dist/meta.mjs +1357 -13
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/App.vue +2 -2
- package/dist/runtime/components/Modal.vue +179 -0
- package/dist/runtime/components/ModalDialogClose.vue +17 -0
- package/dist/runtime/components/ModalProvider.vue +12 -0
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/composables/useModal.d.ts +17 -0
- package/dist/runtime/composables/useModal.js +46 -0
- package/dist/runtime/plugins/modal.d.ts +2 -0
- package/dist/runtime/plugins/modal.js +10 -0
- package/dist/runtime/types/index.d.ts +2 -0
- package/dist/runtime/types/index.js +2 -0
- package/dist/shared/{b24ui-nuxt.DgnM0VWe.cjs → b24ui-nuxt.Ce3hzs_q.cjs} +79 -26
- package/dist/shared/{b24ui-nuxt.CYvh5VlN.mjs → b24ui-nuxt.DY8ePXC7.mjs} +79 -26
- 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 +6 -4
|
@@ -718,7 +718,8 @@ const button = {
|
|
|
718
718
|
slots: {
|
|
719
719
|
base: [
|
|
720
720
|
"select-none cursor-pointer inline-flex items-center",
|
|
721
|
-
"relative
|
|
721
|
+
"relative",
|
|
722
|
+
"outline-transparent focus:outline-hidden focus-visible:outline-2 focus-visible:outline-offset-2",
|
|
722
723
|
"disabled:cursor-not-allowed aria-disabled:cursor-not-allowed disabled:opacity-50 aria-disabled:opacity-50",
|
|
723
724
|
"transition duration-150 ease-linear"
|
|
724
725
|
// transition-colors
|
|
@@ -735,7 +736,6 @@ const button = {
|
|
|
735
736
|
variants: {
|
|
736
737
|
...buttonGroupVariant,
|
|
737
738
|
color: {
|
|
738
|
-
// DEFAULT ////
|
|
739
739
|
default: [
|
|
740
740
|
"text-white dark:text-base-100 bg-base-650 border border-base-650",
|
|
741
741
|
"hover:bg-base-850 hover:border-base-850 hover:focus-visible:ring-0",
|
|
@@ -752,7 +752,6 @@ const button = {
|
|
|
752
752
|
"focus-visible:outline-red-720",
|
|
753
753
|
"ring-red-800 focus-visible:ring-red-800"
|
|
754
754
|
].join(" "),
|
|
755
|
-
// SUCCESS ////
|
|
756
755
|
success: [
|
|
757
756
|
"text-base-900 bg-green-450 border border-green-450",
|
|
758
757
|
"hover:bg-green-370 hover:border-green-370 hover:focus-visible:ring-0",
|
|
@@ -761,7 +760,6 @@ const button = {
|
|
|
761
760
|
"focus-visible:outline-green-450",
|
|
762
761
|
"ring-green-500 focus-visible:ring-green-500"
|
|
763
762
|
].join(" "),
|
|
764
|
-
// new WARNING ////
|
|
765
763
|
warning: [
|
|
766
764
|
"text-white dark:text-orange-100 bg-orange-500 border border-orange-500",
|
|
767
765
|
"hover:bg-orange-500/75 hover:border-orange-500/75 hover:focus-visible:ring-0",
|
|
@@ -770,7 +768,6 @@ const button = {
|
|
|
770
768
|
"focus-visible:outline-orange-500",
|
|
771
769
|
"ring-orange-800 focus-visible:ring-orange-800"
|
|
772
770
|
].join(" "),
|
|
773
|
-
// PRIMARY ////
|
|
774
771
|
primary: [
|
|
775
772
|
"text-white dark:text-blue-100 bg-blue-530 border border-blue-530",
|
|
776
773
|
"hover:bg-blue-450 hover:border-blue-450 hover:focus-visible:ring-0",
|
|
@@ -779,7 +776,6 @@ const button = {
|
|
|
779
776
|
"focus-visible:outline-blue-530",
|
|
780
777
|
"ring-blue-800 focus-visible:ring-blue-800"
|
|
781
778
|
].join(" "),
|
|
782
|
-
// SECONDARY ////
|
|
783
779
|
secondary: [
|
|
784
780
|
"text-base-900 bg-cyan-160 border border-cyan-230",
|
|
785
781
|
"hover:bg-cyan-150 hover:border-cyan-230 hover:focus-visible:ring-0",
|
|
@@ -788,7 +784,6 @@ const button = {
|
|
|
788
784
|
"focus-visible:outline-cyan-160",
|
|
789
785
|
"ring-cyan-500 focus-visible:ring-cyan-500"
|
|
790
786
|
].join(" "),
|
|
791
|
-
// COLLAB ////
|
|
792
787
|
collab: [
|
|
793
788
|
"text-white dark:text-collab-100 bg-collab-600 border border-collab-600",
|
|
794
789
|
"hover:bg-collab-500 hover:border-collab-500 hover:focus-visible:ring-0",
|
|
@@ -797,7 +792,6 @@ const button = {
|
|
|
797
792
|
"focus-visible:outline-collab-600",
|
|
798
793
|
"ring-collab-900 focus-visible:ring-collab-900"
|
|
799
794
|
].join(" "),
|
|
800
|
-
// AI ////
|
|
801
795
|
ai: [
|
|
802
796
|
"text-white dark:text-ai-100 bg-ai-450 border border-ai-450",
|
|
803
797
|
"hover:bg-ai-370 hover:border-ai-370 hover:focus-visible:ring-0",
|
|
@@ -806,7 +800,6 @@ const button = {
|
|
|
806
800
|
"focus-visible:outline-ai-450",
|
|
807
801
|
"ring-ai-900 focus-visible:ring-ai-900"
|
|
808
802
|
].join(" "),
|
|
809
|
-
// LINK ////
|
|
810
803
|
link: [
|
|
811
804
|
"no-underline decoration-solid decoration-auto",
|
|
812
805
|
"text-base-900 decoration-gray-900 bg-transparent border border-transparent dark:text-base-300",
|
|
@@ -894,7 +887,6 @@ const button = {
|
|
|
894
887
|
compoundVariants: [
|
|
895
888
|
// region default ////
|
|
896
889
|
{
|
|
897
|
-
// BASE_LIGHT ////
|
|
898
890
|
color: "default",
|
|
899
891
|
depth: "light",
|
|
900
892
|
class: [
|
|
@@ -902,7 +894,8 @@ const button = {
|
|
|
902
894
|
"hover:bg-base-320 hover:border-base-320 hover:focus-visible:ring-0",
|
|
903
895
|
"active:bg-base-250 active:border-base-250 active:focus-visible:ring-0",
|
|
904
896
|
"disabled:bg-base-200 aria-disabled:bg-base-200 disabled:border-base-300 aria-disabled:border-base-300",
|
|
905
|
-
"focus-visible:outline-base-200"
|
|
897
|
+
"focus-visible:outline-base-200",
|
|
898
|
+
"ring-base-320 focus-visible:ring-base-320"
|
|
906
899
|
].join(" ")
|
|
907
900
|
},
|
|
908
901
|
{
|
|
@@ -1123,12 +1116,18 @@ const button = {
|
|
|
1123
1116
|
].join(" ")
|
|
1124
1117
|
},
|
|
1125
1118
|
{
|
|
1126
|
-
//
|
|
1119
|
+
// LINK ////
|
|
1127
1120
|
color: "link",
|
|
1128
1121
|
depth: "light",
|
|
1129
1122
|
useLabel: true,
|
|
1130
1123
|
class: "ps-1.5 pe-1.5"
|
|
1131
1124
|
},
|
|
1125
|
+
{
|
|
1126
|
+
color: "link",
|
|
1127
|
+
depth: "normal",
|
|
1128
|
+
useLabel: true,
|
|
1129
|
+
class: "ps-0 pe-0"
|
|
1130
|
+
},
|
|
1132
1131
|
{
|
|
1133
1132
|
// LIGHT_BORDER ////
|
|
1134
1133
|
color: "link",
|
|
@@ -1264,7 +1263,11 @@ const button = {
|
|
|
1264
1263
|
const checkbox = {
|
|
1265
1264
|
slots: {
|
|
1266
1265
|
root: "relative flex items-start",
|
|
1267
|
-
base:
|
|
1266
|
+
base: [
|
|
1267
|
+
"cursor-pointer shrink-0 flex items-center justify-center rounded-2xs text-white dark:text-base-150",
|
|
1268
|
+
"ring ring-inset ring-base-300 dark:ring-base-700",
|
|
1269
|
+
"outline-transparent focus-visible:outline-2 focus-visible:outline-offset-2"
|
|
1270
|
+
].join(" "),
|
|
1268
1271
|
container: "flex items-center",
|
|
1269
1272
|
wrapper: "font-b24-primary ms-2",
|
|
1270
1273
|
icon: "shrink-0 size-full",
|
|
@@ -2475,9 +2478,9 @@ const inputMenu = () => {
|
|
|
2475
2478
|
trailing: "group absolute inset-y-0 end-0 flex items-center disabled:cursor-not-allowed disabled:opacity-75",
|
|
2476
2479
|
arrow: "fill-base-master/10 dark:fill-base-100/20",
|
|
2477
2480
|
content: [
|
|
2478
|
-
"w-
|
|
2481
|
+
"w-(--reka-popper-anchor-width)",
|
|
2479
2482
|
// 'max-h-60',
|
|
2480
|
-
// 'h-
|
|
2483
|
+
// 'h-(--reka-popper-available-height)',
|
|
2481
2484
|
"bg-white dark:bg-base-dark",
|
|
2482
2485
|
"shadow-md rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
2483
2486
|
"overflow-hidden",
|
|
@@ -2750,6 +2753,46 @@ const link = (options) => ({
|
|
|
2750
2753
|
}
|
|
2751
2754
|
});
|
|
2752
2755
|
|
|
2756
|
+
const modal = {
|
|
2757
|
+
slots: {
|
|
2758
|
+
overlay: "fixed inset-0 bg-base-950/20 dark:bg-base-950/30",
|
|
2759
|
+
content: [
|
|
2760
|
+
"py-md2 px-5",
|
|
2761
|
+
"fixed w-full h-dvh bg-white dark:bg-base-950",
|
|
2762
|
+
// 'divide-y divide-base-900/10 dark:divide-white/20',
|
|
2763
|
+
"flex flex-col focus:outline-none"
|
|
2764
|
+
].join(" "),
|
|
2765
|
+
header: "pe-5 pt-0",
|
|
2766
|
+
body: "flex-1 overflow-y-auto my-2.5 text-md leading-normal",
|
|
2767
|
+
footer: "flex items-center justify-center gap-3 mt-2.5 pt-4 border-t border-t-1 border-t-base-900/10 dark:border-t-white/20",
|
|
2768
|
+
title: "font-bold text-md leading-normal text-base-900 dark:text-base-150",
|
|
2769
|
+
description: "mt-0.5 mb-1 text-base-500 dark:text-base-400 text-sm",
|
|
2770
|
+
close: "absolute top-2 end-1.5 p-0.5"
|
|
2771
|
+
},
|
|
2772
|
+
variants: {
|
|
2773
|
+
transition: {
|
|
2774
|
+
true: {
|
|
2775
|
+
overlay: "data-[state=open]:animate-[fade-in_200ms_ease-out] data-[state=closed]:animate-[fade-out_200ms_ease-in]",
|
|
2776
|
+
content: "data-[state=open]:animate-[scale-in_200ms_ease-out] data-[state=closed]:animate-[scale-out_200ms_ease-in]"
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
fullscreen: {
|
|
2780
|
+
true: {
|
|
2781
|
+
content: "inset-0"
|
|
2782
|
+
},
|
|
2783
|
+
false: {
|
|
2784
|
+
content: [
|
|
2785
|
+
"top-[50%] left-[50%] translate-x-[-50%] translate-y-[-50%]",
|
|
2786
|
+
"sm:min-w-[400px]",
|
|
2787
|
+
"sm:max-w-[420px] sm:h-auto sm:max-h-[calc(100vh-4rem)]",
|
|
2788
|
+
"sm:rounded-md sm:shadow-lg",
|
|
2789
|
+
"sm:ring ring-base-300 dark:ring-base-800"
|
|
2790
|
+
].join(" ")
|
|
2791
|
+
}
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
};
|
|
2795
|
+
|
|
2753
2796
|
const progress = {
|
|
2754
2797
|
slots: {
|
|
2755
2798
|
root: "gap-2",
|
|
@@ -3030,7 +3073,11 @@ const radioGroup = {
|
|
|
3030
3073
|
fieldset: "flex",
|
|
3031
3074
|
legend: "mb-1.5 block font-medium text-base-master dark:text-base-400",
|
|
3032
3075
|
item: "flex items-start",
|
|
3033
|
-
base:
|
|
3076
|
+
base: [
|
|
3077
|
+
"cursor-pointer rounded-full",
|
|
3078
|
+
"ring ring-inset ring-base-300 dark:ring-base-700",
|
|
3079
|
+
"outline-transparent focus-visible:outline-2 focus-visible:outline-offset-2"
|
|
3080
|
+
].join(" "),
|
|
3034
3081
|
indicator: " flex items-center justify-center size-full rounded-full after:bg-white dark:after:bg-base-dark after:rounded-full",
|
|
3035
3082
|
container: "flex items-center",
|
|
3036
3083
|
wrapper: "font-b24-primary font-regular ms-2",
|
|
@@ -3142,7 +3189,11 @@ const range = {
|
|
|
3142
3189
|
root: "relative flex items-center select-none touch-none",
|
|
3143
3190
|
track: "relative bg-base-200 dark:bg-base-800 overflow-hidden rounded-full grow",
|
|
3144
3191
|
range: "absolute rounded-full",
|
|
3145
|
-
thumb:
|
|
3192
|
+
thumb: [
|
|
3193
|
+
"rounded-full bg-white dark:bg-base-100",
|
|
3194
|
+
"ring-2",
|
|
3195
|
+
"outline-transparent focus-visible:outline-2 focus-visible:outline-offset-2"
|
|
3196
|
+
].join(" ")
|
|
3146
3197
|
},
|
|
3147
3198
|
variants: {
|
|
3148
3199
|
color: {
|
|
@@ -3328,9 +3379,9 @@ const select = () => {
|
|
|
3328
3379
|
placeholder: "truncate text-base-400 dark:text-base-300",
|
|
3329
3380
|
arrow: "fill-base-master/10 dark:fill-base-100/20",
|
|
3330
3381
|
content: [
|
|
3331
|
-
"w-
|
|
3382
|
+
"w-(--reka-popper-anchor-width)",
|
|
3332
3383
|
// 'max-h-60',
|
|
3333
|
-
// 'h-
|
|
3384
|
+
// 'h-(--reka-popper-available-height)',
|
|
3334
3385
|
"bg-white dark:bg-base-dark",
|
|
3335
3386
|
"shadow-md rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
3336
3387
|
"overflow-hidden",
|
|
@@ -3540,7 +3591,8 @@ const _switch = {
|
|
|
3540
3591
|
slots: {
|
|
3541
3592
|
root: "relative flex items-start",
|
|
3542
3593
|
base: [
|
|
3543
|
-
"cursor-pointer inline-flex items-center shrink-0 rounded-full border-2 border-transparent
|
|
3594
|
+
"cursor-pointer inline-flex items-center shrink-0 rounded-full border-2 border-transparent data-[state=unchecked]:bg-base-200 dark:data-[state=unchecked]:bg-base-800",
|
|
3595
|
+
"outline-transparent focus-visible:outline-2 focus-visible:outline-offset-2",
|
|
3544
3596
|
"transition-colors duration-200"
|
|
3545
3597
|
].join(" "),
|
|
3546
3598
|
container: "flex items-center",
|
|
@@ -3698,12 +3750,12 @@ const tabs = {
|
|
|
3698
3750
|
horizontal: {
|
|
3699
3751
|
root: "flex-col",
|
|
3700
3752
|
list: "w-full",
|
|
3701
|
-
indicator: "left-0 w-
|
|
3753
|
+
indicator: "left-0 w-(--reka-tabs-indicator-size) translate-x-(--reka-tabs-indicator-position)",
|
|
3702
3754
|
trigger: "justify-center"
|
|
3703
3755
|
},
|
|
3704
3756
|
vertical: {
|
|
3705
3757
|
list: "flex-col",
|
|
3706
|
-
indicator: "top-0 h-
|
|
3758
|
+
indicator: "top-0 h-(--reka-tabs-indicator-size) translate-y-(--reka-tabs-indicator-position)"
|
|
3707
3759
|
}
|
|
3708
3760
|
},
|
|
3709
3761
|
size: {
|
|
@@ -4393,8 +4445,8 @@ const toast = {
|
|
|
4393
4445
|
|
|
4394
4446
|
const toaster = {
|
|
4395
4447
|
slots: {
|
|
4396
|
-
viewport: "fixed flex flex-col w-[calc(100%-2rem)] sm:w-96 z-[100] data-[expanded=true]:h-
|
|
4397
|
-
base: "pointer-events-auto absolute inset-x-0 z-
|
|
4448
|
+
viewport: "fixed flex flex-col w-[calc(100%-2rem)] sm:w-96 z-[100] data-[expanded=true]:h-(--height) focus:outline-none",
|
|
4449
|
+
base: "pointer-events-auto absolute inset-x-0 z-(--index) transform-(--transform) data-[expanded=false]:data-[front=false]:h-(--front-height) data-[expanded=false]:data-[front=false]:*:invisible data-[state=closed]:animate-[toast-closed_200ms_ease-in-out] data-[state=closed]:data-[expanded=false]:data-[front=false]:animate-[toast-collapsed-closed_200ms_ease-in-out] data-[swipe=move]:transition-none transition-[transform,translate,height] duration-200 ease-out"
|
|
4398
4450
|
},
|
|
4399
4451
|
variants: {
|
|
4400
4452
|
position: {
|
|
@@ -4452,14 +4504,14 @@ const toaster = {
|
|
|
4452
4504
|
"left",
|
|
4453
4505
|
"right"
|
|
4454
4506
|
],
|
|
4455
|
-
class: "data-[swipe=move]:translate-x-
|
|
4507
|
+
class: "data-[swipe=move]:translate-x-(--reka-toast-swipe-move-x) data-[swipe=end]:translate-x-(--reka-toast-swipe-end-x) data-[swipe=cancel]:translate-x-0"
|
|
4456
4508
|
},
|
|
4457
4509
|
{
|
|
4458
4510
|
swipeDirection: [
|
|
4459
4511
|
"up",
|
|
4460
4512
|
"down"
|
|
4461
4513
|
],
|
|
4462
|
-
class: "data-[swipe=move]:translate-y-
|
|
4514
|
+
class: "data-[swipe=move]:translate-y-(--reka-toast-swipe-move-y) data-[swipe=end]:translate-y-(--reka-toast-swipe-end-y) data-[swipe=cancel]:translate-y-0"
|
|
4463
4515
|
}
|
|
4464
4516
|
],
|
|
4465
4517
|
defaultVariants: {
|
|
@@ -4505,6 +4557,7 @@ const theme = {
|
|
|
4505
4557
|
inputMenu: inputMenu,
|
|
4506
4558
|
kbd: kbd,
|
|
4507
4559
|
link: link,
|
|
4560
|
+
modal: modal,
|
|
4508
4561
|
progress: progress,
|
|
4509
4562
|
radioGroup: radioGroup,
|
|
4510
4563
|
range: range,
|
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.Ce3hzs_q.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.DY8ePXC7.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.2.
|
|
4
|
+
"version": "0.2.3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/bitrix24/b24ui.git"
|
|
@@ -158,13 +158,15 @@
|
|
|
158
158
|
"ui-framework"
|
|
159
159
|
],
|
|
160
160
|
"scripts": {
|
|
161
|
+
"dev:prepare-short": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue",
|
|
161
162
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue && nuxt-component-meta playground --outputDir ../src/.component-meta/",
|
|
162
|
-
"dev:prepare_short": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && vite build playground-vue",
|
|
163
163
|
"build": "nuxt-module-build build",
|
|
164
|
-
"dev": "
|
|
164
|
+
"dev": "DEV=true nuxi dev playground",
|
|
165
|
+
"dev-window": "set DEV=true && nuxi dev playground",
|
|
165
166
|
"dev:build": "nuxi build playground",
|
|
166
167
|
"dev:generate": "nuxt generate playground",
|
|
167
|
-
"dev:vue": "
|
|
168
|
+
"dev:vue": "DEV=true vite playground-vue",
|
|
169
|
+
"dev:vue-window": "set DEV=true && vite playground-vue",
|
|
168
170
|
"docs:full:dev": "pnpm build && vitepress dev docs",
|
|
169
171
|
"docs:full:build": "pnpm build && vitepress build docs",
|
|
170
172
|
"docs:dev": "vitepress dev docs",
|