abckit 0.0.23 → 0.0.24
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/dist/module.d.mts +8 -3
- package/dist/module.json +1 -1
- package/dist/module.mjs +109 -11
- package/dist/runtime/components/app/AppImage.d.vue.ts +6 -1
- package/dist/runtime/components/app/AppImage.vue.d.ts +6 -1
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/auto-form/AutoForm.d.vue.ts +9 -7
- package/dist/runtime/components/ui/auto-form/AutoForm.vue.d.ts +9 -7
- package/dist/runtime/components/ui/auto-form/AutoFormField.d.vue.ts +5 -3
- package/dist/runtime/components/ui/auto-form/AutoFormField.vue.d.ts +5 -3
- package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.d.vue.ts +34 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.vue.d.ts +34 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldBoolean.d.vue.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldBoolean.vue.d.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldDate.d.vue.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldDate.vue.d.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldEnum.d.vue.ts +33 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldEnum.vue.d.ts +33 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldFile.d.vue.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldFile.vue.d.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldInput.d.vue.ts +33 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldInput.vue.d.ts +33 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldNumber.d.vue.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldNumber.vue.d.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.d.vue.ts +34 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.vue.d.ts +34 -0
- package/dist/runtime/components/ui/auto-form/dependencies.d.ts +25 -1
- package/dist/runtime/components/ui/auto-form/utils.d.ts +1 -1
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbLink.d.vue.ts +3 -1
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbLink.vue.d.ts +3 -1
- package/dist/runtime/components/ui/button/Button.d.vue.ts +3 -1
- package/dist/runtime/components/ui/button/Button.vue.d.ts +3 -1
- package/dist/runtime/components/ui/button-group/ButtonGroupSeparator.d.vue.ts +3 -1
- package/dist/runtime/components/ui/button-group/ButtonGroupSeparator.vue.d.ts +3 -1
- package/dist/runtime/components/ui/button-group/ButtonGroupText.d.vue.ts +3 -1
- package/dist/runtime/components/ui/button-group/ButtonGroupText.vue.d.ts +3 -1
- package/dist/runtime/components/ui/calendar/Calendar.d.vue.ts +4 -1
- package/dist/runtime/components/ui/calendar/Calendar.vue.d.ts +4 -1
- package/dist/runtime/components/ui/calendar/CalendarCellTrigger.d.vue.ts +3 -1
- package/dist/runtime/components/ui/calendar/CalendarCellTrigger.vue.d.ts +3 -1
- package/dist/runtime/components/ui/carousel/Carousel.d.vue.ts +37 -0
- package/dist/runtime/components/ui/carousel/Carousel.vue.d.ts +37 -0
- package/dist/runtime/components/ui/carousel/CarouselNext.d.vue.ts +4 -1
- package/dist/runtime/components/ui/carousel/CarouselNext.vue.d.ts +4 -1
- package/dist/runtime/components/ui/carousel/CarouselPrevious.d.vue.ts +4 -1
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue.d.ts +4 -1
- package/dist/runtime/components/ui/chart/ChartContainer.d.vue.ts +2 -2
- package/dist/runtime/components/ui/chart/ChartContainer.vue.d.ts +2 -2
- package/dist/runtime/components/ui/chart/ChartLegendContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/chart/ChartLegendContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/chart/ChartTooltipContent.d.vue.ts +5 -1
- package/dist/runtime/components/ui/chart/ChartTooltipContent.vue.d.ts +5 -1
- package/dist/runtime/components/ui/combobox/ComboboxInput.d.vue.ts +2 -2
- package/dist/runtime/components/ui/combobox/ComboboxInput.vue.d.ts +2 -2
- package/dist/runtime/components/ui/combobox/ComboboxList.d.vue.ts +5 -1
- package/dist/runtime/components/ui/combobox/ComboboxList.vue.d.ts +5 -1
- package/dist/runtime/components/ui/command/Command.d.vue.ts +3 -1
- package/dist/runtime/components/ui/command/Command.vue.d.ts +3 -1
- package/dist/runtime/components/ui/command/CommandDialog.d.vue.ts +6 -3
- package/dist/runtime/components/ui/command/CommandDialog.vue.d.ts +6 -3
- package/dist/runtime/components/ui/context-menu/ContextMenuCheckboxItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuCheckboxItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuItem.d.vue.ts +3 -1
- package/dist/runtime/components/ui/context-menu/ContextMenuItem.vue.d.ts +3 -1
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/country-select/CountrySelect.d.vue.ts +6 -1
- package/dist/runtime/components/ui/country-select/CountrySelect.vue.d.ts +6 -1
- package/dist/runtime/components/ui/currency-select/CurrencySelect.d.vue.ts +6 -1
- package/dist/runtime/components/ui/currency-select/CurrencySelect.vue.d.ts +6 -1
- package/dist/runtime/components/ui/dialog/DialogContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/dialog/DialogContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/drawer/Drawer.d.vue.ts +4 -4
- package/dist/runtime/components/ui/drawer/Drawer.vue.d.ts +4 -4
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.d.vue.ts +3 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +3 -1
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/field/FieldSeparator.d.vue.ts +2 -2
- package/dist/runtime/components/ui/field/FieldSeparator.vue.d.ts +2 -2
- package/dist/runtime/components/ui/file/FileEmptyState.d.vue.ts +4 -1
- package/dist/runtime/components/ui/file/FileEmptyState.vue.d.ts +4 -1
- package/dist/runtime/components/ui/file/FileGrid.d.vue.ts +3 -1
- package/dist/runtime/components/ui/file/FileGrid.vue.d.ts +3 -1
- package/dist/runtime/components/ui/file/FileTable.d.vue.ts +5 -1
- package/dist/runtime/components/ui/file/FileTable.vue.d.ts +5 -1
- package/dist/runtime/components/ui/file/FolderTree.d.vue.ts +3 -1
- package/dist/runtime/components/ui/file/FolderTree.vue.d.ts +3 -1
- package/dist/runtime/components/ui/hover-card/HoverCardContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/hover-card/HoverCardContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/input-group/InputGroupAddon.d.vue.ts +3 -1
- package/dist/runtime/components/ui/input-group/InputGroupAddon.vue.d.ts +3 -1
- package/dist/runtime/components/ui/input-group/InputGroupButton.d.vue.ts +4 -1
- package/dist/runtime/components/ui/input-group/InputGroupButton.vue.d.ts +4 -1
- package/dist/runtime/components/ui/item/Item.d.vue.ts +3 -1
- package/dist/runtime/components/ui/item/Item.vue.d.ts +3 -1
- package/dist/runtime/components/ui/language-select/LanguageSelect.d.vue.ts +7 -1
- package/dist/runtime/components/ui/language-select/LanguageSelect.vue.d.ts +7 -1
- package/dist/runtime/components/ui/menubar/MenubarCheckboxItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/menubar/MenubarCheckboxItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/menubar/MenubarContent.d.vue.ts +5 -1
- package/dist/runtime/components/ui/menubar/MenubarContent.vue.d.ts +5 -1
- package/dist/runtime/components/ui/menubar/MenubarRadioItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/menubar/MenubarRadioItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.d.vue.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +2 -2
- package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +2 -2
- package/dist/runtime/components/ui/navigation-menu/NavigationMenu.d.vue.ts +3 -1
- package/dist/runtime/components/ui/navigation-menu/NavigationMenu.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationFirst.d.vue.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationItem.d.vue.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationItem.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationLast.d.vue.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationLast.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationNext.d.vue.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationNext.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationPrevious.d.vue.ts +3 -1
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue.d.ts +3 -1
- package/dist/runtime/components/ui/pin-input/PinInput.d.vue.ts +5 -3
- package/dist/runtime/components/ui/pin-input/PinInput.vue.d.ts +5 -3
- package/dist/runtime/components/ui/popover/PopoverContent.d.vue.ts +4 -1
- package/dist/runtime/components/ui/popover/PopoverContent.vue.d.ts +4 -1
- package/dist/runtime/components/ui/progress/Progress.d.vue.ts +3 -1
- package/dist/runtime/components/ui/progress/Progress.vue.d.ts +3 -1
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCellTrigger.d.vue.ts +3 -1
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCellTrigger.vue.d.ts +3 -1
- package/dist/runtime/components/ui/scroll-area/ScrollBar.d.vue.ts +3 -1
- package/dist/runtime/components/ui/scroll-area/ScrollBar.vue.d.ts +3 -1
- package/dist/runtime/components/ui/select/SelectContent.d.vue.ts +5 -3
- package/dist/runtime/components/ui/select/SelectContent.vue.d.ts +5 -3
- package/dist/runtime/components/ui/select/SelectItem.d.vue.ts +2 -2
- package/dist/runtime/components/ui/select/SelectItem.vue.d.ts +2 -2
- package/dist/runtime/components/ui/select/SelectTrigger.d.vue.ts +3 -1
- package/dist/runtime/components/ui/select/SelectTrigger.vue.d.ts +3 -1
- package/dist/runtime/components/ui/separator/Separator.d.vue.ts +4 -1
- package/dist/runtime/components/ui/separator/Separator.vue.d.ts +4 -1
- package/dist/runtime/components/ui/sheet/InnerSheetContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/sheet/InnerSheetContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/sheet/SheetContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/sheet/SheetContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/sidebar/Sidebar.d.vue.ts +8 -4
- package/dist/runtime/components/ui/sidebar/Sidebar.vue.d.ts +8 -4
- package/dist/runtime/components/ui/sidebar/SidebarMenuAction.d.vue.ts +3 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue.d.ts +3 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.d.vue.ts +8 -4
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue.d.ts +8 -4
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.d.vue.ts +5 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue.d.ts +5 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.d.vue.ts +4 -1
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue.d.ts +4 -1
- package/dist/runtime/components/ui/sidebar/SidebarProvider.d.vue.ts +4 -1
- package/dist/runtime/components/ui/sidebar/SidebarProvider.vue.d.ts +4 -1
- package/dist/runtime/components/ui/storage/StorageActionBar.d.vue.ts +9 -1
- package/dist/runtime/components/ui/storage/StorageActionBar.vue.d.ts +9 -1
- package/dist/runtime/components/ui/storage/StorageDialogs.d.vue.ts +6 -3
- package/dist/runtime/components/ui/storage/StorageDialogs.vue.d.ts +6 -3
- package/dist/runtime/components/ui/storage/StorageEmptyState.d.vue.ts +4 -1
- package/dist/runtime/components/ui/storage/StorageEmptyState.vue.d.ts +4 -1
- package/dist/runtime/components/ui/storage/StorageGrid.d.vue.ts +6 -3
- package/dist/runtime/components/ui/storage/StorageGrid.vue.d.ts +6 -3
- package/dist/runtime/components/ui/storage/StorageSelectionBar.d.vue.ts +3 -1
- package/dist/runtime/components/ui/storage/StorageSelectionBar.vue.d.ts +3 -1
- package/dist/runtime/components/ui/storage/StorageTable.d.vue.ts +7 -3
- package/dist/runtime/components/ui/storage/StorageTable.vue.d.ts +7 -3
- package/dist/runtime/components/ui/storage/StorageUploadZone.d.vue.ts +6 -1
- package/dist/runtime/components/ui/storage/StorageUploadZone.vue.d.ts +6 -1
- package/dist/runtime/components/ui/table/TableEmpty.d.vue.ts +5 -3
- package/dist/runtime/components/ui/table/TableEmpty.vue.d.ts +5 -3
- package/dist/runtime/components/ui/timezone-select/TimezoneSelect.d.vue.ts +5 -1
- package/dist/runtime/components/ui/timezone-select/TimezoneSelect.vue.d.ts +5 -1
- package/dist/runtime/components/ui/toggle/Toggle.d.vue.ts +5 -1
- package/dist/runtime/components/ui/toggle/Toggle.vue.d.ts +5 -1
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.d.vue.ts +3 -1
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.vue.d.ts +3 -1
- package/dist/runtime/components/ui/tooltip/TooltipContent.d.vue.ts +3 -1
- package/dist/runtime/components/ui/tooltip/TooltipContent.vue.d.ts +3 -1
- package/dist/runtime/components/ui/tooltip/TooltipProvider.d.vue.ts +3 -1
- package/dist/runtime/components/ui/tooltip/TooltipProvider.vue.d.ts +3 -1
- package/dist/runtime/composables/useAuth.d.ts +89 -89
- package/dist/runtime/middleware/auth.d.ts +1 -1
- package/dist/runtime/server/plugins/s3-storage.d.ts +1 -1
- package/package.json +33 -15
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("nitropack
|
|
1
|
+
declare const _default: import("nitropack").NitroAppPlugin;
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "abckit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.24",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
|
+
"workspaces": ["playground/*"],
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"types": "./dist/module.d.mts",
|
|
@@ -52,37 +53,54 @@
|
|
|
52
53
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
53
54
|
"lint": "eslint .",
|
|
54
55
|
"lint:fix": "eslint . --fix",
|
|
55
|
-
"test:types": "
|
|
56
|
+
"test:types": "nuxt typecheck ./ --noEmit && cd playground && nuxt typecheck --noEmit",
|
|
56
57
|
"release": "pnpm publish --no-git-checks --access public"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@capacitor/
|
|
60
|
-
"@capacitor/
|
|
60
|
+
"@capacitor/android": "7.4.4",
|
|
61
|
+
"@capacitor/app": "^7.0.1",
|
|
62
|
+
"@capacitor/browser": "^7.0.1",
|
|
63
|
+
"@capacitor/cli": "7.4.4",
|
|
64
|
+
"@capacitor/core": "^7.4.4",
|
|
65
|
+
"@capacitor/device": "^7.0.3",
|
|
66
|
+
"@capacitor/geolocation": "^7.1.6",
|
|
67
|
+
"@capacitor/haptics": "^7.0.1",
|
|
68
|
+
"@capacitor/ios": "7.4.4",
|
|
61
69
|
"@capacitor/network": "^7.0.3",
|
|
62
70
|
"@capacitor/preferences": "^7.0.1",
|
|
71
|
+
"@capacitor/push-notifications": "^7.0.1",
|
|
72
|
+
"@capacitor/splash-screen": "^7.0.1",
|
|
73
|
+
"@capacitor/status-bar": "^7.0.1",
|
|
74
|
+
"@capgo/capacitor-social-login": "^7.20.0",
|
|
63
75
|
"@graphql-tools/utils": "^10.11.0",
|
|
64
76
|
"@ionic/vue": "^8.7.13",
|
|
65
77
|
"@nuxt/icon": "^2.1.0",
|
|
78
|
+
"@nuxt/scripts": "^0.13.0",
|
|
66
79
|
"@nuxtjs/color-mode": "^4.0.0",
|
|
67
80
|
"@nuxtjs/i18n": "^10.2.1",
|
|
81
|
+
"@nuxtjs/ionic": "^1.0.2",
|
|
68
82
|
"@nuxtjs/tailwindcss": "7.0.0-beta.1",
|
|
69
83
|
"@openfga/sdk": "^0.9.1",
|
|
70
84
|
"@pinia/colada": "^0.18.1",
|
|
71
85
|
"@pinia/colada-nuxt": "^0.2.4",
|
|
86
|
+
"@pinia/colada-plugin-auto-refetch": "^0.2.4",
|
|
72
87
|
"@pinia/nuxt": "^0.11.3",
|
|
73
88
|
"@polar-sh/sdk": "^0.41.5",
|
|
74
89
|
"@sentry/nuxt": "^10.30.0",
|
|
75
90
|
"@sindresorhus/slugify": "^3.0.0",
|
|
76
91
|
"@tailwindcss/typography": "^0.5.19",
|
|
77
92
|
"@tanstack/vue-table": "^8.21.3",
|
|
93
|
+
"@unovis/vue": "^1.6.2",
|
|
78
94
|
"@vee-validate/nuxt": "^4.15.1",
|
|
79
95
|
"@vee-validate/zod": "^4.15.1",
|
|
80
96
|
"@vueuse/core": "^14.1.0",
|
|
81
97
|
"@vueuse/nuxt": "^14.1.0",
|
|
82
98
|
"@vueuse/router": "^14.1.0",
|
|
99
|
+
"@vueuse/sound": "^2.1.3",
|
|
83
100
|
"apiful": "^4.0.0",
|
|
84
101
|
"aws4fetch": "^1.0.20",
|
|
85
102
|
"better-auth": "^1.4.6",
|
|
103
|
+
"capacitor-native-settings": "^7.0.2",
|
|
86
104
|
"class-variance-authority": "^0.7.1",
|
|
87
105
|
"clsx": "^2.1.1",
|
|
88
106
|
"consola": "^3.4.2",
|
|
@@ -111,36 +129,36 @@
|
|
|
111
129
|
"unstorage": "^1.17.3",
|
|
112
130
|
"uuid": "^13.0.0",
|
|
113
131
|
"vaul-vue": "^0.4.1",
|
|
114
|
-
"vee-validate": "
|
|
132
|
+
"vee-validate": "^4.15.1",
|
|
115
133
|
"vite-tsconfig-paths": "^5.1.4",
|
|
116
|
-
"vue": "^3.5.25",
|
|
117
134
|
"vue-input-otp": "^0.3.2",
|
|
118
135
|
"vue-router": "^4.6.4",
|
|
119
136
|
"vue-sonner": "^2.0.9",
|
|
120
137
|
"vue-tsc": "^3.1.8",
|
|
121
|
-
"zod": "
|
|
138
|
+
"zod": "3.25.76"
|
|
122
139
|
},
|
|
123
140
|
"devDependencies": {
|
|
124
141
|
"@antfu/eslint-config": "^6.6.1",
|
|
125
142
|
"@nuxt/eslint": "latest",
|
|
126
143
|
"@nuxt/module-builder": "^1.0.2",
|
|
144
|
+
"@nuxt/schema": "^4.2.2",
|
|
127
145
|
"@types/node": "^25.0.1",
|
|
128
146
|
"@types/pg": "^8.16.0",
|
|
129
147
|
"eslint": "^9.39.2",
|
|
130
148
|
"h3": "^1.15.4",
|
|
131
149
|
"nuxt": "^4.2.2",
|
|
150
|
+
"shadcn-vue": "^2.4.3",
|
|
132
151
|
"typescript": "^5.9.3",
|
|
133
152
|
"vue": "^3.5.25"
|
|
134
153
|
},
|
|
135
154
|
"resolutions": {
|
|
136
155
|
"abckit": "workspace:*"
|
|
137
156
|
},
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
}
|
|
157
|
+
"overrides": {
|
|
158
|
+
"entities": "7.0.0"
|
|
159
|
+
},
|
|
160
|
+
"patchedDependencies": {
|
|
161
|
+
"entities@7.0.0": "patches/entities@7.0.0.patch",
|
|
162
|
+
"entities@7.0.0@7.0.0": "patches/entities@7.0.0.patch"
|
|
145
163
|
}
|
|
146
|
-
}
|
|
164
|
+
}
|