sevago-sso-fe 1.0.51 → 1.0.53
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/README.md +191 -256
- package/dist/components/elements/icon/index.d.ts +0 -1
- package/dist/components/elements/index.d.ts +0 -1
- package/dist/index.cjs.js +8 -35
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -36
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/elements/icon/icon-button.element.d.ts +0 -10
- package/dist/components/elements/icon/icon-content.element.d.ts +0 -15
- package/dist/components/elements/radio/radio-group.element.d.ts +0 -16
- package/dist/components/elements/tooltip/index.d.ts +0 -1
- package/dist/components/elements/tooltip/tooltip-on-click.element.d.ts +0 -7
- package/dist/components/elements/tooltip/tooltip-on-hover.element.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { SxProps } from '@mui/system';
|
|
3
|
-
interface IconButtonElementProps {
|
|
4
|
-
icon: string;
|
|
5
|
-
onClick: () => void;
|
|
6
|
-
sx?: SxProps;
|
|
7
|
-
size?: number;
|
|
8
|
-
}
|
|
9
|
-
export declare const IconButtonElement: React.FC<IconButtonElementProps>;
|
|
10
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { SxProps, Theme } from '@mui/material';
|
|
2
|
-
import { default as React } from 'react';
|
|
3
|
-
import { IconElementProps } from './icon.element';
|
|
4
|
-
export interface IconContentElementProps extends IconElementProps {
|
|
5
|
-
content: any;
|
|
6
|
-
size?: "large" | "small" | "medium";
|
|
7
|
-
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
8
|
-
sx?: SxProps<Theme>;
|
|
9
|
-
sxIcon?: SxProps<Theme>;
|
|
10
|
-
sxText?: SxProps<Theme>;
|
|
11
|
-
applyCssOnClick?: boolean;
|
|
12
|
-
id?: string;
|
|
13
|
-
isNowrap?: boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare const IconContentElement: React.FC<IconContentElementProps>;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { SxProps, Theme } from '@mui/material';
|
|
2
|
-
import { default as React, ReactNode } from 'react';
|
|
3
|
-
export interface RadioGroupElementProps {
|
|
4
|
-
name?: string;
|
|
5
|
-
direction?: 'row' | 'column';
|
|
6
|
-
label?: string;
|
|
7
|
-
iconLabel?: string;
|
|
8
|
-
disabled?: boolean;
|
|
9
|
-
defaultValue?: any;
|
|
10
|
-
value?: any;
|
|
11
|
-
onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
|
|
12
|
-
children: ReactNode;
|
|
13
|
-
required?: boolean;
|
|
14
|
-
sx?: SxProps<Theme>;
|
|
15
|
-
}
|
|
16
|
-
export declare const RadioGroupElement: React.FC<RadioGroupElementProps>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { TooltipOnClickElement } from './tooltip-on-click.element';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { TooltipProps } from '@mui/material';
|
|
2
|
-
import { default as React, ReactElement } from 'react';
|
|
3
|
-
export interface TooltipOnClickElementProps extends Partial<Omit<TooltipProps, 'content'>> {
|
|
4
|
-
content: ReactElement | string;
|
|
5
|
-
onClickAway: () => void;
|
|
6
|
-
}
|
|
7
|
-
export declare const TooltipOnClickElement: React.FC<TooltipOnClickElementProps>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { TooltipProps } from '@mui/material';
|
|
2
|
-
import { default as React, ReactElement } from 'react';
|
|
3
|
-
export interface TooltipOnHoverElementProps extends Partial<Omit<TooltipProps, "content">> {
|
|
4
|
-
openTest?: boolean;
|
|
5
|
-
content: ReactElement | string;
|
|
6
|
-
showCloseIcon?: boolean;
|
|
7
|
-
onCloseClick?: () => void;
|
|
8
|
-
}
|
|
9
|
-
export declare const TooltipOnHoverElement: React.FC<TooltipOnHoverElementProps>;
|