@goodhood-web/ui 3.4.0-development.1 → 3.4.0-development.10
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/index.js +71 -71
- package/index.mjs +3597 -3593
- package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +1 -1
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -0
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.d.ts +1 -1
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.types.d.ts +1 -0
- package/lib/Atoms/Content/List/List.d.ts +1 -1
- package/lib/Atoms/Content/List/List.types.d.ts +1 -0
- package/lib/Organisms/Modals/Sheet/Sheet.d.ts +1 -1
- package/lib/Organisms/Modals/Sheet/Sheet.types.d.ts +1 -0
- package/package.json +3 -2
- package/style.css +1 -1
- package/styles/_mixins.scss +108 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Icon32 } from '../../../Base/Icon/Icon.types';
|
|
2
2
|
export type StickerProps = {
|
|
3
3
|
className?: string;
|
|
4
|
-
color: 'green' | 'pink' | 'lavender' | 'teal' | 'orange' | 'grey' | 'lightGrey' | 'darkGrey';
|
|
4
|
+
color: 'green' | 'pink' | 'lavender' | 'teal' | 'tealAlt' | 'orange' | 'grey' | 'lightGrey' | 'darkGrey';
|
|
5
5
|
size: 'small' | 'medium' | 'large';
|
|
6
6
|
} & ({
|
|
7
7
|
icon?: never;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ButtonGoogleSSOProps } from './ButtonGoogleSSO.types';
|
|
2
|
-
declare const ButtonGoogleSSO: ({ onError, onSuccess, size, text, trackClick, }: ButtonGoogleSSOProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const ButtonGoogleSSO: ({ error, onError, onSuccess, size, text, trackClick, }: ButtonGoogleSSOProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default ButtonGoogleSSO;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ListProps } from './List.types';
|
|
2
|
-
declare const List: ({ className, items }: ListProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const List: ({ className, items, markdown }: ListProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default List;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SheetProps } from './Sheet.types';
|
|
2
|
-
declare const Sheet: ({ ariaLabel, ariaLabelledBy, breakpoint, cancelButtonText, content, contentClassName, defaultHeaderTitle, footer, footerClassName, header, headerClassName, onDismiss, onPrimaryAction, open, primaryButtonText, sheetClassName, stickyFooter, }: SheetProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Sheet: ({ ariaLabel, ariaLabelledBy, bottomSheet, breakpoint, cancelButtonText, content, contentClassName, defaultHeaderTitle, footer, footerClassName, header, headerClassName, onDismiss, onPrimaryAction, open, primaryButtonText, sheetClassName, stickyFooter, }: SheetProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Sheet;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goodhood-web/ui",
|
|
3
|
-
"version": "3.4.0-development.
|
|
3
|
+
"version": "3.4.0-development.10",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"repository": "https://github.com/good-hood-gmbh/goodhood-web",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"react-dom": "*",
|
|
17
17
|
"react-datepicker": "*",
|
|
18
18
|
"@mui/base": "5.0.0-beta.58",
|
|
19
|
-
"lodash": "^4.17.21"
|
|
19
|
+
"lodash": "^4.17.21",
|
|
20
|
+
"@react-oauth/google": "^0.12.1"
|
|
20
21
|
}
|
|
21
22
|
}
|