-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core):
Lists
add triangle bullet list type (#1727)
* style(tui-list): add triangle bullet list type * style(tui-list): add example of triangle bullet and made fixes * style(tui-list): correct id Co-authored-by: Davydov Nikita <ni.s.davydov@tinkoff.ru>
- Loading branch information
1 parent
cb3ff8b
commit b189a67
Showing
6 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
projects/demo/src/modules/markup/lists/examples/7/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<ul class="tui-list tui-list_triangle"> | ||
<li class="tui-list__item">Code Review ($ 10)</li> | ||
<li class="tui-list__item"> | ||
The whole project refactoring ($ 1000) | ||
<ul class="tui-list tui-list_linear tui-list_nested"> | ||
<li class="tui-list__item"> | ||
Add auto prettier and linters on precommit ($ 50) | ||
</li> | ||
<li class="tui-list__item"> | ||
Rewrite to react and back ($ Infinity) | ||
</li> | ||
</ul> | ||
</li> | ||
<li class="tui-list__item"> | ||
Live workshop from | ||
<a | ||
tuiLink | ||
href="https://angular.institute/corporate" | ||
target="_blank" | ||
> | ||
angular.institute | ||
</a> | ||
($ 3000) | ||
<ol class="tui-list tui-list_ordered tui-list_nested"> | ||
<li class="tui-list__item">Interactive samples</li> | ||
<li class="tui-list__item">Case analysis</li> | ||
<li class="tui-list__item"> | ||
Angular knowledge that keeps on growing | ||
</li> | ||
</ol> | ||
</li> | ||
</ul> |
11 changes: 11 additions & 0 deletions
11
projects/demo/src/modules/markup/lists/examples/7/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import {Component} from '@angular/core'; | ||
import {changeDetection} from '@demo/emulate/change-detection'; | ||
import {encapsulation} from '@demo/emulate/encapsulation'; | ||
|
||
@Component({ | ||
selector: 'tui-lists-example-7', | ||
templateUrl: './index.html', | ||
changeDetection, | ||
encapsulation, | ||
}) | ||
export class TuiList7 {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters