Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #237

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/weak-frogs-fail.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/portal-navigation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @inventage-web-components/portal-navigation

## 1.7.1

### Patch Changes

- [`b9121122f83af3008d12d048e99309e89df00b58`](https://github.com/inventage/web-components/commit/b9121122f83af3008d12d048e99309e89df00b58) Fix tree parent element padding, properly using the `--portal-navigation-tree-parent-padding-x` and `--portal-navigation-tree-parent-padding-y` values with their respective fallbacks to menu item padding values `--portal-navigation-menu-item-padding-x` and `--portal-navigation-menu-item-padding-y`.

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/portal-navigation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inventage-web-components/portal-navigation",
"version": "1.7.0",
"version": "1.7.1",
"description": "A component implementing an opinionated (but generic and hence configurable) navigation pattern.",
"license": "MIT",
"author": "Inventage AG <info@inventage.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/portal-navigation/src/PortalNavigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export class PortalNavigation extends LitElement {

/** @private */
// Do not touch, this will automatically be updated based on the version in package.json in build & release scripts
readonly version = '1.7.0';
readonly version = '1.7.1';

/**
* Map of menu item ids → badges
Expand Down
Loading