-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update semver package to 7.7.0 and enhance TypeScript interfac…
…es with detailed JSDoc comments
- Loading branch information
1 parent
c6ff236
commit dc9d330
Showing
11 changed files
with
102 additions
and
29 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file removed
BIN
-235 KB
...enshots/horizontal_spec.js/Chrono.Horizontal.Basic -- check length (failed).png
Binary file not shown.
Binary file removed
BIN
-710 KB
...izontal_spec.js/Chrono.Horizontal.Basic -- check timeline controls (failed).png
Binary file not shown.
Binary file removed
BIN
-1.3 MB
...g_spec.js/Chrono.Vertical.Alternating.Mixed -- check card elements (failed).png
Binary file not shown.
Binary file removed
BIN
-289 KB
...ernating_spec.js/Chrono.Vertical.Alternating.Mixed -- check length (failed).png
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,106 @@ | ||
export interface Theme { | ||
// card background color | ||
/** | ||
* Background color for timeline cards. | ||
*/ | ||
cardBgColor?: string; | ||
|
||
// card details background color | ||
/** | ||
* Background color for card details section. | ||
*/ | ||
cardDetailsBackGround?: string; | ||
|
||
// card details color | ||
/** | ||
* Text color for card details. | ||
*/ | ||
cardDetailsColor?: string; | ||
|
||
/** | ||
* Background color for card media section. | ||
*/ | ||
cardMediaBgColor?: string; | ||
|
||
// card subtitle color | ||
/** | ||
* Text color for card subtitles. | ||
*/ | ||
cardSubtitleColor?: string; | ||
|
||
// card title color | ||
/** | ||
* Text color for card titles. | ||
*/ | ||
cardTitleColor?: string; | ||
|
||
// details color | ||
/** | ||
* Color for detailed text content. | ||
*/ | ||
detailsColor?: string; | ||
|
||
// icon background color | ||
/** | ||
* Background color for timeline point icons. | ||
*/ | ||
iconBackgroundColor?: string; | ||
|
||
// nested card background color | ||
/** | ||
* Background color for nested timeline cards. | ||
*/ | ||
nestedCardBgColor?: string; | ||
|
||
/** | ||
* Background color for nested card details section. | ||
*/ | ||
nestedCardDetailsBackGround?: string; | ||
|
||
// nested card details color | ||
/** | ||
* Text color for nested card details. | ||
*/ | ||
nestedCardDetailsColor?: string; | ||
|
||
// nested card subtitle color | ||
/** | ||
* Text color for nested card subtitles. | ||
*/ | ||
nestedCardSubtitleColor?: string; | ||
|
||
// nested card title color | ||
/** | ||
* Text color for nested card titles. | ||
*/ | ||
nestedCardTitleColor?: string; | ||
|
||
// primary color | ||
/** | ||
* Primary theme color. | ||
*/ | ||
primary?: string; | ||
|
||
// secondary color | ||
/** | ||
* Secondary theme color. | ||
*/ | ||
secondary?: string; | ||
|
||
// text color | ||
/** | ||
* Default text color. | ||
*/ | ||
textColor?: string; | ||
|
||
// title color | ||
/** | ||
* Color for timeline titles. | ||
*/ | ||
titleColor?: string; | ||
|
||
// title color for active tabs | ||
/** | ||
* Color for active timeline titles. | ||
*/ | ||
titleColorActive?: string; | ||
|
||
/** | ||
* Background color for the toolbar. | ||
*/ | ||
toolbarBgColor?: string; | ||
|
||
/** | ||
* Background color for toolbar buttons. | ||
*/ | ||
toolbarBtnBgColor?: string; | ||
|
||
/** | ||
* Text color for toolbar items. | ||
*/ | ||
toolbarTextColor?: string; | ||
} |
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