-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'DES/enhancement/705-vl-refactor/loader' into DES/enhanc…
…ement/#705-vl-refactor # Conflicts: # app/styles/app.scss # app/styles/au-kaleidos-css/_auk-content.scss # app/styles/au-kaleidos-css/_auk-modal.scss # app/styles/au-kaleidos-css/_auk-textarea.scss # app/styles/au-kaleidos-css/_s-colors.scss
- Loading branch information
Showing
28 changed files
with
45 additions
and
92 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 |
---|---|---|
@@ -1,6 +1,2 @@ | ||
<div class="vlc-u-box-model-maximize-height vlc-scroll-wrapper auk-u-scroll-no-overflow vl-loader-container--not-supported"> | ||
<p> | ||
{{web-components/vl-loader}} | ||
</p> | ||
</div> | ||
{{web-components/vl-loader}} | ||
{{outlet}} |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<div data-test-vl-loader> | ||
<div class="auk-u-text-align--center"> | ||
<div class="vl-loader" role="alert" aria-busy="true"></div> | ||
<div class="auk-loader" role="alert" aria-busy="true"></div> | ||
</div> | ||
</div> |
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
7 changes: 3 additions & 4 deletions
7
app/pods/components/web-components/au-loading-page/component.js
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,4 +1,3 @@ | ||
import Component from '@ember/component'; | ||
export default Component.extend({ | ||
classNames: ['vlc-u-box-model-maximize-height', 'vlc-u-box-model-maximize-width', 'vlc-scroll-wrapper', 'auk-u-scroll-no-overflow', 'vl-loader-container--not-supported'], | ||
}); | ||
import Component from '@glimmer/component'; | ||
|
||
export default class LoadingPage extends Component {} |
2 changes: 1 addition & 1 deletion
2
app/pods/components/web-components/light-table/vl-content-toggle/template.hbs
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import Component from '@ember/component'; | ||
import Component from '@glimmer/component'; | ||
|
||
export default Component.extend({}); | ||
export default class Loader extends Component {} |
24 changes: 11 additions & 13 deletions
24
app/pods/components/web-components/vl-loader/template.hbs
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,14 +1,12 @@ | ||
<div data-test-vl-loader class="vl-region"> | ||
<div class="auk-u-text-align--center"> | ||
<div class="vl-loader" role="alert" aria-busy="true"></div> | ||
{{#if (not text)}} | ||
<p> | ||
{{t "loading-text"}} | ||
</p> | ||
{{else}} | ||
<p> | ||
{{text}} | ||
</p> | ||
{{/if}} | ||
</div> | ||
<div data-test-vl-loader class="auk-loader-wrapper auk-loader-wrapper--small auk-u-maximize-width auk-u-maximize-height"> | ||
<div class="auk-loader" role="alert" aria-busy="true"></div> | ||
{{#if (not text)}} | ||
<p> | ||
{{t "loading-text"}} | ||
</p> | ||
{{else}} | ||
<p> | ||
{{text}} | ||
</p> | ||
{{/if}} | ||
</div> |
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 |
---|---|---|
@@ -1,6 +1,2 @@ | ||
<div class="vlc-u-box-model-maximize-height vlc-scroll-wrapper auk-u-scroll-no-overflow vl-loader-container--not-supported"> | ||
<p> | ||
{{web-components/vl-loader text=(t "redirect-loading-text")}} | ||
</p> | ||
</div> | ||
{{web-components/vl-loader text=(t "redirect-loading-text")}} | ||
{{outlet}} |
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 was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...styles/govflanders/additions/_loader.scss → ...govflanders/additions/_not-supported.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
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
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