sevago-sso-fe 1.0.67 → 1.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sevago-sso-fe",
3
- "version": "1.0.67",
3
+ "version": "1.0.69",
4
4
  "description": "Sevago SSO Frontend Library - A comprehensive SSO solution with React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,21 +0,0 @@
1
- import { SxProps, Theme } from '@mui/material';
2
- import { DatePickerProps } from '@mui/x-date-pickers/DatePicker';
3
- import { default as React } from 'react';
4
- export interface TextFieldDateElementProps extends DatePickerProps {
5
- name: string;
6
- label?: string;
7
- iconLabel?: string;
8
- error?: unknown;
9
- value?: any;
10
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
11
- helperText?: string;
12
- required?: boolean;
13
- sx?: SxProps<Theme>;
14
- disablePast?: boolean;
15
- disableFuture?: boolean;
16
- dateRangeInDays?: number;
17
- onBlur?: (e: React.FocusEvent<any>) => void;
18
- minDate?: any;
19
- maxDate?: any;
20
- }
21
- export declare const TextFieldDateElement: React.FC<TextFieldDateElementProps>;
@@ -1,9 +0,0 @@
1
- import { default as React } from 'react';
2
- interface TextFieldLabelElementProps {
3
- label?: string | React.ReactNode;
4
- iconLabel?: string;
5
- colorLabel?: string;
6
- required?: boolean;
7
- }
8
- export declare const TextFieldLabelElement: React.FC<TextFieldLabelElementProps>;
9
- export {};
@@ -1,19 +0,0 @@
1
- import { BaseTextFieldProps, TextFieldProps } from '@mui/material';
2
- import { default as React } from 'react';
3
- export interface TextFieldNumberElementProps extends BaseTextFieldProps {
4
- iconLabel?: string;
5
- error?: any;
6
- placeholder?: string;
7
- value?: any;
8
- onChange?: (event: {
9
- target: {
10
- name?: string;
11
- value: any;
12
- };
13
- }) => void;
14
- decimalScale?: number;
15
- showResetButton?: boolean;
16
- onReset?: () => void;
17
- InputProps?: TextFieldProps['InputProps'];
18
- }
19
- export declare const TextFieldNumberElement: React.FC<TextFieldNumberElementProps>;
@@ -1,9 +0,0 @@
1
- import { BaseTextFieldProps } from '@mui/material';
2
- import { default as React } from 'react';
3
- export interface TextFieldSearchCustomElementProps extends BaseTextFieldProps {
4
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
5
- label?: string;
6
- iconLabel?: string;
7
- value?: string;
8
- }
9
- export declare const TextFieldSearchCustomElement: React.FC<TextFieldSearchCustomElementProps>;
@@ -1,9 +0,0 @@
1
- import { BaseTextFieldProps } from '@mui/material';
2
- import { default as React } from 'react';
3
- export interface TextFieldSearchElementProps extends BaseTextFieldProps {
4
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
5
- label?: string;
6
- iconLabel?: string;
7
- searchIcon?: string;
8
- }
9
- export declare const TextFieldSearchElement: React.FC<TextFieldSearchElementProps>;
@@ -1,26 +0,0 @@
1
- import { AutocompleteRenderOptionState } from '@mui/material/Autocomplete';
2
- import { BaseTextFieldProps } from '@mui/material/TextField';
3
- import { default as React } from 'react';
4
- export interface TextFieldSelectSearchObjectElementProps extends BaseTextFieldProps {
5
- openTest?: boolean;
6
- iconLabel?: string;
7
- error?: any;
8
- multiple?: boolean;
9
- loading?: boolean;
10
- options?: any[];
11
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
12
- onInputChange?: (event: React.SyntheticEvent, newInputValue: string, reason: string) => void;
13
- renderOption?: (props: React.HTMLAttributes<HTMLLIElement>, option: any, state: AutocompleteRenderOptionState) => React.ReactNode;
14
- isOptionEqualToValue?: (option: any, value: any) => boolean;
15
- getOptionLabel?: (option: any) => any;
16
- getOptionDisabled?: (option: any) => boolean;
17
- freeSolo?: boolean;
18
- isCheckIcon?: boolean;
19
- showAvatar?: boolean;
20
- colorLabel?: string;
21
- renderTags?: (value: any[], getTagProps: (params: {
22
- index: number;
23
- }) => any) => React.ReactNode;
24
- maxDisplayTags?: number;
25
- }
26
- export declare const TextFieldSelectSearchObjectElement: React.FC<TextFieldSelectSearchObjectElementProps>;
@@ -1,21 +0,0 @@
1
- import { BaseTextFieldProps } from '@mui/material/TextField';
2
- import { default as React } from 'react';
3
- interface TextFieldSelectSearchElementProps extends BaseTextFieldProps {
4
- openTest?: boolean;
5
- iconLabel?: string;
6
- error?: any;
7
- value?: any;
8
- multiple?: boolean;
9
- loading?: boolean;
10
- options: any[];
11
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
12
- renderOption?: (props: React.HTMLAttributes<HTMLLIElement>, option: any) => React.ReactNode;
13
- getOptionLabel?: (option: any) => string;
14
- isCheckIcon?: boolean;
15
- colorLabel?: string;
16
- showRadioBtn?: boolean;
17
- disableCloseOnSelect?: boolean;
18
- helperText?: any;
19
- }
20
- export declare const TextFieldSelectSearchElement: React.FC<TextFieldSelectSearchElementProps>;
21
- export {};
@@ -1,13 +0,0 @@
1
- import { TextFieldProps } from '@mui/material';
2
- import { default as React } from 'react';
3
- export interface TextFieldElementProps extends Omit<TextFieldProps, ''> {
4
- iconLabel?: string;
5
- error?: any;
6
- onChange?: (event: React.ChangeEvent<HTMLInputElement> | any) => void;
7
- InputProps?: TextFieldProps['InputProps'];
8
- colorLabel?: string;
9
- description?: string | null;
10
- showResetButton?: boolean;
11
- onReset?: () => void;
12
- }
13
- export declare const TextFieldElement: React.FC<TextFieldElementProps>;