-
-
Notifications
You must be signed in to change notification settings - Fork 32.8k
[docs] Update buildAPI script to handle the "styled" components #23370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
fc40e0e
6e5325b
c6df4f7
7a866bc
3710638
094fa7d
773888e
f447fd8
f310f0d
582c59a
3703322
2e56a22
0653705
07f0078
03f94a9
57f0419
df0e3eb
45b3d2d
ef0bfda
7709d1e
4385578
8d67915
d623e4f
38fed1a
99bae46
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,4 +48,46 @@ export const SliderValueLabel: React.FC<SliderValueLabel>; | |
| */ | ||
| declare const Slider: ExtendSliderUnstyled<SliderStyledTypeMap>; | ||
|
|
||
| export type SliderStyledClassKey = | ||
eps1lon marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /** Styles applied to the root element. */ | ||
mnajdova marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | 'root' | ||
|
||
| /** Styles applied to the root element if `color="primary"`. */ | ||
| | 'colorPrimary' | ||
| /** Styles applied to the root element if `color="secondary"`. */ | ||
| | 'colorSecondary' | ||
| /** Styles applied to the root element if `marks` is provided with at least one label. */ | ||
| | 'marked' | ||
| /** Pseudo-class applied to the root element if `orientation="vertical"`. */ | ||
mnajdova marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | 'vertical' | ||
| /** Pseudo-class applied to the root and thumb element if `disabled={true}`. */ | ||
| | 'disabled' | ||
| /** Styles applied to the rail element. */ | ||
| | 'rail' | ||
| /** Styles applied to the track element. */ | ||
| | 'track' | ||
| /** Styles applied to the track element if `track={false}`. */ | ||
| | 'trackFalse' | ||
| /** Styles applied to the track element if `track="inverted"`. */ | ||
| | 'trackInverted' | ||
| /** Styles applied to the thumb element. */ | ||
| | 'thumb' | ||
| /** Styles applied to the thumb element if `color="primary"`. */ | ||
| | 'thumbColorPrimary' | ||
oliviertassinari marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| /** Styles applied to the thumb element if `color="secondary"`. */ | ||
| | 'thumbColorSecondary' | ||
| /** Pseudo-class applied to the thumb element if it's active. */ | ||
| | 'active' | ||
| /** Pseudo-class applied to the thumb element if keyboard focused. */ | ||
| | 'focusVisible' | ||
| /** Styles applied to the thumb label element. */ | ||
| | 'valueLabel' | ||
| /** Styles applied to the mark element. */ | ||
| | 'mark' | ||
| /** Styles applied to the mark element if active (depending on the value). */ | ||
| | 'markActive' | ||
| /** Styles applied to the mark label element. */ | ||
| | 'markLabel' | ||
| /** Styles applied to the mark label element if active (depending on the value). */ | ||
| | 'markLabelActive'; | ||
|
|
||
| export default Slider; | ||
Uh oh!
There was an error while loading. Please reload this page.