sevago-sso-fe 1.0.68 → 1.0.70
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/dist/components/elements/text-field/index.d.ts +0 -8
- package/dist/index.cjs.js +484 -32337
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +617 -32470
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/elements/text-field/text-field-date.element.d.ts +0 -21
- package/dist/components/elements/text-field/text-field-label.element.d.ts +0 -9
- package/dist/components/elements/text-field/text-field-month-year.element.d.ts +0 -0
- package/dist/components/elements/text-field/text-field-number.element.d.ts +0 -19
- package/dist/components/elements/text-field/text-field-search-custom.element.d.ts +0 -9
- package/dist/components/elements/text-field/text-field-search.element.d.ts +0 -9
- package/dist/components/elements/text-field/text-field-select-search-object.element.d.ts +0 -26
- package/dist/components/elements/text-field/text-field-select-search.element.d.ts +0 -21
- package/dist/components/elements/text-field/text-field-select.element.d.ts +0 -17
- package/dist/components/elements/text-field/text-field.element.d.ts +0 -13
package/package.json
CHANGED
|
@@ -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 {};
|
|
File without changes
|
|
@@ -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,17 +0,0 @@
|
|
|
1
|
-
import { BaseTextFieldProps } from '@mui/material/TextField';
|
|
2
|
-
import { default as React } from 'react';
|
|
3
|
-
interface TextFieldSelectElementProps extends BaseTextFieldProps {
|
|
4
|
-
openTest?: boolean;
|
|
5
|
-
iconLabel?: string;
|
|
6
|
-
options: any[];
|
|
7
|
-
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
8
|
-
error?: any;
|
|
9
|
-
multiple?: boolean;
|
|
10
|
-
renderValue?: (selected: any) => React.ReactNode;
|
|
11
|
-
placeholder?: string;
|
|
12
|
-
showAvatar?: boolean;
|
|
13
|
-
helperText?: string;
|
|
14
|
-
getOptionDisabled?: (option: any) => boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare const TextFieldSelectElement: React.FC<TextFieldSelectElementProps>;
|
|
17
|
-
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>;
|