Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…onents into rkaraivanov/rating
  • Loading branch information
rkaraivanov committed Nov 23, 2021
2 parents a989a32 + b31ccee commit b0bdd16
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 30 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Changelog
# IgniteUI Web Components Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.0 - 2021-11-22
Initial release of Ignite UI Web Components

### Added
- Avatar component
- Badge component
- Button component
- Calendar component
- Card component
- Checkbox component
- Form component
- Icon component
- Icon button component
- Input component
- List component
- Navigation bar component
- Navigation drawer component
- Radio group component
- Radio component
- Ripple component
- Switch component
46 changes: 23 additions & 23 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,30 @@
15. **[DONE]** Radio component
16. **[DONE]** Ripple component
17. **[DONE]** Switch component
18. **[IN PROGRESS]** Slider component


## Going down the road

1. Dialog component
2. Tooltip component
3. Toggle component
4. Dropdown component
5. Select component
6. Combobox component
7. Auto-complete component
8. Date editor component
9. Date picker component
10. Date range picker component
11. Time picker component
12. Toast component
13. Snackbar component
14. Splitter component
15. Action strip component
16. Chip component
17. Carousel component
18. Tab component
19. Bottom navigation component
20. Circular & linear progress bar
21. Expansion panel
22. Tree component
1. Slider component
2. Dialog component
3. Tooltip component
4. Toggle component
5. Dropdown component
6. Select component
7. Combobox component
8. Auto-complete component
9. Date editor component
10. Date picker component
11. Date range picker component
12. Time picker component
13. Toast component
14. Snackbar component
15. Splitter component
16. Action strip component
17. Chip component
18. Carousel component
19. Tab component
20. Bottom navigation component
21. Circular & linear progress bar
22. Expansion panel
23. Tree component
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"lint:styles": "stylelint \"src/**/*.scss\"",
"format": "eslint --ext .ts . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"format:stories": "prettier \"**/*.stories.ts\" --write --ignore-path .gitignore",
"release": "changelog",
"test": "npm run build && wtr --coverage",
"test:watch": "npm run build && concurrently -k -r \"npm:watch-scss\" \"npm:watch-ts\" \"wtr --watch\"",
"storybook": "npm run build && concurrently -k -r \"npm:watch-scss\" \"npm:watch-ts\" \"npm:watch-meta\" \"wds -c .storybook/server.mjs\"",
Expand Down
1 change: 0 additions & 1 deletion scripts/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"navbar",
"navdrawer",
"radio",
"slider",
"switch"
],
"dependencies": {
Expand Down
11 changes: 6 additions & 5 deletions src/components/avatar/avatar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { html, LitElement } from 'lit';
import { property, state } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { watch } from '../common/decorators/watch.js';
import { SizableMixin } from '../common/mixins/sizable.js';
import { styles } from './avatar.material.css';

Expand Down Expand Up @@ -62,6 +63,11 @@ export default class IgcAvatarComponent extends SizableMixin(LitElement) {
this.size = 'small';
}

@watch('src')
protected handleErrorState() {
this.hasError = false;
}

protected render() {
return html`
<div
Expand Down Expand Up @@ -89,11 +95,6 @@ export default class IgcAvatarComponent extends SizableMixin(LitElement) {
}
}

// export const avatarDefinition: IgcComponentDefinition = {
// tag: 'igc-avatar',
// component: IgcAvatarComponent,
// };

declare global {
interface HTMLElementTagNameMap {
'igc-avatar': IgcAvatarComponent;
Expand Down

0 comments on commit b0bdd16

Please sign in to comment.