Skip to content

Commit

Permalink
Merge branch 'simeonoff/bootstrap-defaults' of github.com:IgniteUI/ig…
Browse files Browse the repository at this point in the history
…niteui-webcomponents into simeonoff/bootstrap-defaults
  • Loading branch information
simeonoff committed Nov 16, 2021
2 parents fe7c27c + 2e08db2 commit 3658078
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Node.js CI](https://github.com/IgniteUI/igniteui-webcomponents/workflows/Node.js%20CI/badge.svg)](https://github.com/IgniteUI/igniteui-webcomponents/actions/workflows/node.js.yml)
[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-webcomponents/badge.svg)](https://coveralls.io/github/IgniteUI/igniteui-webcomponents)
[![npm version](https://badge.fury.io/js/igniteui-webcomponents.svg)](https://badge.fury.io/js/igniteui-webcomponents)
[![Discord](https://img.shields.io/discord/836634487483269200?logo=discord&logoColor=ffffff)](https://discord.gg/39MjrTRqds)

[Ignite UI for Web Components](https://www.infragistics.com/products/ignite-ui-web-components) is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
Expand Down
7 changes: 1 addition & 6 deletions src/components/nav-drawer/nav-drawer-item.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { html, LitElement } from 'lit';
import { property, queryAssignedNodes, state } from 'lit/decorators.js';
import { live } from 'lit/directives/live.js';
import { partNameMap } from '../common/util';
import { styles } from './nav-drawer-item.material.css';

Expand Down Expand Up @@ -53,11 +52,7 @@ export default class IgcNavDrawerItemComponent extends LitElement {

protected render() {
return html`
<div
part="${partNameMap(this.resolvePartNames('base'))}"
.disabled="${this.disabled}"
.active="${live(this.active)}"
>
<div part="${partNameMap(this.resolvePartNames('base'))}">
<span part="icon">
<slot name="icon"></slot>
</span>
Expand Down

0 comments on commit 3658078

Please sign in to comment.