Skip to content

Commit b157c5b

Browse files
authored
v20.5.0
* Remove deprecated animations package and usage. Clean up. * Running `ng update @angular/cli` * Remaining package updates. * Readme updates. * Update dev dependencies. * Update peer dependencies. * Prettier formatting * Update footer and scroll logic * Address copilot feedback. * Remove import decorator usage. * Remove RxJs from peer deps * Implement ngOnDestroy cleanup. * Update RxJs package. * Fix idle state styling. Reuse anim ms timing. * Apply Copilot feedback * Add copilot suggestions.
1 parent a6eb2f9 commit b157c5b

File tree

9 files changed

+788
-1020
lines changed

9 files changed

+788
-1020
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,4 @@
1-
# Displaying a sponsor button in your repository
2-
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
3-
4-
# LFX Mentorship (formerly CommunityBridge)
5-
# https://lfx.linuxfoundation.org/tools/mentorship
6-
community_bridge:
7-
# GitHub Sponsors
8-
# https://github.com/sponsors
9-
github: [ProAngular, CodyTolene]
10-
# IssueHunt
11-
# https://issuehunt.io/
12-
issuehunt:
13-
# Ko-fi
14-
# https://ko-fi.com/
15-
ko_fi:
16-
# Liberapay
17-
# https://en.liberapay.com/
18-
liberapay:
19-
# Open Collective
20-
# https://opencollective.com/
21-
open_collective:
22-
# Otechie
23-
# https://otechie.com/
24-
otechie:
25-
# Patreon
26-
# https://www.patreon.com/
27-
patreon:
28-
# Tidelift
29-
# https://tidelift.com/
30-
tidelift:
31-
# Custom URL
1+
github: [CodyTolene, ProAngular]
2+
buy_me_a_coffee: CodyTolene
3+
patreon: CodyTolene
324
custom: ['https://www.paypal.me/CodyTolene']

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ public/
88
# Do not ignore the following files
99
!.github/
1010
!src/
11+
!src/**
12+
!src/**/*
1113
!README.md
1214

1315
# Re-ignore sub-directories from the above exempt directories:

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -152,17 +152,17 @@ Customization with optional inputs and icon
152152

153153
## 📚 Component API <a name="api"></a>
154154

155-
| Input | Value Typing | Default Value | Description |
156-
| ---------------------- | --------------------- | ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
157-
| **backgroundColor** | string | `'#0D58C0'` (dark-blue) | Background color of the back to top button. Define any `'x'` css property available for `'background-color: x'`. |
158-
| **bottomOffset** | string \| number | `'0px'` | Offset `px` from bottom of page when scrolled to bottom. For example this can be used to make sure the back to top button never overlaps a footer. |
159-
| **displayAtYPosition** | string \| number | `'420px'` | The back to top button will not be displayed until the user scrolls to the provided Y (vertical `px`) coordinate on the page. |
160-
| **fontColor** | string | `'#FFFFFF'` (white) | The font color for the nested content within the back to top button. Define any `'x'` css property available for `'color: x'`. |
161-
| **fontSize** | string | `'16px'` | The font size for the nested content within the back to top button. Define any `'x'` css property available for `'font-size: x'`. |
162-
| **height** | string | `'40px'` | Height of back to top button in string px format. |
163-
| **position** | `'left'` \| `'right'` | `'right'` | Position on-screen where the back to top button is displayed. |
164-
| **width** | string | `'40px'` | Width of back to top button in string px format. |
165-
| **zIndex** | number | `999` | Style the `z-index` for the back to top button as needed for correct layer height adjustment. This can be useful when working with sticky headers. |
155+
| Input | Value Typing | Default Value | Description |
156+
| ---------------------- | ---------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
157+
| **backgroundColor** | string | `#0D58C0` | Background color of the back to top button. Define any 'x' css property available for 'background-color: x'. |
158+
| **bottomOffset** | string \| number | `0px` | Offset px from bottom of page when scrolled to bottom. For example this can be used to make sure the back to top button never overlaps a footer. |
159+
| **displayAtYPosition** | string \| number | `420px` | The back to top button will not be displayed until the user scrolls to the provided Y (vertical px) coordinate on the page. |
160+
| **fontColor** | string | `#FFFFFF` | The font color for the nested content within the back to top button. Define any 'x' css property available for 'color: x'. |
161+
| **fontSize** | string | `16px` | The font size for the nested content within the back to top button. Define any 'x' css property available for 'font-size: x'. |
162+
| **height** | string | `32px` \| `1rem` | Height of back to top button in string format. |
163+
| **position** | left \| right | `right` | Position on-screen where the back to top button is displayed. |
164+
| **width** | string | `32px` \| `1rem` | Width of back to top button in string format. |
165+
| **zIndex** | number | `999` | Style the z-index for the back to top button as needed for correct layer height adjustment. This can be useful when working with sticky headers. |
166166

167167
<p align="right">[ <a href="#index">🔍 Index</a> ]</p>
168168

0 commit comments

Comments
 (0)