Skip to content

Commit 234115d

Browse files
committed
chore: update dependencies
1 parent 9dd8412 commit 234115d

3 files changed

Lines changed: 8 additions & 16 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"arr-diff": "^4.0.0",
8585
"bcryptjs": "^2.4.3",
8686
"big.js": "^6.2.2",
87+
"braces": "^3.0.3",
8788
"bwip-js": "^4.5.1",
8889
"byte-data": "^19.0.1",
8990
"change-case": "^5.4.4",

pnpm-lock.yaml

Lines changed: 6 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ui/c-alert/c-alert.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts" setup>
22
import { useTheme } from './c-alert.theme';
33
4-
const props = withDefaults(defineProps<{ type?: 'warning'; title?: string }>(), { type: 'warning', title: undefined });
4+
const props = withDefaults(defineProps<{ type?: 'warning' | 'error'; title?: string }>(), { type: 'warning', title: undefined });
55
const { type, title } = toRefs(props);
66
77
const theme = useTheme();

0 commit comments

Comments
 (0)