Skip to content

Commit

Permalink
chore(components): bump vite from 5.4.11 to 6.0.3 in /components (#588)
Browse files Browse the repository at this point in the history
* chore(components): bump vite from 5.4.11 to 6.0.3 in /components

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.11 to 6.0.3.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.3/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixup! chore(components): bump vite from 5.4.11 to 6.0.3 in /components

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fabian Engelniederhammer <[email protected]>
  • Loading branch information
dependabot[bot] and fengelniederhammer authored Dec 11, 2024
1 parent c04b7ba commit 2b46edd
Show file tree
Hide file tree
Showing 7 changed files with 714 additions and 161 deletions.
867 changes: 708 additions & 159 deletions components/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"storybook-addon-fetch-mock": "^2.0.0",
"tailwindcss": "^3.4.3",
"typescript": "~5.7.2",
"vite": "^5.2.10",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.1"
}
Expand Down
2 changes: 1 addition & 1 deletion components/src/styles/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
1 change: 1 addition & 0 deletions components/vite.release-standalone.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export default defineConfig({
entry: {
'dashboard-components': 'src/standaloneEntrypoint.ts',
},
cssFileName: 'style',
},
sourcemap: true,
minify: true,
Expand Down
1 change: 1 addition & 0 deletions components/vite.release.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default defineConfig({
components: 'src/componentsEntrypoint.ts',
util: 'src/utilEntrypoint.ts',
},
cssFileName: 'style',
},
sourcemap: true,
minify: false,
Expand Down
1 change: 1 addition & 0 deletions examples/React/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ function App() {
<gs-date-range-selector
dateRangeOptions={JSON.stringify(dataRangeOptions)}
initialValue={'2021'}
dateColumn='date'
></gs-date-range-selector>
<div style={{display: 'flex', flexDirection: 'row'}}>
<div>
Expand Down
1 change: 1 addition & 0 deletions examples/plainJavascript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<gs-date-range-selector
dateRangeOptions='[{"label":"2020","dateFrom":"2020-01-01","dateTo":"2020-12-31"},{"label":"2021","dateFrom":"2021-01-01","dateTo":"2021-12-31"},{"label":"2022","dateFrom":"2022-01-01","dateTo":"2022-12-31"}]'
initialValue="2021"
dateColumn="date"
></gs-date-range-selector>
<gs-prevalence-over-time
numeratorFilter='{"displayName": "My variant","lapisFilter":{"country":"Switzerland", "pangoLineage":"B.1.1.7", "dateTo":"2022-01-01", "dateFrom":"2021-01-01"}}'
Expand Down

0 comments on commit 2b46edd

Please sign in to comment.