Skip to content

Commit

Permalink
chore: regen docs
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow committed Jun 13, 2024
1 parent 839aac1 commit 2ce6488
Show file tree
Hide file tree
Showing 18 changed files with 1,520 additions and 77 deletions.
4 changes: 2 additions & 2 deletions packages/bootstrap/docs/customization-common.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ The following table lists the available variables for customization.
</tr>
<tr>
<td>$kendo-disabled-text</td>
<td>String</td>
<td>Null</td>
<td><code>if( $kendo-is-dark-theme, $gray-600, $gray-500)</code></td>
<td><code>var(--kendo-color-on-app-surface, #212529)</code></td>
<td><code>null</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">Text color of disabled items.</div></div>
Expand Down
10 changes: 10 additions & 0 deletions packages/bootstrap/docs/customization-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ The following table lists the available variables for customization.
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The opacity of the Loading indicator.</div></div>
</td>
</tr>
<tr>
<td>$kendo-zindex-loading</td>
<td>Number</td>
<td><code>100</code></td>
<td><code>100</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The z-index of the Loading indicator.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
138 changes: 138 additions & 0 deletions packages/bootstrap/docs/customization-panels.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
---
title: Customizing Panels
description: "Refer to the list of the Kendo UI Bootstrap theme variables available for customization."
slug: variables_kendothemebootstrap_panels
position: 9
---

# Customizing Panels

## Variables

The following table lists the available variables for customization.

<table class="theme-variables">
<colgroup>
<col style="width: 200px; white-space:nowrap;" />
<col />
<col />
<col />
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default value</th>
<th>Computed value</th>
</tr>
</thead>
<tbody>
<tr>
<td>$kendo-panel-border-radius</td>
<td>String</td>
<td><code>k-border-radius(md)</code></td>
<td><code>var(--kendo-border-radius-md, 0.375rem)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The border radius of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border-width</td>
<td>Number</td>
<td><code>1px</code></td>
<td><code>1px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The width of the border around the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border-style</td>
<td>String</td>
<td><code>solid</code></td>
<td><code>solid</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The style of the border around the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-header-padding-inline</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 2)</code></td>
<td><code>0.5rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The inline padding of the Panel header.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-header-padding-block</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 1)</code></td>
<td><code>0.25rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The block padding of the Panel header.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-content-padding-inline</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 2)</code></td>
<td><code>0.5rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The inline padding of the Panel content.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-content-padding-block</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 1)</code></td>
<td><code>0.25rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The block padding of the Panel content.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-text</td>
<td>String</td>
<td><code>var(--kendo-component-text, #{$kendo-component-text})</code></td>
<td><code>var(--kendo-component-text, var(--kendo-color-on-app-surface, #212529))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The text color of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-bg</td>
<td>String</td>
<td><code>var(--kendo-component-bg, #{$kendo-component-bg})</code></td>
<td><code>var(--kendo-component-bg, var(--kendo-color-surface-alt, #ffffff))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The background color of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border</td>
<td>String</td>
<td><code>var(--kendo-component-border, #{$kendo-component-border})</code></td>
<td><code>var(--kendo-component-border, var(--kendo-color-border, rgba(33, 37, 41, 0.13)))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The color of the border around the Panel.</div></div>
</td>
</tr>
</tbody>
</table>

## Suggested Links

* [Styling Overview]({% slug themesandstyles %})
* [Web Font Icons]({% slug icons %})
* [Preview of the Themed Components](../)

134 changes: 132 additions & 2 deletions packages/bootstrap/docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ The following table lists the available variables for customizing the Bootstrap
</tr>
<tr>
<td>$kendo-disabled-text</td>
<td>String</td>
<td>Null</td>
<td><code>if( $kendo-is-dark-theme, $gray-600, $gray-500)</code></td>
<td><code>var(--kendo-color-on-app-surface, #212529)</code></td>
<td><code>null</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">Text color of disabled items.</div></div>
Expand Down Expand Up @@ -14370,6 +14370,16 @@ The following table lists the available variables for customizing the Bootstrap
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The opacity of the Loading indicator.</div></div>
</td>
</tr>
<tr>
<td>$kendo-zindex-loading</td>
<td>Number</td>
<td><code>100</code></td>
<td><code>100</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The z-index of the Loading indicator.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down Expand Up @@ -17125,6 +17135,126 @@ The following table lists the available variables for customizing the Bootstrap
</tbody>
</table>

### Panels

<table class="theme-variables">
<colgroup>
<col style="width: 200px; white-space:nowrap;" />
<col />
<col />
<col />
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default value</th>
<th>Computed value</th>
</tr>
</thead>
<tbody><tr>
<td>$kendo-panel-border-radius</td>
<td>String</td>
<td><code>k-border-radius(md)</code></td>
<td><code>var(--kendo-border-radius-md, 0.375rem)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The border radius of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border-width</td>
<td>Number</td>
<td><code>1px</code></td>
<td><code>1px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The width of the border around the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border-style</td>
<td>String</td>
<td><code>solid</code></td>
<td><code>solid</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The style of the border around the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-header-padding-inline</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 2)</code></td>
<td><code>0.5rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The inline padding of the Panel header.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-header-padding-block</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 1)</code></td>
<td><code>0.25rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The block padding of the Panel header.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-content-padding-inline</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 2)</code></td>
<td><code>0.5rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The inline padding of the Panel content.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-content-padding-block</td>
<td>Number</td>
<td><code>k-map-get($kendo-spacing, 1)</code></td>
<td><code>0.25rem</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The block padding of the Panel content.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-text</td>
<td>String</td>
<td><code>var(--kendo-component-text, #{$kendo-component-text})</code></td>
<td><code>var(--kendo-component-text, var(--kendo-color-on-app-surface, #212529))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The text color of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-bg</td>
<td>String</td>
<td><code>var(--kendo-component-bg, #{$kendo-component-bg})</code></td>
<td><code>var(--kendo-component-bg, var(--kendo-color-surface-alt, #ffffff))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The background color of the Panel.</div></div>
</td>
</tr>
<tr>
<td>$kendo-panel-border</td>
<td>String</td>
<td><code>var(--kendo-component-border, #{$kendo-component-border})</code></td>
<td><code>var(--kendo-component-border, var(--kendo-color-border, rgba(33, 37, 41, 0.13)))</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The color of the border around the Panel.</div></div>
</td>
</tr>
</tbody>
</table>

### Picker

<table class="theme-variables">
Expand Down
4 changes: 2 additions & 2 deletions packages/classic/docs/customization-common.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ The following table lists the available variables for customization.
</tr>
<tr>
<td>$kendo-disabled-text</td>
<td>String</td>
<td>Null</td>
<td><span class="color-preview" style="background-color: #8d8d8d"></span><code>#8d8d8d</code></td>
<td><code>var(--kendo-color-on-app-surface, #272727)</code></td>
<td><code>null</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">Text color of disabled items.</div></div>
Expand Down
10 changes: 10 additions & 0 deletions packages/classic/docs/customization-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ The following table lists the available variables for customization.
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The opacity of the Loading indicator.</div></div>
</td>
</tr>
<tr>
<td>$kendo-zindex-loading</td>
<td>Number</td>
<td><code>100</code></td>
<td><code>100</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The z-index of the Loading indicator.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
Loading

0 comments on commit 2ce6488

Please sign in to comment.