@tracktor/design-system 3.1.5 → 3.2.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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # [Versions](https://github.com/Tracktor/design-system/releases)
2
2
 
3
- ## v3.1.5
4
- - **[fix]** -`NavigationMenu` add hasAccess props to items
3
+ ## v3.2.0
4
+ - **[feat]** -`Textfield` add endAdornment to show/hide password
@@ -0,0 +1,8 @@
1
+ import { SvgIconProps } from '@mui/material';
2
+ interface CheckIconProps {
3
+ color?: string;
4
+ fontSize?: SvgIconProps["fontSize"];
5
+ sx?: SvgIconProps["sx"];
6
+ }
7
+ declare const VisibilityIcon: ({ sx, fontSize, color }: CheckIconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
8
+ export default VisibilityIcon;
@@ -0,0 +1,8 @@
1
+ import { SvgIconProps } from '@mui/material';
2
+ interface CheckIconProps {
3
+ color?: string;
4
+ fontSize?: SvgIconProps["fontSize"];
5
+ sx?: SvgIconProps["sx"];
6
+ }
7
+ declare const VisibilityIcon: ({ sx, fontSize, color }: CheckIconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
8
+ export default VisibilityIcon;
@@ -0,0 +1,3 @@
1
+ import { TextFieldProps } from '@mui/material';
2
+ declare const TextFieldPassword: ({ slotProps, ...props }: Omit<TextFieldProps, "type">) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export default TextFieldPassword;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "3.1.5",
5
+ "version": "3.2.0",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",