react-crud-mui 0.2.58 → 0.2.60
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/dropdown-button/DropdownButton.d.ts +1 -1
- package/dist/components/form/controls/FormRadioGroup.d.ts +3 -1
- package/dist/components/i18n/resources/en.json.d.ts +1 -0
- package/dist/components/i18n/resources/tr.json.d.ts +1 -0
- package/dist/coreui.js +2254 -2244
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export type DropdownOption = {
|
|
|
10
10
|
value: string;
|
|
11
11
|
helperText?: string;
|
|
12
12
|
disabled?: boolean;
|
|
13
|
-
onClick?: (
|
|
13
|
+
onClick?: (event: React.MouseEvent<HTMLLIElement>) => void;
|
|
14
14
|
};
|
|
15
15
|
declare function DropdownButton({ options, disabled, size, buttonGroupProps, color, variant, ...buttonProps }: DropdownButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
export default DropdownButton;
|
|
@@ -10,7 +10,9 @@ export type RadioGroupData = {
|
|
|
10
10
|
export interface FormRadioGroupProps<TFieldValues extends FieldValues = FieldValues> extends Omit<RadioGroupProps, 'name'>, ControlCommonProps<TFieldValues>, FormControlProps {
|
|
11
11
|
data?: RadioGroupData[];
|
|
12
12
|
disabled?: boolean;
|
|
13
|
+
showAllOption?: boolean;
|
|
14
|
+
showAllOptionValue?: string | number | null;
|
|
13
15
|
}
|
|
14
16
|
export declare const StyledFormControlLabel: import('@emotion/styled').StyledComponent<import('@mui/material').FormControlLabelProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
15
|
-
declare function FormRadioGroup<TFieldValues extends FieldValues = FieldValues>({ name, label, helperText, placement, fieldProps, disabled, formControlProps, data, ...radioGroupProps }: FormRadioGroupProps<TFieldValues>): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare function FormRadioGroup<TFieldValues extends FieldValues = FieldValues>({ name, label, helperText, placement, fieldProps, showAllOption, showAllOptionValue, disabled, formControlProps, data, ...radioGroupProps }: FormRadioGroupProps<TFieldValues>): import("react/jsx-runtime").JSX.Element;
|
|
16
18
|
export default FormRadioGroup;
|
|
@@ -135,6 +135,7 @@ declare const _default: {
|
|
|
135
135
|
"nextpage": "Next record",
|
|
136
136
|
"nextstep": "Next Step",
|
|
137
137
|
"no": "No",
|
|
138
|
+
"all": "All",
|
|
138
139
|
"nodatafound": "No item found to display",
|
|
139
140
|
"pleasewait": "Please wait..",
|
|
140
141
|
"takingtoolong": "We’re working on it,please hold on",
|
|
@@ -135,6 +135,7 @@ declare const _default: {
|
|
|
135
135
|
"nextpage": "Sonraki kayıt",
|
|
136
136
|
"nextstep": "Sonraki Adım",
|
|
137
137
|
"no": "Hayır",
|
|
138
|
+
"all": "Tümü",
|
|
138
139
|
"nodatafound": "Gösterilecek kayıt bulunamadı",
|
|
139
140
|
"pleasewait": "Lütfen bekleyiniz",
|
|
140
141
|
"takingtoolong": "İşlem biraz zaman aliyor.Lütfen bekleyiniz",
|