forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from mnajdova/feat/move-slider-styled-to-core-…
…with-slots [Slider] Introduce slots as components in core
- Loading branch information
Showing
14 changed files
with
561 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
{ | ||
"css": { | ||
"root": { | ||
"class": ".MuiSlider-root", | ||
"description": "Class name applied to the root element." | ||
}, | ||
"colorPrimary": { | ||
"class": ".MuiSlider-colorPrimary", | ||
"description": "Class name applied to the root element if `color=\"primary\"`." | ||
}, | ||
"colorSecondary": { | ||
"class": ".MuiSlider-colorSecondary", | ||
"description": "Class name applied to the root element if `color=\"secondary\"`." | ||
}, | ||
"marked": { | ||
"class": ".MuiSlider-marked", | ||
"description": "Class name applied to the root element if `marks` is provided with at least one label." | ||
}, | ||
"vertical": { | ||
"class": ".MuiSlider-vertical", | ||
"description": "Class name applied to the root element if `orientation=\"vertical\"`." | ||
}, | ||
"disabled": { | ||
"class": ".Mui-disabled", | ||
"description": "Pseudo-class applied to the root and thumb element if `disabled={true}`." | ||
}, | ||
"rail": { | ||
"class": ".MuiSlider-rail", | ||
"description": "Class name applied to the rail element." | ||
}, | ||
"track": { | ||
"class": ".MuiSlider-track", | ||
"description": "Class name applied to the track element." | ||
}, | ||
"trackFalse": { | ||
"class": ".MuiSlider-trackFalse", | ||
"description": "Class name applied to the track element if `track={false}`." | ||
}, | ||
"trackInverted": { | ||
"class": ".MuiSlider-trackInverted", | ||
"description": "Class name applied to the track element if `track=\"inverted\"`." | ||
}, | ||
"thumb": { | ||
"class": ".MuiSlider-thumb", | ||
"description": "Class name applied to the thumb element." | ||
}, | ||
"thumbColorPrimary": { | ||
"class": ".MuiSlider-thumbColorPrimary", | ||
"description": "Class name applied to the thumb element if `color=\"primary\"`." | ||
}, | ||
"thumbColorSecondary": { | ||
"class": ".MuiSlider-thumbColorSecondary", | ||
"description": "Class name applied to the thumb element if `color=\"secondary\"`." | ||
}, | ||
"active": { | ||
"class": ".MuiSlider-active", | ||
"description": "Pseudo-class applied to the thumb element if it's active." | ||
}, | ||
"focusVisible": { | ||
"class": ".Mui-focusVisible", | ||
"description": "Pseudo-class applied to the thumb element if keyboard focused." | ||
}, | ||
"valueLabel": { | ||
"class": ".MuiSlider-valueLabel", | ||
"description": "Class name applied to the thumb label element." | ||
}, | ||
"mark": { | ||
"class": ".MuiSlider-mark", | ||
"description": "Class name applied to the mark element." | ||
}, | ||
"markActive": { | ||
"class": ".MuiSlider-markActive", | ||
"description": "Class name applied to the mark element if active (depending on the value)." | ||
}, | ||
"markLabel": { | ||
"class": ".MuiSlider-markLabel", | ||
"description": "Class name applied to the mark label element." | ||
}, | ||
"markLabelActive": { | ||
"class": ".MuiSlider-markLabelActive", | ||
"description": "Class name applied to the mark label element if active (depending on the value)." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.