Skip to content

Commit

Permalink
Merge pull request #418 from qor5/chore-update-lockfile
Browse files Browse the repository at this point in the history
fix: update dependency versions and clean up configuration files
  • Loading branch information
danni-cool authored Feb 6, 2025
2 parents 8dfc843 + 3164e1e commit 844cc69
Show file tree
Hide file tree
Showing 8 changed files with 2,078 additions and 1,671 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vuetifyjs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: '18'

- name: Install pnpm
run: npm install -g pnpm
run: npm install -g pnpm@9.14.4

- name: Build project
run: |
Expand Down
2 changes: 1 addition & 1 deletion ui/vuetifyx/vuetifyxjs/dist/assets/vuetifyx.min.css

Large diffs are not rendered by default.

110 changes: 56 additions & 54 deletions ui/vuetifyx/vuetifyxjs/dist/vuetifyx.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/vuetifyx/vuetifyxjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
"pnpm": {
"patchedDependencies": {
"@vitepress-code-preview/container@1.0.8": "patches/@vitepress-code-preview__container@1.0.8.patch"
"@vitepress-code-preview/container": "patches/@vitepress-code-preview__container.patch"
}
}
}
File renamed without changes.
3,627 changes: 2,016 additions & 1,611 deletions ui/vuetifyx/vuetifyxjs/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/vuetifyx/vuetifyxjs/src/lib/Common/VXBtn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const props = defineProps({
})
const isDefaultSlotReallyEmpty = computed(() => {
return !slots.default || !slots.default().length
return !slots.default || !slots.default({}).length
})
const presetsSizeOptions = computed(() => {
Expand Down
4 changes: 2 additions & 2 deletions ui/vuetifyx/vuetifyxjs/src/lib/Form/VXField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@
</template>

<script setup lang="ts">
import { defineEmits, ref, defineExpose, computed, useSlots, PropType, defineOptions } from 'vue'
import { defineEmits, ref, defineExpose, computed, useSlots, PropType, defineOptions, Slots } from 'vue'
import VXLabel from '../Common/VXLabel.vue'
import { useFilteredAttrs } from '@/lib/composables/useFilteredAttrs'
import useBindingValue from '@/lib/composables/useBindingValue'
import { forwardRefs } from '@/lib/composables/forwardRefs'
const { filteredAttrs, rootAttrs } = useFilteredAttrs()
const vInputRef = ref()
const vInputFocus = ref(false)
const slots = useSlots()
const slots: Slots = useSlots()
const hasAppendInnerSlot = slots['append-inner'] !== undefined
const hasPrependInnerSlot = slots['prepend-inner'] !== undefined
const emit = defineEmits(['update:modelValue'])
Expand Down

0 comments on commit 844cc69

Please sign in to comment.