-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(plan) add new graduated percentage charge model
- Loading branch information
Showing
21 changed files
with
1,027 additions
and
33 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
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,4 @@ | ||
{ | ||
"__variant-name": "German", | ||
"__variant-description": "", | ||
"text_641d6ae1d947c400671e6abb": "Etwas ist schiefgelaufen", | ||
"text_641d6aee014c8d00c1425cdd": "Bitte aktualisieren Sie die Seite oder kontaktieren Sie uns, wenn der Fehler weiterhin besteht.", | ||
"text_641d6b00ef96c1008754734d": "Seite aktualisieren", | ||
|
@@ -31,6 +29,8 @@ | |
"text_6419c64eace749372fc72b54": "Bezahlt", | ||
"text_6419c64eace749372fc72b62": "PDF herunterladen", | ||
"text_641c6acee4bc20004e62c534": "Es ist ein Problem aufgetreten, die Url ist ungültig oder abgelaufen.", | ||
"__variant-name": "German", | ||
"__variant-description": "", | ||
"text_64188b3d9735d5007d712249": "730,00 $", | ||
"text_64188b3d9735d5007d71225c": "Deine Rechnung von {{organization}} #LAG-1234-567-981", | ||
"text_64188b3d9735d5007d712260": "<[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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
{ | ||
"__variant-name": "French", | ||
"__variant-description": "", | ||
"text_641d6ae1d947c400671e6abb": "Quelque chose n'a pas fonctionné", | ||
"text_641d6aee014c8d00c1425cdd": "Veuillez actualiser la page ou nous contacter si l'erreur persiste.", | ||
"text_641d6b00ef96c1008754734d": "Actualiser la page", | ||
|
@@ -31,6 +29,8 @@ | |
"text_6419c64eace749372fc72b54": "Payé", | ||
"text_6419c64eace749372fc72b62": "Télécharger le PDF", | ||
"text_641c6acee4bc20004e62c534": "Un problème s'est produit, l’url n'est pas valide ou a expiré.", | ||
"__variant-name": "French", | ||
"__variant-description": "", | ||
"text_64188b3d9735d5007d712249": "730.00 $", | ||
"text_64188b3d9735d5007d71225c": "Votre facture nº LAG-1234-567-981 de {{organization}}", | ||
"text_64188b3d9735d5007d712260": "<[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
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,9 @@ | ||
import { Chip, ChipSize } from './Chip' | ||
|
||
type BetaChipProps = { | ||
size?: ChipSize | ||
} | ||
|
||
export const BetaChip = ({ size = 'small' }: BetaChipProps) => { | ||
return <Chip type="beta" label="Beta" size={size} /> | ||
} |
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
Oops, something went wrong.