@popmenu/admin-ui 0.121.0 → 0.121.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/Button/Button.d.ts +9 -1
- package/build/components/Button/ButtonProps.d.ts +3 -2
- package/build/components/SettingsIndexCard/SettingsIndexCard.d.ts +9 -1
- package/build/components/SettingsIndexCard/SettingsIndexCardProps.d.ts +5 -2
- package/build/index.es.js +5 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +5 -0
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -559,6 +559,8 @@ var getBorder = function (theme) { return function (props) {
|
|
|
559
559
|
}
|
|
560
560
|
return borderColor;
|
|
561
561
|
}; };
|
|
562
|
+
// using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
|
|
563
|
+
// any component-specific props
|
|
562
564
|
styles.makeStyles(function (theme) { return ({
|
|
563
565
|
root: {
|
|
564
566
|
background: getBackground$1(theme),
|
|
@@ -745,6 +747,7 @@ var useLinkStyles = styles.makeStyles(function (theme) { return ({
|
|
|
745
747
|
},
|
|
746
748
|
}); });
|
|
747
749
|
|
|
750
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
748
751
|
var Link = React.forwardRef(function (props, ref) {
|
|
749
752
|
var children = props.children, muiProps = __rest(props, ["children"]);
|
|
750
753
|
var classes = useLinkStyles(props);
|
|
@@ -1328,6 +1331,7 @@ var deriveButtonProps = function (buttonProps) {
|
|
|
1328
1331
|
return derived;
|
|
1329
1332
|
};
|
|
1330
1333
|
|
|
1334
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
1331
1335
|
var Button = React.forwardRef(function (props, ref) {
|
|
1332
1336
|
var children = props.children; props.variant; var classesOverride = props.classes, commonProps = __rest$1(props, ["children", "variant", "classes"]);
|
|
1333
1337
|
var classes = useButtonStyles(props);
|
|
@@ -1929,6 +1933,7 @@ var useSettingsIndexCardStyles = styles.makeStyles(function (theme) { return ({
|
|
|
1929
1933
|
},
|
|
1930
1934
|
}); });
|
|
1931
1935
|
|
|
1936
|
+
// eslint-disable-next-line react/display-name -- false positive
|
|
1932
1937
|
var SettingsIndexCard = React.forwardRef(function (props, ref) {
|
|
1933
1938
|
var title = props.title, description = props.description, Icon$1 = props.Icon, onClick = props.onClick, statusLabel = props.statusLabel, restProps = __rest$1(props, ["title", "description", "Icon", "onClick", "statusLabel"]);
|
|
1934
1939
|
var classes = useSettingsIndexCardStyles(props);
|