@acuteinfo/common-base 1.0.8 → 1.0.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { GridSize, GridSpacing, GridDirection } from "@mui/material/Grid";
|
|
2
2
|
import { AllTextFieldProps, AllSelectFieldProps, AllCheckboxGroupProps, AllCheckboxProps, AllDatePickerProps, AllDateTimePickerProps, AllTimePickerProps, AllRadioProps, AllRatingProps, AllSliderProps, AllSwitchGroupProps, AllSwitchProps, AllNumberFormatProps, AllPasswordFieldProps, AllSpacerProps, AllToggleButtonGroupProps, AllInputMaskProps, AllAutocompleteProps, ArrayFieldProps, AllTextareaAutosizeFieldProps, AllHiddenFieldProps, AllTypographyFieldProps, AllTransferListProps, AllSearchFieldProps, AllVisaversaFieldProps, AllDataTableProps, AllFormButtonProps, AllAccountNumberProps, AllLoginIDProps, DividerPropsOptional, AllDividerProps } from "./typesFields";
|
|
3
3
|
import { TextFieldPropsOptional, SelectPropsOptional, CheckboxGroupPropsOptional, CheckboxPropsOptional, DatePickerPropsOptional, DateTimePickerPropsOptional, TimePickerPropsOptional, RadioPropsOptional, RatingPropsOptional, SliderPropsOptional, SwitchPropsOptional, SwitchGroupPropsOptional, NumberFormatPropsOptional, PasswordFieldPropsOptional, ToggleButtonGroupPropsOptional, InputMaskPropsOptional, AutocompletePropsOptional, TextareaAutosizeFieldPropsOptional, SearchFieldPropsOptional, VisaversaFieldPropsOptional, DataTablePropsOptional } from "./typesFields";
|
|
4
|
-
import { Merge } from "components/common/types";
|
|
5
|
-
import { InitialValuesType, SubmitFnType } from "packages/form";
|
|
4
|
+
import { Merge } from "../../components/common/types";
|
|
5
|
+
import { InitialValuesType, SubmitFnType } from "../../packages/form";
|
|
6
6
|
import { ReactNode } from "react";
|
|
7
7
|
export interface FormRenderConfigType {
|
|
8
8
|
ordering: "auto" | "sequence";
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
import { YupSchemaMetaDataType } from "./types";
|
|
2
|
-
import { Merge, Optional } from "components/common/types";
|
|
2
|
+
import { Merge, Optional } from "../../components/common/types";
|
|
3
3
|
import { TextFieldProps } from "../../components/common/textField";
|
|
4
|
-
import { SelectProps } from "components/common/select";
|
|
5
|
-
import { CheckboxProps, CheckboxGroupProps } from "components/common/checkbox";
|
|
6
|
-
import { DatePickerProps, DateTimePickerProps, TimePickerProps } from "components/common/datetime";
|
|
7
|
-
import { RadioProps } from "components/common/radio";
|
|
8
|
-
import { RatingProps } from "components/common/rating";
|
|
9
|
-
import { SliderProps } from "components/common/slider";
|
|
10
|
-
import { SwitchGroupProps, SwitchProps } from "components/common/switch";
|
|
11
|
-
import { SpacerProps } from "components/common/spacer";
|
|
12
|
-
import { ToggleButtonGroupProps } from "components/common/toggleButtonGroup";
|
|
13
|
-
import { AutocompleteProps } from "components/common/autocomplete";
|
|
14
|
-
import { NumberFormatProps } from "components/derived/numberFormat";
|
|
15
|
-
import { PasswordFieldProps } from "components/derived/passwordField";
|
|
16
|
-
import { InputMaskProps } from "components/derived/inputMask";
|
|
17
|
-
import { ValidateFnType, shouldExcludeFnType } from "packages/form";
|
|
18
|
-
import { CustomRuleType } from "components/utils";
|
|
19
|
-
import { ArrayField2Props } from "components/common/arrayField";
|
|
20
|
-
import { TextareaAutosizeFieldProps } from "components/common/textarea";
|
|
21
|
-
import { TypographyProps } from "components/common/typograhpy";
|
|
22
|
-
import { HiddenFieldProps } from "components/common/hidden";
|
|
23
|
-
import { TransferListProps } from "components/common/transferList";
|
|
24
|
-
import { SearchFieldProps } from "components/common/search";
|
|
25
|
-
import { VisaversaProps } from "components/common/visaversa";
|
|
26
|
-
import { DataTableProps } from "components/common/dataTable";
|
|
27
|
-
import { FormButtonProps } from "components/common/formbutton";
|
|
28
|
-
import { DividerProps } from "components/common/divider";
|
|
4
|
+
import { SelectProps } from "../../components/common/select";
|
|
5
|
+
import { CheckboxProps, CheckboxGroupProps } from "../../components/common/checkbox";
|
|
6
|
+
import { DatePickerProps, DateTimePickerProps, TimePickerProps } from "../../components/common/datetime";
|
|
7
|
+
import { RadioProps } from "../../components/common/radio";
|
|
8
|
+
import { RatingProps } from "../../components/common/rating";
|
|
9
|
+
import { SliderProps } from "../../components/common/slider";
|
|
10
|
+
import { SwitchGroupProps, SwitchProps } from "../../components/common/switch";
|
|
11
|
+
import { SpacerProps } from "../../components/common/spacer";
|
|
12
|
+
import { ToggleButtonGroupProps } from "../../components/common/toggleButtonGroup";
|
|
13
|
+
import { AutocompleteProps } from "../../components/common/autocomplete";
|
|
14
|
+
import { NumberFormatProps } from "../../components/derived/numberFormat";
|
|
15
|
+
import { PasswordFieldProps } from "../../components/derived/passwordField";
|
|
16
|
+
import { InputMaskProps } from "../../components/derived/inputMask";
|
|
17
|
+
import { ValidateFnType, shouldExcludeFnType } from "../../packages/form";
|
|
18
|
+
import { CustomRuleType } from "../../components/utils";
|
|
19
|
+
import { ArrayField2Props } from "../../components/common/arrayField";
|
|
20
|
+
import { TextareaAutosizeFieldProps } from "../../components/common/textarea";
|
|
21
|
+
import { TypographyProps } from "../../components/common/typograhpy";
|
|
22
|
+
import { HiddenFieldProps } from "../../components/common/hidden";
|
|
23
|
+
import { TransferListProps } from "../../components/common/transferList";
|
|
24
|
+
import { SearchFieldProps } from "../../components/common/search";
|
|
25
|
+
import { VisaversaProps } from "../../components/common/visaversa";
|
|
26
|
+
import { DataTableProps } from "../../components/common/dataTable";
|
|
27
|
+
import { FormButtonProps } from "../../components/common/formbutton";
|
|
28
|
+
import { DividerProps } from "../../components/common/divider";
|
|
29
29
|
export interface FieldRenderProps<T> {
|
|
30
30
|
componentType: T;
|
|
31
31
|
group?: number;
|