-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix background and upgrade version for release
- Loading branch information
Showing
16 changed files
with
76 additions
and
70 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
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
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
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 +1 @@ | ||
export const version = "0.0.1-beta.12" | ||
export const version = "0.0.1-beta.13" |
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