-
Notifications
You must be signed in to change notification settings - Fork 56
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
14 changed files
with
127 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 | ||
"recommendations": ["angular.ng-template"] | ||
} |
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,20 @@ | ||
{ | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "ng serve", | ||
"type": "chrome", | ||
"request": "launch", | ||
"preLaunchTask": "npm: start", | ||
"url": "http://localhost:4200/" | ||
}, | ||
{ | ||
"name": "ng test", | ||
"type": "chrome", | ||
"request": "launch", | ||
"preLaunchTask": "npm: test", | ||
"url": "http://localhost:9876/debug.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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,48 +1,48 @@ | ||
<header class="fl-header"> | ||
<img class="fl-header-image" src="./assets/images/headerlogo.webp" width="220.56" height="61" alt="fundamental library logo"/> | ||
<img class="fl-header-image" src="./assets/images/headerlogo.webp" width="220.56" height="61" | ||
alt="fundamental library logo" loading="lazy" /> | ||
</header> | ||
|
||
<main class="fl-components"> | ||
|
||
<fl-intro/> | ||
<fl-intro /> | ||
|
||
<fl-purpose/> | ||
<fl-purpose /> | ||
|
||
<section class="fl-libraries" id="fl-libraries"> | ||
|
||
<section class="fl-libraries" id="fl-libraries"> | ||
<h2 class="fl-title"> | ||
<span>The</span> | ||
<span>Libraries</span> | ||
</h2> | ||
|
||
<h2 class="fl-title"> | ||
<span>The</span> | ||
<span>Libraries</span> | ||
</h2> | ||
<div class="fl-cards"> | ||
|
||
<div class="fl-cards"> | ||
<fl-card logoname="CSS" title="Fundamental Library Styles" imgLink="./assets/images/csstyles.webp" | ||
link="https://sap.github.io/fundamental-styles"> | ||
Fundamental Styles simplifies building consistent SAP Fiori apps in any | ||
web-based technology (Angular, Vue, React, etc.). It offers designed and | ||
pre-built components for easy implementation and is open-source and | ||
community-driven. | ||
</fl-card> | ||
|
||
<fl-card logoname="CSS" title="Fundamental Library Styles" imgLink="./assets/images/csstyles.webp" link="https://sap.github.io/fundamental-styles"> | ||
Fundamental Styles simplifies building consistent SAP Fiori apps in any | ||
web-based technology (Angular, Vue, React, etc.). It offers designed and | ||
pre-built components for easy implementation and is open-source and | ||
community-driven. | ||
</fl-card> | ||
<fl-card logoname="Angular" title="Fundamental Library for Angular" imgLink="./assets/images/angular_black.webp" | ||
link="https://sap.github.io/fundamental-ngx"> | ||
The Fundamental NGX library is based on the Angular framework and | ||
Fundamental Styles, giving its components a modern look. It offers already | ||
built and ready-to-use components which reduce drastically the overall | ||
coding time and lines for the developer. | ||
</fl-card> | ||
|
||
<fl-card logoname="Angular" title="Fundamental Library for Angular" imgLink="./assets/images/angular_black.webp" link="https://sap.github.io/fundamental-ngx"> | ||
The Fundamental NGX library is based on the Angular framework and | ||
Fundamental Styles, giving its components a modern look. It offers already | ||
built and ready-to-use components which reduce drastically the overall | ||
coding time and lines for the developer. | ||
</fl-card> | ||
|
||
</div> | ||
</section> | ||
</div> | ||
</section> | ||
|
||
<fl-used/> | ||
<fl-used /> | ||
|
||
<fl-conference/> | ||
<fl-conference /> | ||
|
||
<fl-design/> | ||
<fl-design /> | ||
|
||
</main> | ||
|
||
<fl-footer/> | ||
|
||
|
||
<fl-footer /> |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { FlUsedComponent } from './fl-used.component'; | ||
|
||
describe('FlUsedComponent', () => { | ||
let component: FlUsedComponent; | ||
let fixture: ComponentFixture<FlUsedComponent>; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [FlUsedComponent] | ||
}); | ||
fixture = TestBed.createComponent(FlUsedComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
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