dhre-component-lib 0.3.1 → 0.3.3

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.
Files changed (34) hide show
  1. package/dist/components/Accordian/Accordian.d.ts +1 -0
  2. package/dist/components/Button/Button.d.ts +16 -8
  3. package/dist/components/Carousel/Carousel.d.ts +14 -0
  4. package/dist/components/Carousel/index.d.ts +1 -0
  5. package/dist/components/Checkbox/Checkbox.d.ts +1 -1
  6. package/dist/components/CircularProgress/CircularProgress.d.ts +3 -2
  7. package/dist/components/Drawer/Drawer.d.ts +12 -0
  8. package/dist/components/Drawer/index.d.ts +1 -0
  9. package/dist/components/Dropdown/Dropdown.d.ts +15 -0
  10. package/dist/components/Dropdown/index.d.ts +1 -0
  11. package/dist/components/Enum.d.ts +31 -0
  12. package/dist/components/HoverOptionsWrapper/HoverOptionsWrapper.d.ts +14 -0
  13. package/dist/components/HoverOptionsWrapper/HoverOptionsWrapper.test.d.ts +1 -0
  14. package/dist/components/HoverOptionsWrapper/index.d.ts +1 -0
  15. package/dist/components/InputTextField/InputTextField.d.ts +3 -0
  16. package/dist/components/Menu/Menu.d.ts +10 -0
  17. package/dist/components/Modal/Modal.d.ts +1 -0
  18. package/dist/components/RangeSlider/RangeSlider.d.ts +11 -0
  19. package/dist/components/RangeSlider/index.d.ts +1 -0
  20. package/dist/components/Search/Search.d.ts +1 -0
  21. package/dist/components/TextArea/TextArea.d.ts +14 -0
  22. package/dist/components/TextArea/index.d.ts +1 -0
  23. package/dist/components/Toast/Toast.d.ts +17 -0
  24. package/dist/components/Toast/Toast.test.d.ts +1 -0
  25. package/dist/components/ToggleSwitch/ToggleSwitch.d.ts +8 -0
  26. package/dist/components/ToggleSwitch/ToggleSwitch.test.d.ts +1 -0
  27. package/dist/components/ToggleSwitch/index.d.ts +1 -0
  28. package/dist/index.d.ts +367 -20
  29. package/dist/index.esm.js +413 -86
  30. package/dist/index.esm.js.map +1 -1
  31. package/dist/index.js +420 -84
  32. package/dist/index.js.map +1 -1
  33. package/dist/theme/colors/colors.scss +43 -21
  34. package/package.json +1 -1
@@ -9,6 +9,7 @@ type AccordionProps = {
9
9
  upArrowIcon: React.ReactNode;
10
10
  downArrowIcon: React.ReactNode;
11
11
  openByDefault?: boolean;
12
+ borderBottom?: boolean;
12
13
  };
13
14
  declare const Accordion: React.FC<AccordionProps>;
14
15
  export default Accordion;
@@ -1,11 +1,19 @@
1
1
  import React from "react";
2
- import './Button.module.scss';
3
- export interface ButtonProps {
4
- label: string;
5
- variant: 'text' | 'outlined' | 'contained';
6
- color: 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info';
7
- size: 'small' | 'medium' | 'large';
8
- handleClick: () => void;
9
- }
2
+ import "./Button.module.scss";
3
+ import { ButtonCategory, CircularProgressColor } from "../Enum";
4
+ type ButtonProps = {
5
+ label: React.ReactNode;
6
+ onClick?: () => void;
7
+ category?: ButtonCategory;
8
+ loading?: boolean;
9
+ disabled?: boolean;
10
+ width?: string;
11
+ height?: string;
12
+ borderRadius?: string;
13
+ className?: string;
14
+ loaderThickness?: number;
15
+ loaderColor?: CircularProgressColor;
16
+ loaderSize?: number;
17
+ };
10
18
  declare const Button: React.FC<ButtonProps>;
11
19
  export default Button;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import "./Carousel.module.scss";
