This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
89 changed files
with
987 additions
and
391 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
apps/docs/src/app/examples/breadcrumbs/basic/basic.component.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
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
14 changes: 14 additions & 0 deletions
14
apps/docs/src/app/examples/expansion-panels/accordion/accordion.component.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,14 @@ | ||
<anglify-expansion-panels accordion> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Animi ea natus et impedit nam asperiores nostrum soluta at dignissimos? Veniam | ||
corrupti unde excepturi debitis omnis ab a, voluptatum nostrum officiis.</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellat laboriosam aliquid eius et aliquam, iste deleniti unde corporis atque | ||
officia itaque facere dolores ut molestias ab, omnis quaerat, asperiores adipisci!</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Placeat dicta ducimus, quidem iusto quia laboriosam fugit eos dignissimos | ||
autem inventore fuga molestias veniam, aperiam quos cupiditate. Nesciunt cum facilis nostrum?</anglify-expansion-panel | ||
> | ||
</anglify-expansion-panels> |
5 changes: 5 additions & 0 deletions
5
apps/docs/src/app/examples/expansion-panels/accordion/accordion.component.scss
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,5 @@ | ||
:host { | ||
anglify-expansion-panels { | ||
width: 400px; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
apps/docs/src/app/examples/expansion-panels/accordion/accordion.component.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,9 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
templateUrl: './accordion.component.html', | ||
styleUrls: ['./accordion.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class AccordionComponent {} | ||
export default AccordionComponent; |
14 changes: 14 additions & 0 deletions
14
apps/docs/src/app/examples/expansion-panels/basic/basic.component.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,14 @@ | ||
<anglify-expansion-panels> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Obcaecati eius quis ad libero odit ab enim unde amet quae temporibus aut | ||
deserunt, doloribus vero cupiditate inventore excepturi quod laudantium eligendi!</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Facere fugit ad molestiae accusamus harum qui itaque numquam, veritatis sequi | ||
commodi ratione! Maiores, veritatis! Perferendis fuga, nostrum suscipit cupiditate tempora doloribus.</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non corporis dolore, tenetur sit aliquid labore! Illum, placeat corrupti | ||
ducimus doloribus nobis vero odit tenetur eaque fuga quod eligendi voluptate similique?</anglify-expansion-panel | ||
> | ||
</anglify-expansion-panels> |
5 changes: 5 additions & 0 deletions
5
apps/docs/src/app/examples/expansion-panels/basic/basic.component.scss
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,5 @@ | ||
:host { | ||
anglify-expansion-panels { | ||
width: 400px; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
apps/docs/src/app/examples/expansion-panels/basic/basic.component.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,9 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
templateUrl: './basic.component.html', | ||
styleUrls: ['./basic.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class BasicComponent {} | ||
export default BasicComponent; |
13 changes: 13 additions & 0 deletions
13
apps/docs/src/app/examples/expansion-panels/expansion-panels-example.module.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,13 @@ | ||
import { ButtonModule, ExpansionPanelsModule, ItemGroupModule } from '@anglify/components'; | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import AccordionComponent from './accordion/accordion.component'; | ||
import { BasicComponent } from './basic/basic.component'; | ||
import MandatoryComponent from './mandatory/mandatory.component'; | ||
import MultipleComponent from './multiple/multiple.component'; | ||
|
||
@NgModule({ | ||
declarations: [BasicComponent, MandatoryComponent, MultipleComponent, AccordionComponent], | ||
imports: [CommonModule, ExpansionPanelsModule, ItemGroupModule, ButtonModule], | ||
}) | ||
export class ExpansionPanelsExampleModule {} |
15 changes: 15 additions & 0 deletions
15
apps/docs/src/app/examples/expansion-panels/mandatory/mandatory.component.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,15 @@ | ||
<anglify-expansion-panels mandatory> | ||
<anglify-expansion-panel label="Item" active | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis suscipit veniam deleniti aliquam vero blanditiis, sequi libero | ||
nostrum, saepe numquam sunt explicabo quis tempore ut dicta fuga maxime delectus maiores.</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla facere ullam est quos eveniet quidem cupiditate natus officia fugit quis | ||
molestias mollitia corporis nemo dignissimos aspernatur saepe, dolor asperiores veritatis.</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Optio cumque molestias tempora odio reprehenderit suscipit nemo vero | ||
veritatis delectus asperiores unde officia voluptates commodi exercitationem dolorum corporis, obcaecati pariatur | ||
accusamus.</anglify-expansion-panel | ||
> | ||
</anglify-expansion-panels> |
5 changes: 5 additions & 0 deletions
5
apps/docs/src/app/examples/expansion-panels/mandatory/mandatory.component.scss
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,5 @@ | ||
:host { | ||
anglify-expansion-panels { | ||
width: 400px; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
apps/docs/src/app/examples/expansion-panels/mandatory/mandatory.component.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,9 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
templateUrl: './mandatory.component.html', | ||
styleUrls: ['./mandatory.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class MandatoryComponent {} | ||
export default MandatoryComponent; |
14 changes: 14 additions & 0 deletions
14
apps/docs/src/app/examples/expansion-panels/multiple/multiple.component.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,14 @@ | ||
<anglify-expansion-panels multiple> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque modi illo mollitia quis exercitationem! Qui eveniet excepturi adipisci, | ||
laudantium perspiciatis accusamus totam. Necessitatibus nihil eum numquam recusandae minus beatae accusantium.</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit at vero quo minus laboriosam! Unde nisi fuga voluptatibus non tempora | ||
vitae, corrupti repellat. Aut officiis fugit ullam? Voluptate, recusandae sapiente!</anglify-expansion-panel | ||
> | ||
<anglify-expansion-panel label="Item" | ||
>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Officia, libero excepturi, obcaecati sint soluta rem tempore assumenda quam | ||
similique, voluptatibus consequuntur quisquam omnis pariatur qui voluptate quia alias neque facilis!</anglify-expansion-panel | ||
> | ||
</anglify-expansion-panels> |
5 changes: 5 additions & 0 deletions
5
apps/docs/src/app/examples/expansion-panels/multiple/multiple.component.scss
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,5 @@ | ||
:host { | ||
anglify-expansion-panels { | ||
width: 400px; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
apps/docs/src/app/examples/expansion-panels/multiple/multiple.component.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,9 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
|
||
@Component({ | ||
templateUrl: './multiple.component.html', | ||
styleUrls: ['./multiple.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class MultipleComponent {} | ||
export default MultipleComponent; |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
gap: 1rem; | ||
grid-template-columns: 1fr; | ||
|
||
@include sm { | ||
@include sm-and-up { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
} |
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
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
Oops, something went wrong.