-
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.
Merge pull request #30 from BouyguesTelecom/merging/colors
🚀 One Colors.tsx for both (web/native)
- Loading branch information
Showing
24 changed files
with
157 additions
and
215 deletions.
There are no files selected for viewing
Binary file modified
BIN
+150 KB
(100%)
examples/mobile/android/app/src/main/assets/fonts/poppins-bold.ttf
Binary file not shown.
Binary file modified
BIN
+153 KB
(100%)
examples/mobile/android/app/src/main/assets/fonts/poppins-medium.ttf
Binary file not shown.
Binary file modified
BIN
+155 KB
(100%)
examples/mobile/android/app/src/main/assets/fonts/poppins-regular.ttf
Binary file not shown.
Binary file modified
BIN
+152 KB
(100%)
examples/mobile/android/app/src/main/assets/fonts/poppins-semibold.ttf
Binary file not shown.
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
40 changes: 20 additions & 20 deletions
40
packages/react/components/card/content/CardContentProps.ts
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,27 +1,27 @@ | ||
import { ButtonMarkup, ButtonMarkupValues, ButtonVariant, ButtonVariantValues } from '../../button/ButtonEnum' | ||
import { TitleLevels, TitleLevelValues } from '../../title/TitleEnum' | ||
import { TextLevelValues } from '../../text/TextEnum' | ||
import { ClickEvent } from '../../../events/OnClickEvent' | ||
import { Accessibility, Clickable, TrilogyColor } from '../../../objects' | ||
import { ButtonMarkup, ButtonMarkupValues, ButtonVariant, ButtonVariantValues, } from "../../button/ButtonEnum" | ||
import { TitleLevels, TitleLevelValues } from "../../title/TitleEnum" | ||
import { TextLevelValues } from "../../text/TextEnum" | ||
import { ClickEvent } from "../../../events/OnClickEvent" | ||
import { Accessibility, Clickable, TrilogyColor } from "../../../objects" | ||
|
||
/** | ||
* Card Content Interface | ||
*/ | ||
export interface CardContentProps extends Clickable, Accessibility { | ||
children?: React.ReactNode | ||
titleSup?: string | ||
titleSupLevel?: TextLevelValues | ||
title?: string | ||
titleLevel?: TitleLevels | TitleLevelValues | ||
buttonText?: string | ||
text?: string | ||
textLevel?: TextLevelValues | ||
buttonVariant?: ButtonVariant | ButtonVariantValues | ||
buttonClick?: ClickEvent | ||
className?: string | ||
buttonMarkup?: ButtonMarkup | ButtonMarkupValues | ||
onClick?: ClickEvent | ||
children?: React.ReactNode; | ||
titleSup?: string; | ||
titleSupLevel?: TextLevelValues; | ||
title?: string; | ||
titleLevel?: TitleLevels | TitleLevelValues; | ||
buttonText?: string; | ||
text?: string; | ||
textLevel?: TextLevelValues; | ||
buttonVariant?: ButtonVariant | ButtonVariantValues; | ||
buttonClick?: ClickEvent; | ||
className?: string; | ||
buttonMarkup?: ButtonMarkup | ButtonMarkupValues; | ||
onClick?: ClickEvent; | ||
|
||
floating?: boolean | ||
backgroundColor?: TrilogyColor.WHITE | 'transparent' | ||
floating?: boolean; | ||
backgroundColor?: TrilogyColor.BACKGROUND | "transparent"; | ||
} |
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.