Dependencies
Packages
Install @aws-amplify/ui-angular
with npm or yarn:
npm install @aws-amplify/ui-angular aws-amplify
yarn add @aws-amplify/ui-angular aws-amplify
Note: @aws-amplify/ui-angular
support aligns with Angular's official LTS support window.
Global and Process Shim
Angular does not include shims for global
or process
which are required to use the aws-amplify
library.
See instructions to install polyfills.
Styles
Amplify UI ships with a default theme that you can customize to match the look and feel of your project.
Open your angular.json
file, and add node_modules/@aws-amplify/ui-angular/theme.css
to styles
array in your angular.json
. This array is located in projects.<project-name>.architect.build.options
.
"styles": [
"node_modules/@aws-amplify/ui-angular/theme.css",
"src/styles.css"
],
Fonts
By default, Amplify UI does not bundle a font so that you can choose which font to use in your application and how you want to load the font. The default theme references the Inter font because it works well for UI design and is offered as a variable font. The easiest way to add the Inter font to your application is to use the Google Fonts CDN:
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap"
rel="stylesheet"
/>
or
@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');
You can also install it as an NPM dependency:
npm install @fontsource/inter
yarn add @fontsource/inter
Then import the variable font in your application:
import '@fontsource/inter/variable.css';
Check out Fontsource for more information and documentation on this library.
If you want to enable OpenType features like alternative styles, you can use the font directly from the creator's website: https://rsms.me/inter/
@import url('https://rsms.me/inter/inter.css');
html {
/* this enables some alternative styles and contextual characters to the font */
font-feature-settings: 'ss01', 'ss02', 'case', 'salt';
}