Skip to content

Commit 5d15b56

Browse files
Merge pull request #15 from itk-dev/feature/5634-clean-up-the-light-mode-authors-messes
Feature/5634 clean up the light mode authors messes
2 parents 6873f69 + 2ed60a7 commit 5d15b56

File tree

9 files changed

+5531
-4
lines changed

9 files changed

+5531
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
* [PR-15](https://github.com/itk-dev/rpa-process-overview/pull/15)
11+
Clean up div/add aria-hidden to icons
1012
* [PR-14](https://github.com/itk-dev/rpa-process-overview/pull/14)
1113
Light mode added
1214
* [PR-13](https://github.com/itk-dev/rpa-process-overview/pull/13)

public/widgets/ProcessOverview.min.js

Lines changed: 3123 additions & 1 deletion
Large diffs are not rendered by default.

public/widgets/ProcessSearch.min.js

Lines changed: 2400 additions & 1 deletion
Large diffs are not rendered by default.

widgets/src/_standalone/ProcessOverview/Icons/CheckMark.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
fill="none"
88
viewBox="0 0 24 24"
99
stroke-width="1.5"
10+
aria-hidden={true}
1011
stroke="currentColor"
1112
class={className}
1213
>

widgets/src/_standalone/ProcessOverview/Icons/Clock.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
fill="none"
88
viewBox="0 0 24 24"
99
stroke-width="1.5"
10+
aria-hidden={true}
1011
stroke="currentColor"
1112
class={className}
1213
>

widgets/src/_standalone/ProcessOverview/Icons/Close.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
xmlns="http://www.w3.org/2000/svg"
77
fill="none"
88
viewBox="0 0 24 24"
9+
aria-hidden={true}
910
stroke-width="1.5"
1011
stroke="currentColor"
1112
class={className}

widgets/src/_standalone/ProcessOverview/Icons/ExclamationMark.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<svg
66
class={className}
7+
aria-hidden={true}
78
fill="none"
89
stroke="currentColor"
910
viewBox="0 0 24 24"

widgets/src/_standalone/ProcessOverview/Icons/Spinner.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<div role="status" class="flex flex-col items-center">
66
<svg
7-
aria-hidden="true"
7+
aria-hidden={true}
88
class={className}
99
viewBox="0 0 100 101"
1010
fill="none"

widgets/src/_standalone/ProcessOverview/index.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</Spinner>
3737
</div>
3838
{:else if null === data}
39-
<div class="my-3 text-white"><h2 class="p-4">{t('Missing data')}</h2></div>
39+
<h2 class="text-neutral-900 dark:text-white my-3">{t('Missing data')}</h2>
4040
{:else}
4141
<div
4242
class="flex flex-col border bg-gray-100 dark:bg-gray-900 border-neutral-300 dark:border-neutral-800 rounded-md"

0 commit comments

Comments
 (0)