Skip to content

Commit

Permalink
Merge branch 'develop' into palette-variables-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
zhpenkov committed Jun 12, 2024
2 parents d6b2557 + 622c10c commit 3d6f0e3
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 44 deletions.
1 change: 1 addition & 0 deletions packages/bootstrap/docs/customization-radii.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ The following table lists the available variables for customization.
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>(
none: $kendo-border-radius-none,
xs: $kendo-border-radius-xs,
sm: $kendo-border-radius-sm,
md: $kendo-border-radius-md,
Expand Down
1 change: 1 addition & 0 deletions packages/bootstrap/docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -17621,6 +17621,7 @@ The following table lists the available variables for customizing the Bootstrap
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>(
none: $kendo-border-radius-none,
xs: $kendo-border-radius-xs,
sm: $kendo-border-radius-sm,
md: $kendo-border-radius-md,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ $kendo-border-radius-full: 50rem !default;
/// The global radii Map.
/// @group radii
$kendo-border-radii: (
none: $kendo-border-radius-none,
xs: $kendo-border-radius-xs,
sm: $kendo-border-radius-sm,
md: $kendo-border-radius-md,
Expand Down
20 changes: 10 additions & 10 deletions packages/fluent/docs/customization-radii.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,6 @@ 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 second largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>$_default-border-radii</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
Expand All @@ -127,6 +117,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 largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>$_default-border-radii</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem, full: 9999px)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
20 changes: 10 additions & 10 deletions packages/fluent/docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -23057,16 +23057,6 @@ The following table lists the available variables for customizing the Fluent the
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The second largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>$_default-border-radii</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
Expand All @@ -23077,6 +23067,16 @@ The following table lists the available variables for customizing the Fluent the
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
<td><code>$_default-border-radii</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem, full: 9999px)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
6 changes: 5 additions & 1 deletion packages/fluent/scss/core/border-radii/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ $kendo-border-radius-xxl: map.get($kendo-spacing, 4) !default;
/// The second largest border radius used across the Components.
/// @group radii
$kendo-border-radius-xxxl: map.get($kendo-spacing, 5) !default;
/// The largest border radius used across the Components.
/// @group radii
$kendo-border-radius-full: 9999px !default;

$_default-border-radii: (
none: $kendo-border-radius-none,
Expand All @@ -34,7 +37,8 @@ $_default-border-radii: (
lg: $kendo-border-radius-lg,
xl: $kendo-border-radius-xl,
xxl: $kendo-border-radius-xxl,
xxxl: $kendo-border-radius-xxxl
xxxl: $kendo-border-radius-xxxl,
full: $kendo-border-radius-full
) !default;

/// The global radii Map.
Expand Down
23 changes: 12 additions & 11 deletions packages/material/docs/customization-radii.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,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 second largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
<td><code>9999px</code></td>
<td><code>9999px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
Expand All @@ -118,24 +128,15 @@ The following table lists the available variables for customization.
lg: $kendo-border-radius-lg,
xl: $kendo-border-radius-xl,
xxl: $kendo-border-radius-xxl,
xxxl: $kendo-border-radius-xxxl
xxxl: $kendo-border-radius-xxxl,
full: $kendo-border-radius-full
)</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem, full: 9999px)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
<td><code>9999px</code></td>
<td><code>9999px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The largest border radius used across the Components.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
23 changes: 12 additions & 11 deletions packages/material/docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -17598,6 +17598,16 @@ The following table lists the available variables for customizing the Material t
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The second largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
<td><code>9999px</code></td>
<td><code>9999px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The largest border radius used across the Components.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radii</td>
<td>Map</td>
Expand All @@ -17609,24 +17619,15 @@ The following table lists the available variables for customizing the Material t
lg: $kendo-border-radius-lg,
xl: $kendo-border-radius-xl,
xxl: $kendo-border-radius-xxl,
xxxl: $kendo-border-radius-xxxl
xxxl: $kendo-border-radius-xxxl,
full: $kendo-border-radius-full
)</code></td>
<td><code>(none: 0px, xs: 1px, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, xl: 0.75rem, xxl: 1rem, xxxl: 1.25rem, full: 9999px)</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The global radii Map.</div></div>
</td>
</tr>
<tr>
<td>$kendo-border-radius-full</td>
<td>Number</td>
<td><code>9999px</code></td>
<td><code>9999px</code></td>
</tr>
<tr>
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The largest border radius used across the Components.</div></div>
</td>
</tr>
</tbody>
</table>

Expand Down
6 changes: 5 additions & 1 deletion packages/material/scss/core/border-radii/index.import.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ $kendo-border-radius-xxl: k-map-get($kendo-spacing, 4) !default;
/// The second largest border radius used across the Components.
/// @group radii
$kendo-border-radius-xxxl: k-map-get($kendo-spacing, 5) !default;
/// The largest border radius used across the Components.
/// @group radii
$kendo-border-radius-full: 9999px !default;

/// The global radii Map.
/// @group radii
Expand All @@ -33,7 +36,8 @@ $kendo-border-radii: (
lg: $kendo-border-radius-lg,
xl: $kendo-border-radius-xl,
xxl: $kendo-border-radius-xxl,
xxxl: $kendo-border-radius-xxxl
xxxl: $kendo-border-radius-xxxl,
full: $kendo-border-radius-full
) !default;

@import "@progress/kendo-theme-core/scss/border-radii/index.import.scss";

0 comments on commit 3d6f0e3

Please sign in to comment.