Skip to content

Commit 6139be0

Browse files
committed
chore: regen docs
1 parent c5e0224 commit 6139be0

File tree

2 files changed

+100
-8
lines changed

2 files changed

+100
-8
lines changed

packages/default/docs/customization-button.md

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ The following table lists the available variables for customization.
3939
</tr>
4040
<tr>
4141
<td>$kendo-button-border-radius</td>
42-
<td>Null</td>
43-
<td><code>null</code></td>
44-
<td><code>null</code></td>
42+
<td>String</td>
43+
<td><code>k-border-radius(md)</code></td>
44+
<td><code>var(--kendo-border-radius-md, 0.25rem)</code></td>
4545
</tr>
4646
<tr>
4747
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The border radius of the Button.</div></div>
@@ -77,6 +77,16 @@ The following table lists the available variables for customization.
7777
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the large Button.</div></div>
7878
</td>
7979
</tr>
80+
<tr>
81+
<td>$kendo-button-none-padding-x</td>
82+
<td>Number</td>
83+
<td><code>0</code></td>
84+
<td><code>0</code></td>
85+
</tr>
86+
<tr>
87+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the none Button.</div></div>
88+
</td>
89+
</tr>
8090
<tr>
8191
<td>$kendo-button-sm-padding-y</td>
8292
<td>String</td>
@@ -107,6 +117,16 @@ The following table lists the available variables for customization.
107117
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The vertical padding of the large Button.</div></div>
108118
</td>
109119
</tr>
120+
<tr>
121+
<td>$kendo-button-none-padding-y</td>
122+
<td>Number</td>
123+
<td><code>0</code></td>
124+
<td><code>0</code></td>
125+
</tr>
126+
<tr>
127+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the none Button.</div></div>
128+
</td>
129+
</tr>
110130
<tr>
111131
<td>$kendo-button-font-family</td>
112132
<td>String</td>
@@ -167,6 +187,16 @@ The following table lists the available variables for customization.
167187
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The font size of the large Button.</div></div>
168188
</td>
169189
</tr>
190+
<tr>
191+
<td>$kendo-button-none-font-size</td>
192+
<td>String</td>
193+
<td><code>var( --kendo-font-size, inherit )</code></td>
194+
<td><code>var(--kendo-font-size, inherit)</code></td>
195+
</tr>
196+
<tr>
197+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The font size of the none Button.</div></div>
198+
</td>
199+
</tr>
170200
<tr>
171201
<td>$kendo-button-line-height</td>
172202
<td>String</td>
@@ -207,6 +237,16 @@ The following table lists the available variables for customization.
207237
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The line height used along with the $kendo-font-size the of the large Button.</div></div>
208238
</td>
209239
</tr>
240+
<tr>
241+
<td>$kendo-button-none-line-height</td>
242+
<td>String</td>
243+
<td><code>var( --kendo-line-height, normal )</code></td>
244+
<td><code>var(--kendo-line-height, normal)</code></td>
245+
</tr>
246+
<tr>
247+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The line height used along with the $kendo-font-size the of the none Button.</div></div>
248+
</td>
249+
</tr>
210250
<tr>
211251
<td>$kendo-button-sm-calc-size</td>
212252
<td>Calculation</td>
@@ -248,9 +288,15 @@ The following table lists the available variables for customization.
248288
padding-y: $kendo-button-lg-padding-y,
249289
font-size: $kendo-button-lg-font-size,
250290
line-height: $kendo-button-lg-line-height
291+
),
292+
size-none: (
293+
padding-x: $kendo-button-none-padding-x,
294+
padding-y: $kendo-button-none-padding-y,
295+
font-size: $kendo-button-none-font-size,
296+
line-height: $kendo-button-none-line-height
251297
)
252298
)</code></td>
253-
<td><ul><li>sm: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-0\\.5, 0.125rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>md: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-1, 0.25rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>lg: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-2, 0.5rem)","font-size":"var(--kendo-font-size-lg, inherit)","line-height":"var(--kendo-line-height-lg, normal)"</li></ul></td>
299+
<td><ul><li>sm: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-0\\.5, 0.125rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>md: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-1, 0.25rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>lg: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-2, 0.5rem)","font-size":"var(--kendo-font-size-lg, inherit)","line-height":"var(--kendo-line-height-lg, normal)"</li><li>size-none: "padding-x":0,"padding-y":0,"font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li></ul></td>
254300
</tr>
255301
<tr>
256302
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The sizes map for the Button.</div></div>