3
+ import { MediaType } from "../Enum";
4
+ export interface CarouselProps {
5
+ items: CarouselItems[];
6
+ }
7
+ export interface CarouselItems {
8
+ src: string;
9
+ type: MediaType;
10
+ alt: string;
11
+ extension: string;
12
+ }
13
+ declare const Carousel: React.FC<CarouselProps>;
14
+ export default Carousel;
@@ -0,0 +1 @@
1
+ export { default } from "./Carousel";
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  interface CustomCheckboxProps {
3
- label?: string;
3
+ label?: React.ReactNode;
4
4
  checked?: boolean;
5
5
  onChange?: React.ChangeEventHandler<HTMLInputElement>;
6
6
  className?: string;
@@ -1,9 +1,10 @@
1
1
  import React from 'react';
2
2
  import './CircularProgress.module.scss';
3
+ import { CircularProgressColor, CircularProgressVariant } from '../Enum';
3
4
  export interface CircularProgressProps {
4
5
  value?: number;
5
- variant?: 'determinate' | 'indeterminate';
6
- color?: 'primary' | 'secondary' | 'error' | 'success' | 'info' | 'warning';
6
+ variant?: CircularProgressVariant;
7
+ color?: CircularProgressColor;
7
8
  thickness?: number;
8
9
  size?: number | string;
9
10
  }
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import "./Drawer.module.scss";
3
+ interface DrawerProps {
4
+ openSideDrawer: boolean;
5
+ closeSideDrawer: () => void;
6
+ width: string;
7
+ component: React.ReactNode;
8
+ anchor?: "left" | "right" | "top" | "bottom";
9
+ variant?: "temporary" | "persistent" | "permanent";
10
+ }
11
+ declare const Drawer: React.FC<DrawerProps>;
12
+ export default Drawer;
@@ -0,0 +1 @@
1
+ export { default } from "./Drawer";
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import "./Dropdown.module.scss";
3
+ type value = {
4
+ name: string;
5
+ value: string;
6
+ };
7
+ declare function Dropdown(props: {
8
+ placeholder: string;
9
+ getSelectedValue: (value: value) => void;
10
+ dropdownList: value[];
11
+ arrowUp: React.ReactNode;
12
+ arrowDown: React.ReactNode;
13
+ value?: value;
14
+ }): React.JSX.Element;
15
+ export default Dropdown;
@@ -0,0 +1 @@
1
+ export { default } from "./Dropdown";
@@ -15,3 +15,34 @@ export declare const LINK_TARGET: {
15
15
  Parent: string;
16
16
  Top: string;
17
17
  };
18
+ export declare enum CircularProgressVariant {
19
+ Determinate = "determinate",
20
+ Indeterminate = "indeterminate"
21
+ }
22
+ export declare enum CircularProgressColor {
23
+ PRIMARY = "primary",
24
+ SECONDARY = "secondary",
25
+ ERROR = "error",
26
+ SUCCESS = "success",
27
+ INFO = "info",
28
+ WARNING = "warning",
29
+ WHITE = "white",
30
+ BLACK = "black"
31
+ }
32
+ export declare enum ButtonCategory {
33
+ FILLED = "filled",
34
+ OUTLINED = "outlined",
35
+ TEXT = "text"
36
+ }
37
+ export declare enum ToastTimer {
38
+ INTERVAL = 100
39
+ }
40
+ export declare enum MediaType {
41
+ Image = "image",
42
+ Video = "video"
43
+ }
44
+ export declare enum ToastStatus {
45
+ ERROR = "error",
46
+ SUCCESS = "success",
47
+ WARNING = "warning"
48
+ }
@@ -0,0 +1,14 @@
1
+ import React, { ReactNode } from "react";
2
+ import "./HoverOptionsWrapper.module.scss";
3
+ interface SwipeActionWrapperProps {
4
+ children: ReactNode;
5
+ onPin?: () => void;
6
+ onRead?: () => void;
7
+ onDelete?: () => void;
8
+ pinIcon: React.ReactNode;
9
+ readIcon: React.ReactNode;
10
+ deleteIcon: React.ReactNode;
11
+ swipeThreshold?: number;
12
+ }
13
+ declare const HoverOptionsWrapper: React.FC<SwipeActionWrapperProps>;
14
+ export default HoverOptionsWrapper;
@@ -0,0 +1 @@
1
+ export { default } from "./HoverOptionsWrapper";
@@ -11,6 +11,9 @@ export interface CustomInputFieldProps {
11
11
  error?: string;
12
12
  errorClassName?: string;
13
13
  id?: string;
14
+ maxLength?: number;
15
+ minLength?: number;
16
+ checkValidation?: () => void;
14
17
  }
15
18
  declare const CustomInputField: React.FC<CustomInputFieldProps>;
16
19
  export default CustomInputField;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import './Menu.module.scss';
3
+ interface MenuInterface {
4
+ openMenu: boolean;
5
+ closeMenu: () => void;
6
+ component: React.ReactNode;
7
+ menuStyles: string;
8
+ }
9
+ declare const Menu: (props: MenuInterface) => React.JSX.Element;
10
+ export default Menu;
@@ -6,6 +6,7 @@ interface ModalProps {
6
6
  title?: React.ReactNode;
7
7
  children: React.ReactNode;
8
8
  crossIcon: React.ReactNode;
9
+ className?: string;
9
10
  }
10
11
  declare const Modal: React.FC<ModalProps>;
11
12
  export default Modal;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import './RangeSlider.module.scss';
3
+ interface rangeSlider {
4
+ sliderLimit: number;
5
+ minRange: number;
6
+ maxRange: number;
7
+ text1: string;
8
+ text2: string;
9
+ }
10
+ declare const RangeSlider: (props: rangeSlider) => React.JSX.Element;
11
+ export default RangeSlider;
@@ -0,0 +1 @@
1
+ export { default } from "./RangeSlider";
@@ -21,6 +21,7 @@ interface CustomSearchFieldProps {
21
21
  className?: string;
22
22
  onSearchIconClick?: () => void;
23
23
  onHandleClear?: () => void;
24
+ isWhiteBackgound?: boolean;
24
25
  }
25
26
  declare const Search: React.FC<CustomSearchFieldProps>;
26
27
  export default Search;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import "./TextArea.module.scss";
3
+ declare function TextArea(props: {
4
+ value?: string;
5
+ onChange: (event: {
6
+ target: {
7
+ value: string;
8
+ };
9
+ }) => void;
10
+ requiredLimit: string;
11
+ placeholder: string;
12
+ charText: string;
13
+ }): React.JSX.Element;
14
+ export default TextArea;
@@ -0,0 +1 @@
1
+ export { default } from "./TextArea";
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import "./Toast.scss";
3
+ import { ToastStatus } from "../Enum";
4
+ interface ToastProps {
5
+ icon?: React.ReactNode;
6
+ text: string;
7
+ onAction?: () => void;
8
+ onActionText?: string;
9
+ onHide?: () => void;
10
+ type: ToastStatus;
11
+ className?: string;
12
+ duration: number;
13
+ showCrossIcon?: boolean;
14
+ crossIcon?: React.ReactNode;
15
+ }
16
+ declare const Toast: React.FC<ToastProps>;
17
+ export default Toast;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import './ToggleSwitch.module.scss';
3
+ type ToggleSwitchProps = {
4
+ initialState?: boolean;
5
+ onToggle?: (state: boolean) => void;
6
+ };
7
+ declare const ToggleSwitch: React.FC<ToggleSwitchProps>;
8
+ export default ToggleSwitch;
@@ -0,0 +1 @@
1
+ export { default } from "./ToggleSwitch";
package/dist/index.d.ts CHANGED
@@ -1,20 +1,367 @@
1
- export { default as Button } from "./components/Button";
2
- export { default as Avatar } from "./components/Avatar";
3
- export { default as Badge } from "./components/Badge";
4
- export { default as BreadCrumb } from "./components/BreadCrumb";
5
- export { default as Checkbox } from "./components/Checkbox";
6
- export { default as CircularProgress } from "./components/CircularProgress";
7
- export { default as Divider } from "./components/Divider";
8
- export { default as Link } from "./components/Link";
9
- export { default as Progress } from "./components/Progress";
10
- export { default as RadioButton } from "./components/RadioButton";
11
- export { default as InputTextField } from "./components/InputTextField";
12
- export { default } from "./components/PdfView";
13
- export { default as Directions } from "./components/Map/Directions";
14
- export { default as GoogleMap } from "./components/Map/GoogleMap";
15
- export { default as OtpInput } from "./components/OtpInput/OtpInput";
16
- export { default as Typography } from "./components/Typography/Typography";
17
- export { default as Search } from "./components/Search/Search";
18
- export { default as Modal } from "./components/Modal/Modal";
19
- export { default as Accordian } from "./components/Accordian/Accordian";
20
- export { default as Tabs } from "./components/Tabs/Tabs";
1
+ import React, { ReactNode } from 'react';
2
+
3
+ declare enum CircularProgressVariant {
4
+ Determinate = "determinate",
5
+ Indeterminate = "indeterminate"
6
+ }
7
+ declare enum CircularProgressColor {
8
+ PRIMARY = "primary",
9
+ SECONDARY = "secondary",
10
+ ERROR = "error",
11
+ SUCCESS = "success",
12
+ INFO = "info",
13
+ WARNING = "warning",
14
+ WHITE = "white",
15
+ BLACK = "black"
16
+ }
17
+ declare enum ButtonCategory {
18
+ FILLED = "filled",
19
+ OUTLINED = "outlined",
20
+ TEXT = "text"
21
+ }
22
+ declare enum MediaType {
23
+ Image = "image",
24
+ Video = "video"
25
+ }
26
+ declare enum ToastStatus {
27
+ ERROR = "error",
28
+ SUCCESS = "success",
29
+ WARNING = "warning"
30
+ }
31
+
32
+ type ButtonProps = {
33
+ label: React.ReactNode;
34
+ onClick?: () => void;
35
+ category?: ButtonCategory;
36
+ loading?: boolean;
37
+ disabled?: boolean;
38
+ width?: string;
39
+ height?: string;
40
+ borderRadius?: string;
41
+ className?: string;
42
+ loaderThickness?: number;
43
+ loaderColor?: CircularProgressColor;
44
+ loaderSize?: number;
45
+ };
46
+ declare const Button: React.FC<ButtonProps>;
47
+
48
+ interface AvatarProps {
49
+ src: string;
50
+ alt: string;
51
+ imgClassName: string;
52
+ handleClick?: () => void;
53
+ }
54
+ declare const Avatar: React.FC<AvatarProps>;
55
+
56
+ interface BadgeProps {
57
+ content: string | number;
58
+ badgeClassName?: string;
59
+ handleClick?: () => void;
60
+ }
61
+ declare const Badge: React.FC<BadgeProps>;
62
+
63
+ interface BreadcrumbItem {
64
+ label: string;
65
+ handleClick?: () => void;
66
+ }
67
+ interface BreadcrumbProps {
68
+ items: BreadcrumbItem[];
69
+ breadcrumbClassName: string;
70
+ itemClassName?: string;
71
+ separator?: string;
72
+ separatorClassName?: string;
73
+ }
74
+ declare const Breadcrumb: React.FC<BreadcrumbProps>;
75
+
76
+ interface CustomCheckboxProps {
77
+ label?: React.ReactNode;
78
+ checked?: boolean;
79
+ onChange?: React.ChangeEventHandler<HTMLInputElement>;
80
+ className?: string;
81
+ checkboxClassName?: string;
82
+ labelClassName?: string;
83
+ }
84
+ declare const CustomCheckbox: React.FC<CustomCheckboxProps>;
85
+
86
+ interface CircularProgressProps {
87
+ value?: number;
88
+ variant?: CircularProgressVariant;
89
+ color?: CircularProgressColor;
90
+ thickness?: number;
91
+ size?: number | string;
92
+ }
93
+ declare const CircularProgress: React.FC<CircularProgressProps>;
94
+
95
+ interface CustomDividerProps {
96
+ orientation?: string;
97
+ className?: string;
98
+ dividerClassName?: string;
99
+ }
100
+ declare const CustomDivider: React.FC<CustomDividerProps>;
101
+
102
+ interface LinkProps {
103
+ href: string;
104
+ target?: string;
105
+ rel?: string;
106
+ className?: string;
107
+ children?: React.ReactNode;
108
+ }
109
+ declare const Link: React.FC<LinkProps>;
110
+
111
+ interface ProgressProps {
112
+ value: number;
113
+ max: number;
114
+ className?: string;
115
+ barContainerClassName?: string;
116
+ barClassName?: string;
117
+ labelClassName?: string;
118
+ label?: string;
119
+ }
120
+ declare const Progress: React.FC<ProgressProps>;
121
+
122
+ interface RadioButtonProps {
123
+ name: string;
124
+ value: string;
125
+ checked?: boolean;
126
+ onChange?: React.ChangeEventHandler<HTMLInputElement>;
127
+ className?: string;
128
+ inputClassName?: string;
129
+ labelClassName?: string;
130
+ id?: string;
131
+ [key: string]: any;
132
+ }
133
+ declare const CustomRadioButton: React.FC<RadioButtonProps>;
134
+
135
+ interface CustomInputFieldProps {
136
+ label?: string;
137
+ value?: string;
138
+ type?: string;
139
+ placeholder?: string;
140
+ onChange?: React.ChangeEventHandler<HTMLInputElement>;
141
+ className?: string;
142
+ inputClassName?: string;
143
+ labelClassName?: string;
144
+ error?: string;
145
+ errorClassName?: string;
146
+ id?: string;
147
+ maxLength?: number;
148
+ minLength?: number;
149
+ checkValidation?: () => void;
150
+ }
151
+ declare const CustomInputField: React.FC<CustomInputFieldProps>;
152
+
153
+ interface PdfViewerProps {
154
+ content: string;
155
+ contentType?: string;
156
+ buttonText?: string;
157
+ loadingText?: string;
158
+ errorText?: string;
159
+ cleanUpDelay?: number;
160
+ buttonVariant?: "text" | "outlined" | "contained";
161
+ buttonColor?: "inherit" | "primary" | "secondary" | "error" | "info" | "success" | "warning";
162
+ buttonSize?: "small" | "medium" | "large";
163
+ showLoadingSpinner?: boolean;
164
+ spinnerSize?: number;
165
+ spinnerColor?: "inherit" | "primary" | "secondary";
166
+ className?: string;
167
+ }
168
+ declare const PdfView: React.FC<PdfViewerProps>;
169
+
170
+ interface GetDirectionActionProps {
171
+ title: string;
172
+ titleClasses?: string;
173
+ location: string;
174
+ locationClasses?: string;
175
+ hours: string;
176
+ hoursClasses?: string;
177
+ directionsLink: string;
178
+ buttonName?: string;
179
+ }
180
+ declare const GetDirectionAction: React.FC<GetDirectionActionProps>;
181
+
182
+ interface MapComponentProps {
183
+ containerClassName?: string;
184
+ zoom?: number;
185
+ mapOptions?: google.maps.MapOptions;
186
+ radius?: number;
187
+ googleMapsUrls: string[];
188
+ buttonText: string;
189
+ buttonClassName: string;
190
+ }
191
+ declare const MapComponent: React.FC<MapComponentProps>;
192
+
193
+ interface OTPInputProps {
194
+ length?: number;
195
+ onChange: (otp: string) => void;
196
+ autoFocus?: boolean;
197
+ onResend: () => void;
198
+ resendDelay?: number;
199
+ error?: boolean;
200
+ errorText?: string;
201
+ resendText: string;
202
+ }
203
+ declare const OTPInput: React.FC<OTPInputProps>;
204
+
205
+ interface TypographyProps {
206
+ variant?: 'H1' | 'H2' | 'H3' | 'H4' | 'H5' | 'H6' | 'H7' | 'H8' | 'B1' | 'B2' | 'B3' | 'B4' | 'L1' | 'L2' | 'L3';
207
+ weight?: 'BOLD' | 'SEMI_BOLD' | 'MEDIUM';
208
+ children: React.ReactNode;
209
+ className?: string;
210
+ }
211
+ declare const Typography: React.FC<TypographyProps>;
212
+
213
+ interface Suggestion {
214
+ id: string;
215
+ title: string;
216
+ faqAnswer: string;
217
+ faqQuestion: string;
218
+ fieldFaqCategory: string;
219
+ isBookmarked: boolean;
220
+ images: string[];
221
+ videos: string[];
222
+ }
223
+ interface CustomSearchFieldProps {
224
+ searchIcon: React.ReactNode;
225
+ crossIcon: React.ReactNode;
226
+ disabled?: boolean;
227
+ onSearch: (query: string) => void;
228
+ onSelectSuggestion: (selectedSuggestion: Suggestion | null) => void;
229
+ suggestions: Suggestion[] | null | undefined;
230
+ placeholder: string;
231
+ className?: string;
232
+ onSearchIconClick?: () => void;
233
+ onHandleClear?: () => void;
234
+ isWhiteBackgound?: boolean;
235
+ }
236
+ declare const Search: React.FC<CustomSearchFieldProps>;
237
+
238
+ interface ModalProps {
239
+ isOpen: boolean;
240
+ onClose: () => void;
241
+ title?: React.ReactNode;
242
+ children: React.ReactNode;
243
+ crossIcon: React.ReactNode;
244
+ className?: string;
245
+ }
246
+ declare const Modal: React.FC<ModalProps>;
247
+
248
+ type AccordionProps = {
249
+ icon?: React.ReactNode;
250
+ title: React.ReactNode;
251
+ description?: React.ReactNode;
252
+ children?: React.ReactNode;
253
+ border?: boolean;
254
+ upArrowIcon: React.ReactNode;
255
+ downArrowIcon: React.ReactNode;
256
+ openByDefault?: boolean;
257
+ borderBottom?: boolean;
258
+ };
259
+ declare const Accordion: React.FC<AccordionProps>;
260
+
261
+ type Tab = {
262
+ name: string;
263
+ value: string;
264
+ };
265
+ interface TabsProps {
266
+ tabs: Tab[];
267
+ onTabChange: (selectedTab: Tab) => void;
268
+ selectedTabValue?: string;
269
+ }
270
+ declare const Tabs: React.FC<TabsProps>;
271
+
272
+ type value = {
273
+ name: string;
274
+ value: string;
275
+ };
276
+ declare function Dropdown(props: {
277
+ placeholder: string;
278
+ getSelectedValue: (value: value) => void;
279
+ dropdownList: value[];
280
+ arrowUp: React.ReactNode;
281
+ arrowDown: React.ReactNode;
282
+ value?: value;
283
+ }): React.JSX.Element;
284
+
285
+ declare function TextArea(props: {
286
+ value?: string;
287
+ onChange: (event: {
288
+ target: {
289
+ value: string;
290
+ };
291
+ }) => void;
292
+ requiredLimit: string;
293
+ placeholder: string;
294
+ charText: string;
295
+ }): React.JSX.Element;
296
+
297
+ interface DrawerProps {
298
+ openSideDrawer: boolean;
299
+ closeSideDrawer: () => void;
300
+ width: string;
301
+ component: React.ReactNode;
302
+ anchor?: "left" | "right" | "top" | "bottom";
303
+ variant?: "temporary" | "persistent" | "permanent";
304
+ }
305
+ declare const Drawer: React.FC<DrawerProps>;
306
+
307
+ type ToggleSwitchProps = {
308
+ initialState?: boolean;
309
+ onToggle?: (state: boolean) => void;
310
+ };
311
+ declare const ToggleSwitch: React.FC<ToggleSwitchProps>;
312
+
313
+ interface SwipeActionWrapperProps {
314
+ children: ReactNode;
315
+ onPin?: () => void;
316
+ onRead?: () => void;
317
+ onDelete?: () => void;
318
+ pinIcon: React.ReactNode;
319
+ readIcon: React.ReactNode;
320
+ deleteIcon: React.ReactNode;
321
+ swipeThreshold?: number;
322
+ }
323
+ declare const HoverOptionsWrapper: React.FC<SwipeActionWrapperProps>;
324
+
325
+ interface MenuInterface {
326
+ openMenu: boolean;
327
+ closeMenu: () => void;
328
+ component: React.ReactNode;
329
+ menuStyles: string;
330
+ }
331
+ declare const Menu: (props: MenuInterface) => React.JSX.Element;
332
+
333
+ interface ToastProps {
334
+ icon?: React.ReactNode;
335
+ text: string;
336
+ onAction?: () => void;
337
+ onActionText?: string;
338
+ onHide?: () => void;
339
+ type: ToastStatus;
340
+ className?: string;
341
+ duration: number;
342
+ showCrossIcon?: boolean;
343
+ crossIcon?: React.ReactNode;
344
+ }
345
+ declare const Toast: React.FC<ToastProps>;
346
+
347
+ interface rangeSlider {
348
+ sliderLimit: number;
349
+ minRange: number;
350
+ maxRange: number;
351
+ text1: string;
352
+ text2: string;
353
+ }
354
+ declare const RangeSlider: (props: rangeSlider) => React.JSX.Element;
355
+
356
+ interface CarouselProps {
357
+ items: CarouselItems[];
358
+ }
359
+ interface CarouselItems {
360
+ src: string;
361
+ type: MediaType;
362
+ alt: string;
363
+ extension: string;
364
+ }
365
+ declare const Carousel: React.FC<CarouselProps>;
366
+
367
+ export { Accordion as Accordian, Avatar, Badge, Breadcrumb as BreadCrumb, Button, Carousel, CustomCheckbox as Checkbox, CircularProgress, GetDirectionAction as Directions, CustomDivider as Divider, Drawer, Dropdown, MapComponent as GoogleMap, HoverOptionsWrapper, CustomInputField as InputTextField, Link, MediaType, Menu, Modal, OTPInput as OtpInput, Progress, CustomRadioButton as RadioButton, RangeSlider, Search, Tabs, TextArea, Toast, ToastStatus, ToggleSwitch, Typography, PdfView as default };