@vertigis/react-ui 16.4.1 → 16.5.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/Switch/Switch.d.ts +1 -1
- package/SymbolInput/SymbolJson.js +0 -1
- package/TimePicker/TimePicker.js +1 -0
- package/colors/Color.js +0 -1
- package/package.json +1 -1
- package/styles/createTheme.js +0 -3
package/Switch/Switch.d.ts
CHANGED
|
@@ -8,5 +8,5 @@ export type SwitchClassKey = keyof SwitchClasses;
|
|
|
8
8
|
export type SwitchProps = Omit<MUISwitchProps, "classes"> & {
|
|
9
9
|
classes?: Partial<SwitchClasses>;
|
|
10
10
|
};
|
|
11
|
-
declare const Switch: import("@emotion/styled").StyledComponent<MUISwitchProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material
|
|
11
|
+
declare const Switch: import("@emotion/styled").StyledComponent<MUISwitchProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
12
12
|
export default Switch;
|
package/TimePicker/TimePicker.js
CHANGED
|
@@ -12,6 +12,7 @@ const TimePicker = ({ slots, viewRenderers, ...props }, ref) => (_jsx(MuiTimePic
|
|
|
12
12
|
"& .MuiIconButton-sizeMedium": {
|
|
13
13
|
// Match the adornment alignment of other date pickers.
|
|
14
14
|
marginRight: -0.375,
|
|
15
|
+
padding: "3px",
|
|
15
16
|
},
|
|
16
17
|
}, ...props }));
|
|
17
18
|
export default forwardRef(TimePicker);
|
package/colors/Color.js
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/package.json
CHANGED