-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: do not docs component variables from core
- Loading branch information
Showing
80 changed files
with
1 addition
and
5,565 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,22 @@ | ||
// AppBar | ||
|
||
/// The horizontal margin of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-margin-x: null !default; | ||
/// The vertical margin of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-margin-y: null !default; | ||
/// The horizontal padding of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-padding-x: null !default; | ||
/// The vertical padding of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-padding-y: null !default; | ||
/// The width of the border around the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-border-width: null !default; | ||
/// The z-index of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-zindex: null !default; | ||
/// The font family of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-font-family: null !default; | ||
/// The font size of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-font-size: null !default; | ||
/// The line height of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-line-height: null !default; | ||
|
||
/// The spacing between the AppBar sections. | ||
/// @group appbar | ||
$kendo-appbar-gap: null !default; | ||
|
||
/// The background color of the AppBar based on light theme color. | ||
/// @group appbar | ||
$kendo-appbar-light-bg: null !default; | ||
/// The text color of the AppBar based on light theme color. | ||
/// @group appbar | ||
$kendo-appbar-light-text: null !default; | ||
|
||
/// The background color of the AppBar based on dark theme color. | ||
/// @group appbar | ||
$kendo-appbar-dark-bg: null !default; | ||
/// The text color of the AppBar based on dark theme color. | ||
/// @group appbar | ||
$kendo-appbar-dark-text: null !default; | ||
|
||
/// The box shadow of the AppBar. | ||
/// @group appbar | ||
$kendo-appbar-box-shadow: null !default; | ||
/// The box shadow of the AppBar with bottom position. | ||
/// @group appbar | ||
$kendo-appbar-bottom-box-shadow: null !default; |
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,23 +1,11 @@ | ||
// Avatar | ||
|
||
/// The border width of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-border-width: null !default; | ||
|
||
/// The font family of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-font-family: null !default; | ||
/// The font size of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-font-size: null !default; | ||
/// The line height of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-line-height: null !default; | ||
|
||
/// The sizes map of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-sizes: null !default; | ||
|
||
/// The theme colors map of the Avatar. | ||
/// @group avatar | ||
$kendo-avatar-theme-colors: null !default; |
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,79 +1,33 @@ | ||
// Badge | ||
|
||
/// The width of the border around the Badge. | ||
/// @group badge | ||
$kendo-badge-border-width: null !default; | ||
|
||
/// The border radius of the Badge. | ||
/// @group badge | ||
$kendo-badge-border-radius: null !default; | ||
|
||
|
||
/// The horizontal padding of the Badge. | ||
/// @group badge | ||
$kendo-badge-padding-x: null !default; | ||
/// The horizontal padding of the small Badge. | ||
/// @group badge | ||
$kendo-badge-sm-padding-x: null !default; | ||
/// The horizontal padding of the medium Badge. | ||
/// @group badge | ||
$kendo-badge-md-padding-x: null !default; | ||
/// The horizontal padding of the large Badge. | ||
/// @group badge | ||
$kendo-badge-lg-padding-x: null !default; | ||
|
||
/// The vertical padding of the Badge. | ||
/// @group badge | ||
$kendo-badge-padding-y: null !default; | ||
/// The vertical padding of the small Badge. | ||
/// @group badge | ||
$kendo-badge-sm-padding-y: null !default; | ||
/// The vertical padding of the medium Badge. | ||
/// @group badge | ||
$kendo-badge-md-padding-y: null !default; | ||
/// The vertical padding of the large Badge. | ||
/// @group badge | ||
$kendo-badge-lg-padding-y: null !default; | ||
|
||
/// The font sizes of the Badge. | ||
/// @group badge | ||
$kendo-badge-font-size: null !default; | ||
/// The font size of the small Badge. | ||
/// @group badge | ||
$kendo-badge-sm-font-size: null !default; | ||
/// The font size of the medium Badge. | ||
/// @group badge | ||
$kendo-badge-md-font-size: var( --kendo-font-size-xs, inherit )!default; | ||
/// The font size of the large Badge. | ||
/// @group badge | ||
$kendo-badge-lg-font-size: null !default; | ||
|
||
/// The line heights used along with the $kendo-font-size variable. | ||
/// @group badge | ||
$kendo-badge-line-height: null !default; | ||
/// The line height used along with the $kendo-font-size variable of the small Badge. | ||
/// @group badge | ||
$kendo-badge-sm-line-height: null !default; | ||
/// The line height used along with the $kendo-font-size variable of the medium Badge. | ||
/// @group badge | ||
$kendo-badge-md-line-height: null !default; | ||
/// The line height used along with the $kendo-font-size variable of the large Badge. | ||
/// @group badge | ||
$kendo-badge-lg-line-height: null !default; | ||
|
||
/// The calculated minimum width of the circular Badge. | ||
/// @group badge | ||
$kendo-badge-min-width: null !default; | ||
/// The calculated minimum width of the small circular Badge. | ||
/// @group badge | ||
$kendo-badge-sm-min-width: null !default; | ||
/// The calculated minimum width of the medium circular Badge. | ||
/// @group badge | ||
$kendo-badge-md-min-width: null !default; | ||
/// The calculated minimum width of the large circular Badge. | ||
/// @group badge | ||
$kendo-badge-lg-min-width: null !default; | ||
|
||
/// The sizes map for the Badge. | ||
/// @group badge | ||
$kendo-badge-sizes: null !default; |
38 changes: 0 additions & 38 deletions
38
packages/core/scss/components/bottom-navigation/_variables.scss
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,62 +1,24 @@ | ||
// BottomNavigation | ||
|
||
/// The horizontal padding of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-padding-x: null !default; | ||
/// The vertical padding of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-padding-y: null !default; | ||
/// The spacing between the BottomNavigation items. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-gap: null !default; | ||
/// The width of the border around the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-border-width: null !default; | ||
/// The font family of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-font-family: null !default; | ||
/// The font size of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-font-size: null !default; | ||
/// The line height of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-line-height: null !default; | ||
/// The letter spacing of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-letter-spacing: null !default; | ||
|
||
/// The horizontal padding of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-padding-x: null !default; | ||
/// The vertical padding of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-padding-y: null !default; | ||
/// The minimum width of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-min-width: null !default; | ||
/// The maximum width of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-max-width: null !default; | ||
/// The minimum height of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-min-height: null !default; | ||
/// The border radius of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-border-radius: null !default; | ||
/// The spacing of the BottomNavigation item. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-item-gap: null !default; | ||
|
||
/// The box shadow of the BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-shadow: null !default; | ||
|
||
/// The text color of the flat BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-flat-text: null !default; | ||
/// The background color of the flat BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-flat-bg: null !default; | ||
/// The border color of the flat BottomNavigation. | ||
/// @group bottom-navigation | ||
$kendo-bottom-nav-flat-border: null !default; |
Oops, something went wrong.