-
Notifications
You must be signed in to change notification settings - Fork 1
[PER-10275] Fixed archive selector modal available archives list #718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
aasandei-vsp
merged 1 commit into
main
from
PER-10275-archive-selector-modal-for-request-access
Oct 10, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
85 changes: 85 additions & 0 deletions
85
...p/component-library/components/basic-loading-spinner/basic-loading-spinner.component.html
This file contains hidden or 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,85 @@ | ||
<div> | ||
<svg | ||
width="118" | ||
height="110" | ||
viewBox="0 0 118 110" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g class="outer-circle" filter="url(#filter0_d_6094_25361)"> | ||
<path | ||
d="M76.186 39.5004C77.5649 41.8887 78.4598 44.5252 78.8198 47.2594C79.1798 49.9935 78.9977 52.7718 78.2839 55.4356C77.5701 58.0994 76.3387 60.5965 74.6599 62.7844C72.9811 64.9723 70.8877 66.8081 68.4995 68.187C66.1112 69.5658 63.4747 70.4608 60.7405 70.8208C58.0063 71.1807 55.228 70.9986 52.5643 70.2849C49.9005 69.5711 47.4033 68.3397 45.2155 66.6608C43.0276 64.982 41.1918 62.8887 39.8129 60.5004" | ||
stroke="url(#paint0_linear_6094_25361)" | ||
stroke-width="6" | ||
stroke-linecap="round" | ||
/> | ||
</g> | ||
<g class="inner-circle"> | ||
<path | ||
d="M50.9289 42.9289C51.8575 42.0003 52.9599 41.2637 54.1732 40.7612C55.3864 40.2586 56.6868 40 58 40C59.3132 40 60.6136 40.2586 61.8268 40.7612C63.0401 41.2637 64.1425 42.0003 65.0711 42.9289C65.9997 43.8575 66.7362 44.9599 67.2388 46.1732C67.7413 47.3864 68 48.6868 68 50C68 51.3132 67.7413 52.6136 67.2388 53.8268C66.7362 55.0401 65.9997 56.1425 65.0711 57.0711" | ||
stroke="url(#paint1_linear_6094_25361)" | ||
stroke-width="6" | ||
stroke-linecap="round" | ||
/> | ||
</g> | ||
<defs> | ||
<filter | ||
id="filter0_d_6094_25361" | ||
x="-2" | ||
y="-10" | ||
width="120" | ||
height="120" | ||
filterUnits="userSpaceOnUse" | ||
color-interpolation-filters="sRGB" | ||
> | ||
<feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
<feColorMatrix | ||
in="SourceAlpha" | ||
type="matrix" | ||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" | ||
result="hardAlpha" | ||
/> | ||
<feOffset /> | ||
<feGaussianBlur stdDeviation="18" /> | ||
<feComposite in2="hardAlpha" operator="out" /> | ||
<feColorMatrix | ||
type="matrix" | ||
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.32 0" | ||
/> | ||
<feBlend | ||
mode="normal" | ||
in2="BackgroundImageFix" | ||
result="effect1_dropShadow_6094_25361" | ||
/> | ||
<feBlend | ||
mode="normal" | ||
in="SourceGraphic" | ||
in2="effect1_dropShadow_6094_25361" | ||
result="shape" | ||
/> | ||
</filter> | ||
<linearGradient | ||
id="paint0_linear_6094_25361" | ||
x1="25.2148" | ||
y1="41.2158" | ||
x2="80.3161" | ||
y2="24.4276" | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<stop stop-color="#800080" /> | ||
<stop offset="1" stop-color="#FF9933" /> | ||
</linearGradient> | ||
<linearGradient | ||
id="paint1_linear_6094_25361" | ||
x1="58" | ||
y1="68.3848" | ||
x2="41.4914" | ||
y2="41.9089" | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<stop stop-color="#800080" /> | ||
<stop offset="1" stop-color="#FF9933" /> | ||
</linearGradient> | ||
</defs> | ||
</svg> | ||
</div> |
29 changes: 29 additions & 0 deletions
29
...p/component-library/components/basic-loading-spinner/basic-loading-spinner.component.scss
This file contains hidden or 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,29 @@ | ||
.outer-circle { | ||
animation: spin-outer 2s linear infinite; | ||
transform-origin: 50% 50%; /* Center the rotation */ | ||
transform-box: fill-box; | ||
} | ||
|
||
.inner-circle { | ||
animation: spin-inner 2s linear infinite; | ||
transform-origin: 50% 50%; /* Center the rotation */ | ||
transform-box: fill-box; | ||
} | ||
|
||
@keyframes spin-outer { | ||
0% { | ||
transform: scale(1.4) rotate(300deg); | ||
} | ||
100% { | ||
transform: scale(1.4) rotate(660deg); | ||
} | ||
} | ||
|
||
@keyframes spin-inner { | ||
0% { | ||
transform: scale(0.9) translate(-0.5px, 6.5px) rotate(45deg); | ||
} | ||
100% { | ||
transform: scale(0.9) translate(-0.5px, 6px) rotate(-315deg); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...omponent-library/components/basic-loading-spinner/basic-loading-spinner.component.spec.ts
This file contains hidden or 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,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { BasicLoadingSpinnerComponent } from './basic-loading-spinner.component'; | ||
|
||
describe('BasicLoadingSpinnerComponent', () => { | ||
let component: BasicLoadingSpinnerComponent; | ||
let fixture: ComponentFixture<BasicLoadingSpinnerComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [BasicLoadingSpinnerComponent], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(BasicLoadingSpinnerComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
9 changes: 9 additions & 0 deletions
9
...app/component-library/components/basic-loading-spinner/basic-loading-spinner.component.ts
This file contains hidden or 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 } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'pr-basic-loading-spinner', | ||
templateUrl: './basic-loading-spinner.component.html', | ||
styleUrl: './basic-loading-spinner.component.scss', | ||
standalone: false, | ||
}) | ||
export class BasicLoadingSpinnerComponent {} |
4 changes: 2 additions & 2 deletions
4
src/app/component-library/components/button/button.component.spec.ts
This file contains hidden or 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
66 changes: 0 additions & 66 deletions
66
src/app/core/components/archive-switcher/archive-switcher.component.spec.ts
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.