Skip to content

Commit bc90eab

Browse files
zhpenkovJuveniel
authored andcommitted
chore: regen docs
1 parent deadf70 commit bc90eab

File tree

11 files changed

+51
-10
lines changed

11 files changed

+51
-10
lines changed

packages/bootstrap/docs/customization-appbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the available variables for customization.
8080
<tr>
8181
<td>$kendo-appbar-zindex</td>
8282
<td>Number</td>
83-
<td><code>1000</code></td>
83+
<td><code>k-z-index("banner")</code></td>
8484
<td><code>1000</code></td>
8585
</tr>
8686
<tr>

packages/bootstrap/docs/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The following table lists the available variables for customizing the Bootstrap
124124
<tr>
125125
<td>$kendo-appbar-zindex</td>
126126
<td>Number</td>
127-
<td><code>1000</code></td>
127+
<td><code>k-z-index("banner")</code></td>
128128
<td><code>1000</code></td>
129129
</tr>
130130
<tr>

packages/classic/docs/customization-appbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the available variables for customization.
8080
<tr>
8181
<td>$kendo-appbar-zindex</td>
8282
<td>Number</td>
83-
<td><code>1000</code></td>
83+
<td><code>k-z-index("banner")</code></td>
8484
<td><code>1000</code></td>
8585
</tr>
8686
<tr>

packages/classic/docs/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The following table lists the available variables for customizing the Classic th
124124
<tr>
125125
<td>$kendo-appbar-zindex</td>
126126
<td>Number</td>
127-
<td><code>1000</code></td>
127+
<td><code>k-z-index("banner")</code></td>
128128
<td><code>1000</code></td>
129129
</tr>
130130
<tr>

packages/core/docs/customization.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3868,6 +3868,47 @@ k-escape-class-name($text) // => String
38683868
}
38693869
```
38703870

3871+
### `k-z-index`
3872+
3873+
Return a z-index value based on layer and number of steps.
3874+
3875+
3876+
#### Syntax
3877+
3878+
```scss
3879+
k-z-index($layer, $Number, $Balancing) // => Number
3880+
```
3881+
3882+
#### Parameters
3883+
3884+
3885+
`<String> $layer`
3886+
: The layer key from the $kendo-z-layers map.
3887+
3888+
`<Number} $n [0] - {Optional> $Number`
3889+
: of steps above the base layer.
3890+
3891+
`<Number} $delta [0] - {Deprecated, Optional> $Balancing`
3892+
: value.
3893+
3894+
3895+
3896+
3897+
#### Source
3898+
3899+
```scss
3900+
// Location https://github.com/telerik/kendo-themes/blob/develop/packages/core/scss/z-index/index.import.scss#L28-L36
3901+
@function k-z-index($layer, $Number, $Balancing) {
3902+
$layer-value: map.get($kendo-z-layers, $layer);
3903+
3904+
@if not $layer-value {
3905+
@error "Layer '#{$layer}' not found in $kendo-z-layers map.";
3906+
}
3907+
3908+
@return $layer-value + ($n * $kendo-z-step) + $delta;
3909+
}
3910+
```
3911+
38713912

38723913

38733914

packages/default/docs/customization-appbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the available variables for customization.
8080
<tr>
8181
<td>$kendo-appbar-zindex</td>
8282
<td>Number</td>
83-
<td><code>1000</code></td>
83+
<td><code>k-z-index("banner")</code></td>
8484
<td><code>1000</code></td>
8585
</tr>
8686
<tr>

packages/default/docs/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ The following table lists the available variables for customizing the Default th
154154
<tr>
155155
<td>$kendo-appbar-zindex</td>
156156
<td>Number</td>
157-
<td><code>1000</code></td>
157+
<td><code>k-z-index("banner")</code></td>
158158
<td><code>1000</code></td>
159159
</tr>
160160
<tr>

packages/fluent/docs/customization-appbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the available variables for customization.
8080
<tr>
8181
<td>$kendo-appbar-zindex</td>
8282
<td>String</td>
83-
<td><code>var( --kendo-appbar-zindex, 1000 )</code></td>
83+
<td><code>var( --kendo-appbar-zindex, k-z-index("banner") )</code></td>
8484
<td><code>var(--kendo-appbar-zindex, 1000)</code></td>
8585
</tr>
8686
<tr>

packages/fluent/docs/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ The following table lists the available variables for customizing the Fluent the
10961096
<tr>
10971097
<td>$kendo-appbar-zindex</td>
10981098
<td>String</td>
1099-
<td><code>var( --kendo-appbar-zindex, 1000 )</code></td>
1099+
<td><code>var( --kendo-appbar-zindex, k-z-index("banner") )</code></td>
11001100
<td><code>var(--kendo-appbar-zindex, 1000)</code></td>
11011101
</tr>
11021102
<tr>

packages/material/docs/customization-appbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following table lists the available variables for customization.
8080
<tr>
8181
<td>$kendo-appbar-zindex</td>
8282
<td>Number</td>
83-
<td><code>1000</code></td>
83+
<td><code>k-z-index("banner")</code></td>
8484
<td><code>1000</code></td>
8585
</tr>
8686
<tr>

0 commit comments

Comments
 (0)