packages/default/docs/customization.md

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1875,9 +1875,9 @@ The following table lists the available variables for customizing the Default th
18751875
</tr>
18761876
<tr>
18771877
<td>$kendo-button-border-radius</td>
1878-
<td>Null</td>
1879-
<td><code>null</code></td>
1880-
<td><code>null</code></td>
1878+
<td>String</td>
1879+
<td><code>k-border-radius(md)</code></td>
1880+
<td><code>var(--kendo-border-radius-md, 0.25rem)</code></td>
18811881
</tr>
18821882
<tr>
18831883
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The border radius of the Button.</div></div>
@@ -1913,6 +1913,16 @@ The following table lists the available variables for customizing the Default th
19131913
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the large Button.</div></div>
19141914
</td>
19151915
</tr>
1916+
<tr>
1917+
<td>$kendo-button-none-padding-x</td>
1918+
<td>Number</td>
1919+
<td><code>0</code></td>
1920+
<td><code>0</code></td>
1921+
</tr>
1922+
<tr>
1923+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the none Button.</div></div>
1924+
</td>
1925+
</tr>
19161926
<tr>
19171927
<td>$kendo-button-sm-padding-y</td>
19181928
<td>String</td>
@@ -1943,6 +1953,16 @@ The following table lists the available variables for customizing the Default th
19431953
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The vertical padding of the large Button.</div></div>
19441954
</td>
19451955
</tr>
1956+
<tr>
1957+
<td>$kendo-button-none-padding-y</td>
1958+
<td>Number</td>
1959+
<td><code>0</code></td>
1960+
<td><code>0</code></td>
1961+
</tr>
1962+
<tr>
1963+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The horizontal padding of the none Button.</div></div>
1964+
</td>
1965+
</tr>
19461966
<tr>
19471967
<td>$kendo-button-font-family</td>
19481968
<td>String</td>
@@ -2003,6 +2023,16 @@ The following table lists the available variables for customizing the Default th
20032023
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The font size of the large Button.</div></div>
20042024
</td>
20052025
</tr>
2026+
<tr>
2027+
<td>$kendo-button-none-font-size</td>
2028+
<td>String</td>
2029+
<td><code>var( --kendo-font-size, inherit )</code></td>
2030+
<td><code>var(--kendo-font-size, inherit)</code></td>
2031+
</tr>
2032+
<tr>
2033+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The font size of the none Button.</div></div>
2034+
</td>
2035+
</tr>
20062036
<tr>
20072037
<td>$kendo-button-line-height</td>
20082038
<td>String</td>
@@ -2043,6 +2073,16 @@ The following table lists the available variables for customizing the Default th
20432073
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The line height used along with the $kendo-font-size the of the large Button.</div></div>
20442074
</td>
20452075
</tr>
2076+
<tr>
2077+
<td>$kendo-button-none-line-height</td>
2078+
<td>String</td>
2079+
<td><code>var( --kendo-line-height, normal )</code></td>
2080+
<td><code>var(--kendo-line-height, normal)</code></td>
2081+
</tr>
2082+
<tr>
2083+
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The line height used along with the $kendo-font-size the of the none Button.</div></div>
2084+
</td>
2085+
</tr>
20462086
<tr>
20472087
<td>$kendo-button-sm-calc-size</td>
20482088
<td>Calculation</td>
@@ -2084,9 +2124,15 @@ The following table lists the available variables for customizing the Default th
20842124
padding-y: $kendo-button-lg-padding-y,
20852125
font-size: $kendo-button-lg-font-size,
20862126
line-height: $kendo-button-lg-line-height
2127+
),
2128+
size-none: (
2129+
padding-x: $kendo-button-none-padding-x,
2130+
padding-y: $kendo-button-none-padding-y,
2131+
font-size: $kendo-button-none-font-size,
2132+
line-height: $kendo-button-none-line-height
20872133
)
20882134
)</code></td>
2089-
<td><ul><li>sm: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-0\\.5, 0.125rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>md: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-1, 0.25rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>lg: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-2, 0.5rem)","font-size":"var(--kendo-font-size-lg, inherit)","line-height":"var(--kendo-line-height-lg, normal)"</li></ul></td>
2135+
<td><ul><li>sm: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-0\\.5, 0.125rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>md: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-1, 0.25rem)","font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li><li>lg: "padding-x":"var(--kendo-spacing-2, 0.5rem)","padding-y":"var(--kendo-spacing-2, 0.5rem)","font-size":"var(--kendo-font-size-lg, inherit)","line-height":"var(--kendo-line-height-lg, normal)"</li><li>size-none: "padding-x":0,"padding-y":0,"font-size":"var(--kendo-font-size, inherit)","line-height":"var(--kendo-line-height, normal)"</li></ul></td>
20902136
</tr>
20912137
<tr>
20922138
<td colspan="4" class="theme-variables-description-container"><div><b>Description</b><div class="theme-variables-description">The sizes map for the Button.</div></div>

0 commit comments

Comments
 (0)