Skip to content

Commit

Permalink
chore: updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mtorromeo committed Jul 26, 2024
1 parent 34dd014 commit d87ec28
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 50 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.1.0-beta.27] - 2024-07-26

### Bug Fixes

- *(FloatingUi)* Prevented warning when no FloatingElementTeleportKey injection is provided

### Features

- *(Select)* Added no-focus-first-item-on-open prop
- *(ProgressStepper)* Implemented components

## [0.1.0-beta.26] - 2024-07-03

### Bug Fixes
Expand Down
26 changes: 13 additions & 13 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@
"@vue-patternfly/core": "workspace:^",
"@vue-patternfly/icons": "workspace:^",
"@vue-patternfly/table": "workspace:^",
"pinia": "^2.1.7",
"vue": "^3.4.31",
"pinia": "^2.2.0",
"vue": "^3.4.34",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@rollup/pluginutils": "^5.1.0",
"@toycode/markdown-it-class": "^1.2.4",
"@types/markdown-it": "^14.1.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.31",
"@vue/runtime-core": "^3.4.31",
"@vue/shared": "^3.4.31",
"@types/markdown-it": "^14.1.2",
"@vitejs/plugin-vue": "^5.1.0",
"@vue/compiler-sfc": "^3.4.34",
"@vue/runtime-core": "^3.4.34",
"@vue/shared": "^3.4.34",
"@vueuse/core": "^10.11.0",
"markdown-it": "^14.1.0",
"node-html-parser": "^6.1.13",
"sass": "^1.77.6",
"shikiji": "^0.10.2",
"sass": "^1.77.8",
"shiki": "^1.11.2",
"ts-dedent": "^2.2.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vue-docgen-api": "^4.78.0",
"vue-tsc": "^2.0.24"
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue-docgen-api": "^4.79.1",
"vue-tsc": "^2.0.29"
},
"packageManager": "pnpm@8.6.1"
}
4 changes: 2 additions & 2 deletions apps/docs/src/components/StoryCanvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let highlighter: Highlighter;

<script lang="ts" setup>
import { computedAsync } from '@vueuse/core';
import { getHighlighter, type Highlighter } from 'shikiji';
import { createHighlighter, type Highlighter } from 'shiki';
import { shallowRef, type HTMLAttributes } from 'vue';
import { useRouter } from 'vue-router';
import GithubIcon from '@vue-patternfly/icons/github-icon';
Expand Down Expand Up @@ -115,7 +115,7 @@ const highlighted = computedAsync(async() => {
}
if (!highlighter) {
highlighter = await getHighlighter({
highlighter = await createHighlighter({
themes: ['nord'],
langs: ['vue', 'vue-html'],
});
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/vite-plugins/story-canvas-source.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Markdown from 'markdown-it';
import markdownItClass from '@toycode/markdown-it-class';
// eslint-disable-next-line vue/prefer-import-from-vue
import { escapeHtml } from '@vue/shared';
import { getHighlighter } from 'shikiji';
import { createHighlighter } from 'shiki';
import fs from 'fs/promises';
import path from 'path';

Expand Down Expand Up @@ -78,7 +78,7 @@ export function vueCanvasPlugin(options: VueCanvasPluginOptions = {}): VitePlugi
const filter = createFilter(options.include ?? DEFAULT_INCLUDE_RE, options.exclude);

const mdPromise = (async() => {
const highlighter = await getHighlighter({
const highlighter = await createHighlighter({
themes: ['nord'],
langs: ['vue', 'vue-html'],
});
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.27.0",
"turbo": "^2.0.6",
"typescript": "^5.5.3"
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@8.6.1",
"name": "vue-patternfly"
Expand Down
24 changes: 12 additions & 12 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-patternfly/core",
"version": "0.1.0-beta.26",
"version": "0.1.0-beta.27",
"type": "module",
"files": [
"dist"
Expand Down Expand Up @@ -33,33 +33,33 @@
"prepack": "pnpm clean && pnpm build"
},
"dependencies": {
"@floating-ui/core": "^1.6.4",
"@floating-ui/dom": "^1.6.7",
"@floating-ui/core": "^1.6.5",
"@floating-ui/dom": "^1.6.8",
"@patternfly/patternfly": "^5.3.1",
"@patternfly/react-styles": "^5.3.1",
"@patternfly/react-tokens": "^5.3.1",
"@vue-patternfly/icons": "workspace:^"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/node": "^20.14.12",
"@types/web-bluetooth": "^0.0.20",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.31",
"@vitejs/plugin-vue": "^5.1.0",
"@vue/compiler-sfc": "^3.4.34",
"@vueuse/core": "^10.11.0",
"@vueuse/integrations": "^10.11.0",
"@vueuse/shared": "^10.11.0",
"concurrently": "^8.2.2",
"focus-trap": "^7.5.4",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"glob": "^11.0.0",
"nodemon": "^3.1.4",
"rimraf": "^5.0.7",
"rimraf": "^6.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vue": "^3.4.31",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue": "^3.4.34",
"vue-router": "^4.4.0",
"vue-tsc": "^2.0.24"
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"@vueuse/core": "^10",
Expand Down
18 changes: 9 additions & 9 deletions packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@babel/core": "^7.24.9",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@patternfly/patternfly": "^5.3.1",
"concurrently": "^8.2.2",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"rimraf": "^5.0.7",
"glob": "^11.0.0",
"rimraf": "^6.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vue": "^3.4.31"
"typescript": "^5.5.4",
"vue": "^3.4.34"
},
"peerDependencies": {
"vue": "^3.2.40"
Expand Down
18 changes: 9 additions & 9 deletions packages/table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
"@vue-patternfly/icons": "workspace:^"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.31",
"@types/node": "^20.14.12",
"@vitejs/plugin-vue": "^5.1.0",
"@vue/compiler-sfc": "^3.4.34",
"@vueuse/core": "^10.11.0",
"glob": "^10.4.2",
"rimraf": "^5.0.7",
"glob": "^11.0.0",
"rimraf": "^6.0.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vue": "^3.4.31",
"vue-tsc": "^2.0.24"
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vue": "^3.4.34",
"vue-tsc": "^2.0.29"
},
"peerDependencies": {
"@vue-patternfly/core": "workspace:^",
Expand Down

0 comments on commit d87ec28

Please sign in to comment.