@popmenu/admin-ui 0.124.0 → 0.126.0
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/ButtonStyles.d.ts +1 -1
- package/build/components/FullScreenStepperActions/util/augmentButtonProps.d.ts +1 -1
- package/build/components/SettingsIndexCard/SettingsIndexCardStyles.d.ts +1 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/build/theme/adminDarkTheme.d.ts +0 -25
- package/build/theme/adminLightTheme.d.ts +0 -25
- package/package.json +2 -2
|
@@ -4,4 +4,4 @@ export declare const buttonTypography: {
|
|
|
4
4
|
fontSize: string;
|
|
5
5
|
lineHeight: string;
|
|
6
6
|
};
|
|
7
|
-
export declare const useButtonStyles: (props: ButtonProps
|
|
7
|
+
export declare const useButtonStyles: (props: ButtonProps) => import("@material-ui/styles").ClassNameMap<string>;
|
|
@@ -2,4 +2,4 @@ import { FullScreenStepperTypes } from '../../FullScreenStepper/types';
|
|
|
2
2
|
import { ButtonProps } from '../../Button';
|
|
3
3
|
export declare const augmentButtonProps: (internalProps: {
|
|
4
4
|
onClick?: () => Promise<void>;
|
|
5
|
-
}, externalProps: ButtonProps
|
|
5
|
+
}, externalProps: ButtonProps | undefined, setStepCursor: FullScreenStepperTypes.SetStepCursor, stepCursor: FullScreenStepperTypes.StepCursor, incrementor: number) => ButtonProps;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SettingsIndexCardProps } from './SettingsIndexCardProps';
|
|
2
|
-
export declare const useSettingsIndexCardStyles: (props: SettingsIndexCardProps
|
|
2
|
+
export declare const useSettingsIndexCardStyles: (props: SettingsIndexCardProps) => import("@material-ui/styles").ClassNameMap<string>;
|