Skip to content

Commit

Permalink
Merge branch 'main' into fix/867-nav-bar-padding
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed May 17, 2024
2 parents f35a756 + 74c66bd commit 4993d72
Show file tree
Hide file tree
Showing 5 changed files with 1,231 additions and 982 deletions.
5 changes: 4 additions & 1 deletion apps/docs/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ const config: StorybookConfig = {
framework: {
name: "@storybook/vue3-vite",
options: {
docgen: "vue-component-meta",
docgen: {
plugin: "vue-component-meta",
tsconfig: "tsconfig.app.json",
},
},
},
core: {
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,40 +21,40 @@
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@playwright/experimental-ct-vue": "^1.44.0",
"@playwright/test": "^1.44.0",
"@rushstack/eslint-patch": "^1.10.2",
"@rushstack/eslint-patch": "^1.10.3",
"@sit-onyx/eslint-plugin": "workspace:^",
"@sit-onyx/storybook-utils": "workspace:^",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/blocks": "^8.0.10",
"@storybook/vue3": "^8.0.10",
"@storybook/vue3-vite": "^8.0.10",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/vue3": "^8.1.1",
"@storybook/vue3-vite": "^8.1.1",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.10",
"@types/node": "^20.12.12",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/compiler-dom": "^3.4.27",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "~0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-playwright": "^1.6.0",
"eslint-plugin-vue": "^9.25.0",
"eslint-plugin-playwright": "^1.6.1",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-vuejs-accessibility": "^2.3.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"rimraf": "^5.0.5",
"sass": "^1.77.0",
"rimraf": "^5.0.7",
"sass": "^1.77.2",
"simple-git-hooks": "^2.11.1",
"storybook": "^8.0.10",
"storybook": "^8.1.1",
"typescript": "~5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vue-tsc": "^2.0.16"
"vue-tsc": "^2.0.19"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
Expand Down
4 changes: 2 additions & 2 deletions packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"optimize": "tsx ./src/optimize.ts"
},
"devDependencies": {
"svgo": "^3.3.0",
"tsx": "^4.9.3"
"svgo": "^3.3.2",
"tsx": "^4.10.4"
}
}
4 changes: 2 additions & 2 deletions packages/sit-onyx/src/utils/storybook.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { sourceCodeTransformer } from "@sit-onyx/storybook-utils";
import type { Decorator, StoryContext } from "@storybook/vue3";
import type { ArgTypes, Decorator, StoryContext } from "@storybook/vue3";

/**
* Defines the control for a Storybook argType to be a select/dropdown of
Expand Down Expand Up @@ -39,7 +39,7 @@ export const defineIconSelectArgType = () => {
type: "select",
labels: iconLabels,
},
} as const;
} satisfies ArgTypes[number];
};

export const createIconSourceCodeTransformer = (propertyName: string) => {
Expand Down
Loading

0 comments on commit 4993d72

Please sign in to comment.