-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4eb0c96
commit b0a8322
Showing
30 changed files
with
343 additions
and
200 deletions.
There are no files selected for viewing
Submodule backend
updated
30 files
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 |
---|---|---|
|
@@ -94,5 +94,10 @@ | |
"vite-tsconfig-paths": "^4.2.2", | ||
"vitest": "^1.1.0" | ||
}, | ||
"packageManager": "[email protected]+sha1.71f9126a20cd3d00fa47c188f956918858180e54" | ||
"packageManager": "[email protected]+sha1.71f9126a20cd3d00fa47c188f956918858180e54", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@ifrc-go/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
diff --git a/dist/components/Chip/index.d.ts b/dist/components/Chip/index.d.ts | ||
index 7345249eaad9a8fb959fe0330639292354032909..ceba3ed438c7fa0b687d07f7591bab624aff06bc 100644 | ||
--- a/dist/components/Chip/index.d.ts | ||
+++ b/dist/components/Chip/index.d.ts | ||
@@ -2,7 +2,7 @@ export type ChipVariant = 'primary' | 'secondary' | 'tertiary'; | ||
export interface Props<N> { | ||
className?: string; | ||
name: N; | ||
- label: string; | ||
+ label: React.ReactNode; | ||
variant?: ChipVariant; | ||
onDelete?: (name: N, e: React.MouseEvent<HTMLButtonElement>) => void; | ||
} | ||
diff --git a/package.json b/package.json | ||
index 999e201527e87de45a377344ca40f13212549f61..8ce9c9c085e950405fb0d0f888d5c57876b5e080 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -97,5 +97,10 @@ | ||
"vite-plugin-lib-inject-css": "^1.3.0", | ||
"vite-tsconfig-paths": "^4.2.3", | ||
"vitest": "^1.1.1" | ||
+ }, | ||
+ "pnpm": { | ||
+ "patchedDependencies": { | ||
+ "@ifrc-go/[email protected]": "patches/@[email protected]" | ||
+ } | ||
} | ||
} | ||
diff --git a/patches/@[email protected] b/patches/@[email protected] | ||
new file mode 100644 | ||
index 0000000000000000000000000000000000000000..31603365255a6e1aa30c140c96b27fa3e93cd7fa | ||
--- /dev/null | ||
+++ b/patches/@[email protected] | ||
@@ -0,0 +1,13 @@ | ||
+diff --git a/dist/components/Chip/index.d.ts b/dist/components/Chip/index.d.ts | ||
+index 7345249eaad9a8fb959fe0330639292354032909..ceba3ed438c7fa0b687d07f7591bab624aff06bc 100644 | ||
+--- a/dist/components/Chip/index.d.ts | ||
++++ b/dist/components/Chip/index.d.ts | ||
+@@ -2,7 +2,7 @@ export type ChipVariant = 'primary' | 'secondary' | 'tertiary'; | ||
+ export interface Props<N> { | ||
+ className?: string; | ||
+ name: N; | ||
+- label: string; | ||
++ label: React.ReactNode; | ||
+ variant?: ChipVariant; | ||
+ onDelete?: (name: N, e: React.MouseEvent<HTMLButtonElement>) => void; | ||
+ } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.
4 changes: 0 additions & 4 deletions
4
src/views/MySubscription/SubscriptionDetail/AlertInfoItem/styles.module.css
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
src/views/MySubscription/SubscriptionDetail/styles.module.css
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/views/MySubscription/SubscriptionTableItem/styles.module.css
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"namespace": "SubscriptionActions", | ||
"strings": { | ||
"unarchiveSubscriptionActions": "Unarchive", | ||
"deleteSubscriptionActions": "Delete", | ||
"confirmationMessage": "Are you sure want to delete the subscription?" | ||
} | ||
} |
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
File renamed without changes.
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
4 changes: 4 additions & 0 deletions
4
src/views/MySubscriptions/SubscriptionDetail/AlertInfoItem/styles.module.css
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.alert-detail { | ||
border-radius: var(--go-ui-border-radius-lg); | ||
background-color: var(--go-ui-color-background); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"namespace": "subscriptionDetail", | ||
"strings": { | ||
"subscriptionDetailTitle": "Subscription Detail", | ||
"subscriptionHeading": "Subscription", | ||
"filterStartDateFrom": "Start date from", | ||
"filterStartDateTo": "Start date To", | ||
"filterEmptyMessage": "Alerts not available!", | ||
"subscriptionCountry": "Country", | ||
"subscriptionAdmin1": "Admin1", | ||
"subscriptionUrgency": "Urgency", | ||
"subscriptionCertainty": "Certainty", | ||
"subscriptionSeverity": "Severity", | ||
"subscriptionCategory": "Category", | ||
"susbcriptionEmptyMessage": "No alerts to display!" | ||
} | ||
} |
Oops, something went wrong.