@mamrp/components 1.0.0

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.
@@ -0,0 +1,287 @@
1
+ import * as React from 'react';
2
+ import React__default, { ReactNode, CSSProperties, Dispatch, SetStateAction } from 'react';
3
+ import { Control, FieldValues, Path, FieldErrors, UseFormSetValue } from 'react-hook-form';
4
+ import { Moment } from 'moment-jalaali';
5
+ import { SxProps, Theme } from '@mui/material';
6
+ import { GridColDef } from '@mui/x-data-grid';
7
+ import { TextFieldProps } from '@mui/material/TextField';
8
+
9
+ interface MultipleSelectChipProps {
10
+ name: string;
11
+ control: Control<any>;
12
+ label?: string;
13
+ data?: any;
14
+ multipleitems?: boolean;
15
+ isLoading?: boolean;
16
+ disabled?: boolean;
17
+ size?: "small" | "medium";
18
+ clear?: boolean;
19
+ }
20
+ declare function MultipleSelectChip({ name, control, label, data, multipleitems, //قابلیت انتخاب چند گزینه ای
21
+ isLoading, disabled, size, clear, }: MultipleSelectChipProps): React.JSX.Element;
22
+
23
+ interface AdvancedSearchButtonProps {
24
+ isShowFilter: boolean;
25
+ setIsShowFilter: React__default.Dispatch<React__default.SetStateAction<boolean>>;
26
+ color?: "black" | "white";
27
+ title?: string;
28
+ optional?: any;
29
+ icon?: any;
30
+ borderRadius?: string;
31
+ paddingY?: string;
32
+ fontSize?: string;
33
+ }
34
+ declare function AdvancedSearchButton({ isShowFilter, setIsShowFilter, color, title, optional, icon, borderRadius, paddingY, fontSize, }: AdvancedSearchButtonProps): React__default.JSX.Element;
35
+
36
+ declare function SkeletonCard(): React__default.JSX.Element;
37
+
38
+ declare function CustomCheckbox({ name, control, label, }: {
39
+ name: string;
40
+ control: Control<any>;
41
+ label: string;
42
+ }): React__default.JSX.Element;
43
+
44
+ interface ConfirmationDialogProps$1 {
45
+ open: boolean;
46
+ handleClose: () => void;
47
+ callback: (params: any) => void;
48
+ callbackParams: any;
49
+ headerText: string;
50
+ bodyText: ReactNode;
51
+ }
52
+ declare function ConfirmationDialog$1({ open, handleClose, callback, callbackParams, headerText, bodyText, }: ConfirmationDialogProps$1): React.JSX.Element;
53
+
54
+ interface CustomTimePickerProps {
55
+ name: string;
56
+ control: Control<any>;
57
+ label: string;
58
+ size?: "small" | "medium";
59
+ fullwidth?: boolean;
60
+ autoRefresh?: boolean;
61
+ disabled?: boolean;
62
+ }
63
+ declare function CustomTimePicker({ name, control, label, size, fullwidth, autoRefresh, disabled, }: CustomTimePickerProps): React.JSX.Element;
64
+
65
+ declare function DateFilterRange({ FromDate, ToDate }: {
66
+ FromDate: any;
67
+ ToDate: any;
68
+ }): React.JSX.Element;
69
+
70
+ declare function DateFilter({ setHandler }: {
71
+ setHandler?: any;
72
+ }): React__default.JSX.Element;
73
+
74
+ interface JalaliDatePickerProps$2 {
75
+ name: string;
76
+ control: Control<any>;
77
+ label: string;
78
+ size?: "medium" | "small";
79
+ disabled?: boolean;
80
+ persian?: boolean;
81
+ align?: "right" | "center" | "left";
82
+ isLoading?: boolean;
83
+ maxDate?: any;
84
+ minDate?: any;
85
+ clear?: boolean;
86
+ }
87
+ declare const JalaliDatePicker$2: React__default.FC<JalaliDatePickerProps$2>;
88
+
89
+ interface JalaliDatePickerProps$1 {
90
+ name: string;
91
+ control: Control<any>;
92
+ label: string;
93
+ size?: "medium" | "small";
94
+ disabled?: boolean;
95
+ persian?: boolean;
96
+ readOnly?: boolean;
97
+ isLoading?: boolean;
98
+ minDateTime?: Moment;
99
+ centeredTime?: boolean;
100
+ }
101
+ declare const JalaliDatePicker$1: React__default.FC<JalaliDatePickerProps$1>;
102
+
103
+ interface JalaliDateTimeRangePickerProps {
104
+ control: Control<any>;
105
+ startName: string;
106
+ endName: string;
107
+ startLabel: string;
108
+ endLabel: string;
109
+ disabled?: boolean;
110
+ isLoading?: boolean;
111
+ }
112
+ declare const JalaliDateTimeRangePicker: React__default.FC<JalaliDateTimeRangePickerProps>;
113
+
114
+ interface LicensePlateProps$1 {
115
+ width?: CSSProperties["width"];
116
+ name?: string;
117
+ setValue?: any;
118
+ data?: string;
119
+ readOnly?: boolean;
120
+ size?: "small" | "medium";
121
+ }
122
+ declare function LicensePlate({ width, name, setValue, data, readOnly, size, }: LicensePlateProps$1): React.JSX.Element;
123
+
124
+ interface LicensePlateProps {
125
+ width?: CSSProperties["width"];
126
+ part: string[];
127
+ setValue?: any;
128
+ data?: string;
129
+ readOnly?: boolean;
130
+ size?: "small" | "medium";
131
+ }
132
+ declare function SearchLicensePlate({ width, part, setValue, data, readOnly, size, }: LicensePlateProps): React__default.JSX.Element;
133
+
134
+ declare function Loading(): React__default.JSX.Element;
135
+
136
+ interface JalaliDatePickerProps {
137
+ name: string;
138
+ control: Control<any>;
139
+ label: string;
140
+ size?: "small" | "small";
141
+ disabled?: boolean;
142
+ persian?: boolean;
143
+ readOnly?: boolean;
144
+ isLoading?: boolean;
145
+ }
146
+ declare const JalaliDatePicker: React__default.FC<JalaliDatePickerProps>;
147
+
148
+ interface ConfirmationDialogProps {
149
+ open: boolean;
150
+ handleClose: () => void;
151
+ callback: (params: any) => void;
152
+ callbackParams: any;
153
+ headerText: string;
154
+ bodyText: ReactNode;
155
+ isLoading?: boolean;
156
+ }
157
+ declare function ConfirmationDialog({ open, handleClose, callback, callbackParams, headerText, bodyText, isLoading, }: ConfirmationDialogProps): React.JSX.Element;
158
+
159
+ interface NoResultProps {
160
+ title?: string;
161
+ description?: string;
162
+ sx?: SxProps<Theme>;
163
+ }
164
+ declare function NoResult({ title, description, sx, }: NoResultProps): React__default.JSX.Element;
165
+
166
+ interface PaginationListProps {
167
+ currentPage: number;
168
+ setCurrentPage: React.Dispatch<React.SetStateAction<number>>;
169
+ totalPages: number;
170
+ }
171
+ declare function PaginationList({ currentPage, setCurrentPage, totalPages, }: PaginationListProps): React.JSX.Element;
172
+
173
+ declare function RadioButton({ name, label, options, control }: {
174
+ name: string;
175
+ label: string;
176
+ control: Control<any>;
177
+ options: {
178
+ value: any;
179
+ name: string;
180
+ id: any;
181
+ }[];
182
+ }): React.JSX.Element;
183
+
184
+ declare const NestedSelect: React__default.FC;
185
+
186
+ declare function SonarSpinner({ children }: {
187
+ children: any;
188
+ }): React__default.JSX.Element;
189
+
190
+ interface HorizontalStepperProps {
191
+ steps: string[];
192
+ currentStep: number;
193
+ setCurrentStep: (newStep: number) => void;
194
+ }
195
+ declare function HorizontalStepper({ steps, currentStep, setCurrentStep, }: HorizontalStepperProps): React.JSX.Element;
196
+
197
+ type SwitchWithIconsProps = {
198
+ checked: boolean;
199
+ handleChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
200
+ iconChecked: React__default.ReactNode;
201
+ iconUnchecked: React__default.ReactNode;
202
+ };
203
+ declare const SwitchWithIcons: React__default.FC<SwitchWithIconsProps>;
204
+
205
+ interface StateType {
206
+ page: number;
207
+ pageSize: number;
208
+ }
209
+ type TapleProps = {
210
+ columns: GridColDef[];
211
+ rows: object[];
212
+ paginationModel?: StateType;
213
+ setPaginationModel?: Dispatch<SetStateAction<StateType>>;
214
+ totalRows?: number;
215
+ rowId?: any;
216
+ loading: boolean;
217
+ _CustomFooter?: any;
218
+ _tools?: React__default.ReactNode;
219
+ pagingmode?: "client" | "server";
220
+ rowInPage?: number;
221
+ evenRowBgColor?: string;
222
+ highlightedRowId?: string | number;
223
+ sortFieldMapping?: {
224
+ [key: string]: string;
225
+ };
226
+ setsortQuery?: (query: Array<any>) => void;
227
+ sortQuery?: any;
228
+ fontSize?: number | string;
229
+ };
230
+ declare const Table: ({ pagingmode, totalRows, rows, columns, paginationModel, setPaginationModel, loading, rowId, _tools, _CustomFooter, rowInPage, highlightedRowId, evenRowBgColor, sortFieldMapping, setsortQuery, sortQuery, fontSize, ...rest }: TapleProps) => React__default.JSX.Element;
231
+
232
+ type FormInputNumberProps<T extends FieldValues> = {
233
+ control: Control<T>;
234
+ name: Path<T>;
235
+ label?: string | ReactNode;
236
+ endAdornment?: ReactNode;
237
+ startAdornment?: ReactNode;
238
+ thousandSeparator?: string | null;
239
+ allowLeadingZeros?: boolean;
240
+ allowNegative?: boolean;
241
+ maxLength?: number;
242
+ rules?: any;
243
+ isLoading?: boolean;
244
+ data?: any;
245
+ borderColor?: string;
246
+ decimalScale?: number;
247
+ } & TextFieldProps;
248
+ declare const FormInputNumber: <T extends FieldValues>({ name, control, label, endAdornment, thousandSeparator, startAdornment, allowLeadingZeros, allowNegative, maxLength, isLoading, rules, data, borderColor, decimalScale, ...rest }: FormInputNumberProps<T>) => React__default.JSX.Element;
249
+
250
+ type FormInputTextProps<T extends FieldValues> = {
251
+ control: Control<T>;
252
+ name: Path<T>;
253
+ label?: string;
254
+ maxLength?: number;
255
+ readOnly?: boolean;
256
+ rules?: any;
257
+ size?: "medium" | "small";
258
+ disabled?: boolean;
259
+ multiline?: boolean;
260
+ isLoading?: boolean;
261
+ onBlurHandler?: any;
262
+ rows?: number;
263
+ } & TextFieldProps;
264
+ declare const FormInputText: <T extends FieldValues>({ name, control, label, maxLength, readOnly, rules, size, disabled, multiline, isLoading, onBlurHandler, rows, ...rest }: FormInputTextProps<T>) => React__default.JSX.Element;
265
+
266
+ type UploadImageProps<T extends FieldValues> = {
267
+ placeholder: string;
268
+ name: Path<T>;
269
+ selectedImage: string | null;
270
+ setSelectedImage: React__default.Dispatch<React__default.SetStateAction<string | null>>;
271
+ control: Control<T>;
272
+ errors: FieldErrors<T>;
273
+ setValue: UseFormSetValue<T>;
274
+ height?: string;
275
+ allowGallery?: boolean;
276
+ imageFit?: "contain" | "cover";
277
+ };
278
+ declare const UploadImage: <T extends FieldValues>({ placeholder, name, selectedImage, setSelectedImage, control, errors, setValue, height, allowGallery, imageFit, }: UploadImageProps<T>) => React__default.JSX.Element;
279
+
280
+ declare function Page({ data, }: {
281
+ data: [{
282
+ title: string;
283
+ body: ReactNode;
284
+ }];
285
+ }): React.JSX.Element;
286
+
287
+ export { Page as Accordion, AdvancedSearchButton, ConfirmationDialog$1 as ConfirmationDialog, CustomCheckbox, CustomTimePicker, DateFilter, DateFilterRange, JalaliDatePicker$2 as DatePicker, JalaliDatePicker$1 as DateTimePicker, JalaliDateTimeRangePicker as DateTimeRangePicker, FormInputNumber, FormInputText, HorizontalStepper, LicensePlate, Loading, JalaliDatePicker as MobileDateTimePicker, ConfirmationDialog as Modal, NestedSelect as NestedSelectort, NoResult, PaginationList, RadioButton, SearchLicensePlate, MultipleSelectChip as Selector, SkeletonCard, SonarSpinner, SwitchWithIcons as SwitchButton, Table, UploadImage };
@@ -0,0 +1,287 @@
1
+ import * as React from 'react';
2
+ import React__default, { ReactNode, CSSProperties, Dispatch, SetStateAction } from 'react';
3
+ import { Control, FieldValues, Path, FieldErrors, UseFormSetValue } from 'react-hook-form';
4
+ import { Moment } from 'moment-jalaali';
5
+ import { SxProps, Theme } from '@mui/material';
6
+ import { GridColDef } from '@mui/x-data-grid';
7
+ import { TextFieldProps } from '@mui/material/TextField';
8
+
9
+ interface MultipleSelectChipProps {
10
+ name: string;
11
+ control: Control<any>;
12
+ label?: string;
13
+ data?: any;
14
+ multipleitems?: boolean;
15
+ isLoading?: boolean;
16
+ disabled?: boolean;
17
+ size?: "small" | "medium";
18
+ clear?: boolean;
19
+ }
20
+ declare function MultipleSelectChip({ name, control, label, data, multipleitems, //قابلیت انتخاب چند گزینه ای
21
+ isLoading, disabled, size, clear, }: MultipleSelectChipProps): React.JSX.Element;
22
+
23
+ interface AdvancedSearchButtonProps {
24
+ isShowFilter: boolean;
25
+ setIsShowFilter: React__default.Dispatch<React__default.SetStateAction<boolean>>;
26
+ color?: "black" | "white";
27
+ title?: string;
28
+ optional?: any;
29
+ icon?: any;
30
+ borderRadius?: string;
31
+ paddingY?: string;
32
+ fontSize?: string;
33
+ }
34
+ declare function AdvancedSearchButton({ isShowFilter, setIsShowFilter, color, title, optional, icon, borderRadius, paddingY, fontSize, }: AdvancedSearchButtonProps): React__default.JSX.Element;
35
+
36
+ declare function SkeletonCard(): React__default.JSX.Element;
37
+
38
+ declare function CustomCheckbox({ name, control, label, }: {
39
+ name: string;
40
+ control: Control<any>;
41
+ label: string;
42
+ }): React__default.JSX.Element;
43
+
44
+ interface ConfirmationDialogProps$1 {
45
+ open: boolean;
46
+ handleClose: () => void;
47
+ callback: (params: any) => void;
48
+ callbackParams: any;
49
+ headerText: string;
50
+ bodyText: ReactNode;
51
+ }
52
+ declare function ConfirmationDialog$1({ open, handleClose, callback, callbackParams, headerText, bodyText, }: ConfirmationDialogProps$1): React.JSX.Element;
53
+
54
+ interface CustomTimePickerProps {
55
+ name: string;
56
+ control: Control<any>;
57
+ label: string;
58
+ size?: "small" | "medium";
59
+ fullwidth?: boolean;
60
+ autoRefresh?: boolean;
61
+ disabled?: boolean;
62
+ }
63
+ declare function CustomTimePicker({ name, control, label, size, fullwidth, autoRefresh, disabled, }: CustomTimePickerProps): React.JSX.Element;
64
+
65
+ declare function DateFilterRange({ FromDate, ToDate }: {
66
+ FromDate: any;
67
+ ToDate: any;
68
+ }): React.JSX.Element;
69
+
70
+ declare function DateFilter({ setHandler }: {
71
+ setHandler?: any;
72
+ }): React__default.JSX.Element;
73
+
74
+ interface JalaliDatePickerProps$2 {
75
+ name: string;
76
+ control: Control<any>;
77
+ label: string;
78
+ size?: "medium" | "small";
79
+ disabled?: boolean;
80
+ persian?: boolean;
81
+ align?: "right" | "center" | "left";
82
+ isLoading?: boolean;
83
+ maxDate?: any;
84
+ minDate?: any;
85
+ clear?: boolean;
86
+ }
87
+ declare const JalaliDatePicker$2: React__default.FC<JalaliDatePickerProps$2>;
88
+
89
+ interface JalaliDatePickerProps$1 {
90
+ name: string;
91
+ control: Control<any>;
92
+ label: string;
93
+ size?: "medium" | "small";
94
+ disabled?: boolean;
95
+ persian?: boolean;
96
+ readOnly?: boolean;
97
+ isLoading?: boolean;
98
+ minDateTime?: Moment;
99
+ centeredTime?: boolean;
100
+ }
101
+ declare const JalaliDatePicker$1: React__default.FC<JalaliDatePickerProps$1>;
102
+
103
+ interface JalaliDateTimeRangePickerProps {
104
+ control: Control<any>;
105
+ startName: string;
106
+ endName: string;
107
+ startLabel: string;
108
+ endLabel: string;
109
+ disabled?: boolean;
110
+ isLoading?: boolean;
111
+ }
112
+ declare const JalaliDateTimeRangePicker: React__default.FC<JalaliDateTimeRangePickerProps>;
113
+
114
+ interface LicensePlateProps$1 {
115
+ width?: CSSProperties["width"];
116
+ name?: string;
117
+ setValue?: any;
118
+ data?: string;
119
+ readOnly?: boolean;
120
+ size?: "small" | "medium";
121
+ }
122
+ declare function LicensePlate({ width, name, setValue, data, readOnly, size, }: LicensePlateProps$1): React.JSX.Element;
123
+
124
+ interface LicensePlateProps {
125
+ width?: CSSProperties["width"];
126
+ part: string[];
127
+ setValue?: any;
128
+ data?: string;
129
+ readOnly?: boolean;
130
+ size?: "small" | "medium";
131
+ }
132
+ declare function SearchLicensePlate({ width, part, setValue, data, readOnly, size, }: LicensePlateProps): React__default.JSX.Element;
133
+
134
+ declare function Loading(): React__default.JSX.Element;
135
+
136
+ interface JalaliDatePickerProps {
137
+ name: string;
138
+ control: Control<any>;
139
+ label: string;
140
+ size?: "small" | "small";
141
+ disabled?: boolean;
142
+ persian?: boolean;
143
+ readOnly?: boolean;
144
+ isLoading?: boolean;
145
+ }
146
+ declare const JalaliDatePicker: React__default.FC<JalaliDatePickerProps>;
147
+
148
+ interface ConfirmationDialogProps {
149
+ open: boolean;
150
+ handleClose: () => void;
151
+ callback: (params: any) => void;
152
+ callbackParams: any;
153
+ headerText: string;
154
+ bodyText: ReactNode;
155
+ isLoading?: boolean;
156
+ }
157
+ declare function ConfirmationDialog({ open, handleClose, callback, callbackParams, headerText, bodyText, isLoading, }: ConfirmationDialogProps): React.JSX.Element;
158
+
159
+ interface NoResultProps {
160
+ title?: string;
161
+ description?: string;
162
+ sx?: SxProps<Theme>;
163
+ }
164
+ declare function NoResult({ title, description, sx, }: NoResultProps): React__default.JSX.Element;
165
+
166
+ interface PaginationListProps {
167
+ currentPage: number;
168
+ setCurrentPage: React.Dispatch<React.SetStateAction<number>>;
169
+ totalPages: number;
170
+ }
171
+ declare function PaginationList({ currentPage, setCurrentPage, totalPages, }: PaginationListProps): React.JSX.Element;
172
+
173
+ declare function RadioButton({ name, label, options, control }: {
174
+ name: string;
175
+ label: string;
176
+ control: Control<any>;
177
+ options: {
178
+ value: any;
179
+ name: string;
180
+ id: any;
181
+ }[];
182
+ }): React.JSX.Element;
183
+
184
+ declare const NestedSelect: React__default.FC;
185
+
186
+ declare function SonarSpinner({ children }: {
187
+ children: any;
188
+ }): React__default.JSX.Element;
189
+
190
+ interface HorizontalStepperProps {
191
+ steps: string[];
192
+ currentStep: number;
193
+ setCurrentStep: (newStep: number) => void;
194
+ }
195
+ declare function HorizontalStepper({ steps, currentStep, setCurrentStep, }: HorizontalStepperProps): React.JSX.Element;
196
+
197
+ type SwitchWithIconsProps = {
198
+ checked: boolean;
199
+ handleChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
200
+ iconChecked: React__default.ReactNode;
201
+ iconUnchecked: React__default.ReactNode;
202
+ };
203
+ declare const SwitchWithIcons: React__default.FC<SwitchWithIconsProps>;
204
+
205
+ interface StateType {
206
+ page: number;
207
+ pageSize: number;
208
+ }
209
+ type TapleProps = {
210
+ columns: GridColDef[];
211
+ rows: object[];
212
+ paginationModel?: StateType;
213
+ setPaginationModel?: Dispatch<SetStateAction<StateType>>;
214
+ totalRows?: number;
215
+ rowId?: any;
216
+ loading: boolean;
217
+ _CustomFooter?: any;
218
+ _tools?: React__default.ReactNode;
219
+ pagingmode?: "client" | "server";
220
+ rowInPage?: number;
221
+ evenRowBgColor?: string;
222
+ highlightedRowId?: string | number;
223
+ sortFieldMapping?: {
224
+ [key: string]: string;
225
+ };
226
+ setsortQuery?: (query: Array<any>) => void;
227
+ sortQuery?: any;
228
+ fontSize?: number | string;
229
+ };
230
+ declare const Table: ({ pagingmode, totalRows, rows, columns, paginationModel, setPaginationModel, loading, rowId, _tools, _CustomFooter, rowInPage, highlightedRowId, evenRowBgColor, sortFieldMapping, setsortQuery, sortQuery, fontSize, ...rest }: TapleProps) => React__default.JSX.Element;
231
+
232
+ type FormInputNumberProps<T extends FieldValues> = {
233
+ control: Control<T>;
234
+ name: Path<T>;
235
+ label?: string | ReactNode;
236
+ endAdornment?: ReactNode;
237
+ startAdornment?: ReactNode;
238
+ thousandSeparator?: string | null;
239
+ allowLeadingZeros?: boolean;
240
+ allowNegative?: boolean;
241
+ maxLength?: number;
242
+ rules?: any;
243
+ isLoading?: boolean;
244
+ data?: any;
245
+ borderColor?: string;
246
+ decimalScale?: number;
247
+ } & TextFieldProps;
248
+ declare const FormInputNumber: <T extends FieldValues>({ name, control, label, endAdornment, thousandSeparator, startAdornment, allowLeadingZeros, allowNegative, maxLength, isLoading, rules, data, borderColor, decimalScale, ...rest }: FormInputNumberProps<T>) => React__default.JSX.Element;
249
+
250
+ type FormInputTextProps<T extends FieldValues> = {
251
+ control: Control<T>;
252
+ name: Path<T>;
253
+ label?: string;
254
+ maxLength?: number;
255
+ readOnly?: boolean;
256
+ rules?: any;
257
+ size?: "medium" | "small";
258
+ disabled?: boolean;
259
+ multiline?: boolean;
260
+ isLoading?: boolean;
261
+ onBlurHandler?: any;
262
+ rows?: number;
263
+ } & TextFieldProps;
264
+ declare const FormInputText: <T extends FieldValues>({ name, control, label, maxLength, readOnly, rules, size, disabled, multiline, isLoading, onBlurHandler, rows, ...rest }: FormInputTextProps<T>) => React__default.JSX.Element;
265
+
266
+ type UploadImageProps<T extends FieldValues> = {
267
+ placeholder: string;
268
+ name: Path<T>;
269
+ selectedImage: string | null;
270
+ setSelectedImage: React__default.Dispatch<React__default.SetStateAction<string | null>>;
271
+ control: Control<T>;
272
+ errors: FieldErrors<T>;
273
+ setValue: UseFormSetValue<T>;
274
+ height?: string;
275
+ allowGallery?: boolean;
276
+ imageFit?: "contain" | "cover";
277
+ };
278
+ declare const UploadImage: <T extends FieldValues>({ placeholder, name, selectedImage, setSelectedImage, control, errors, setValue, height, allowGallery, imageFit, }: UploadImageProps<T>) => React__default.JSX.Element;
279
+
280
+ declare function Page({ data, }: {
281
+ data: [{
282
+ title: string;
283
+ body: ReactNode;
284
+ }];
285
+ }): React.JSX.Element;
286
+
287
+ export { Page as Accordion, AdvancedSearchButton, ConfirmationDialog$1 as ConfirmationDialog, CustomCheckbox, CustomTimePicker, DateFilter, DateFilterRange, JalaliDatePicker$2 as DatePicker, JalaliDatePicker$1 as DateTimePicker, JalaliDateTimeRangePicker as DateTimeRangePicker, FormInputNumber, FormInputText, HorizontalStepper, LicensePlate, Loading, JalaliDatePicker as MobileDateTimePicker, ConfirmationDialog as Modal, NestedSelect as NestedSelectort, NoResult, PaginationList, RadioButton, SearchLicensePlate, MultipleSelectChip as Selector, SkeletonCard, SonarSpinner, SwitchWithIcons as SwitchButton, Table, UploadImage };