@life-cockpit/angular-ui-kit 1.11.0 → 1.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@life-cockpit/angular-ui-kit",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -3172,13 +3172,14 @@ type SidenavMode = 'drawer' | 'docked';
3172
3172
  * @example
3173
3173
  * ```html
3174
3174
  * <lc-sidenav
3175
- * [isOpenInput]="isOpen"
3176
- * modeInput="docked"
3177
- * [collapsedInput]="isCollapsed"
3178
- * [showLogoInput]="true"
3179
- * [mobileBreakpointInput]="768"
3180
- * [itemsInput]="navItems"
3181
- * activeRouteInput="/dashboard"
3175
+ * [isOpen]="isOpen"
3176
+ * mode="docked"
3177
+ * [(collapsed)]="isCollapsed"
3178
+ * [showLogo]="true"
3179
+ * logoSize="md"
3180
+ * [mobileBreakpoint]="768"
3181
+ * [items]="navItems"
3182
+ * activeRoute="/dashboard"
3182
3183
  * theme="dark"
3183
3184
  * (closed)="isOpen = false"
3184
3185
  * (itemClicked)="navigate($event)"