@dreamtree-org/twreact-ui 1.1.62 → 1.1.64

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 (66) hide show
  1. package/dist/components/core/Accordion.d.ts +3 -15
  2. package/dist/components/core/Accordion.d.ts.map +1 -1
  3. package/dist/components/core/ColorPicker.d.ts +3 -1
  4. package/dist/components/core/ColorPicker.d.ts.map +1 -1
  5. package/dist/components/core/DateRangePicker.d.ts +2 -19
  6. package/dist/components/core/DateRangePicker.d.ts.map +1 -1
  7. package/dist/components/core/Form.d.ts +2 -14
  8. package/dist/components/core/Form.d.ts.map +1 -1
  9. package/dist/components/core/Loader.d.ts.map +1 -1
  10. package/dist/components/core/LocationPicker.d.ts +3 -9
  11. package/dist/components/core/LocationPicker.d.ts.map +1 -1
  12. package/dist/components/core/PriceRangePicker.d.ts +3 -22
  13. package/dist/components/core/PriceRangePicker.d.ts.map +1 -1
  14. package/dist/components/core/ProgressBar.d.ts +3 -16
  15. package/dist/components/core/ProgressBar.d.ts.map +1 -1
  16. package/dist/components/core/Rate.d.ts +3 -17
  17. package/dist/components/core/Rate.d.ts.map +1 -1
  18. package/dist/components/core/RoundedTag.d.ts +3 -15
  19. package/dist/components/core/RoundedTag.d.ts.map +1 -1
  20. package/dist/components/core/Skeleton.d.ts +3 -14
  21. package/dist/components/core/Skeleton.d.ts.map +1 -1
  22. package/dist/components/core/Switch.d.ts +3 -1
  23. package/dist/components/core/Switch.d.ts.map +1 -1
  24. package/dist/components/core/Table/Table.d.ts +2 -1
  25. package/dist/components/core/Table/Table.d.ts.map +1 -1
  26. package/dist/components/core/Tabs.d.ts +3 -18
  27. package/dist/components/core/Tabs.d.ts.map +1 -1
  28. package/dist/components/core/ThreeDotPopover.d.ts +3 -9
  29. package/dist/components/core/ThreeDotPopover.d.ts.map +1 -1
  30. package/dist/components/core/Tooltip.d.ts +3 -18
  31. package/dist/components/core/Tooltip.d.ts.map +1 -1
  32. package/dist/components/feedback/Alert.d.ts +2 -9
  33. package/dist/components/feedback/Alert.d.ts.map +1 -1
  34. package/dist/components/feedback/Dialog.d.ts +1 -30
  35. package/dist/components/feedback/Dialog.d.ts.map +1 -1
  36. package/dist/components/feedback/Toast.d.ts +1 -10
  37. package/dist/components/feedback/Toast.d.ts.map +1 -1
  38. package/dist/components/navigation/Breadcrumbs.d.ts +2 -9
  39. package/dist/components/navigation/Breadcrumbs.d.ts.map +1 -1
  40. package/dist/components/navigation/FootNav.d.ts +2 -5
  41. package/dist/components/navigation/FootNav.d.ts.map +1 -1
  42. package/dist/components/navigation/Navbar.d.ts +2 -29
  43. package/dist/components/navigation/Navbar.d.ts.map +1 -1
  44. package/dist/components/navigation/Sidebar.d.ts +2 -15
  45. package/dist/components/navigation/Sidebar.d.ts.map +1 -1
  46. package/dist/components/utility/Avatar.d.ts +2 -10
  47. package/dist/components/utility/Avatar.d.ts.map +1 -1
  48. package/dist/components/utility/Badge.d.ts +2 -8
  49. package/dist/components/utility/Badge.d.ts.map +1 -1
  50. package/dist/components/utility/Card.d.ts +2 -38
  51. package/dist/components/utility/Card.d.ts.map +1 -1
  52. package/dist/components/utility/Carousel.d.ts +2 -1
  53. package/dist/components/utility/Carousel.d.ts.map +1 -1
  54. package/dist/components/utility/FileUpload.d.ts +2 -11
  55. package/dist/components/utility/FileUpload.d.ts.map +1 -1
  56. package/dist/components/utility/Pagination.d.ts +2 -10
  57. package/dist/components/utility/Pagination.d.ts.map +1 -1
  58. package/dist/components/utility/Stepper.d.ts +2 -9
  59. package/dist/components/utility/Stepper.d.ts.map +1 -1
  60. package/dist/index.css +1 -1
  61. package/dist/index.esm.css +1 -1
  62. package/dist/index.esm.js +367 -233
  63. package/dist/index.js +367 -233
  64. package/dist/utils/emitter.d.ts.map +1 -1
  65. package/mcp/catalog.snapshot.json +36 -12
  66. package/package.json +1 -1
@@ -1,21 +1,9 @@
1
+ export default Accordion;
1
2
  /**
2
3
  * item.leftIcon may be:
3
4
  * - ReactNode (e.g. <svg/>)
4
5
  * - (index: number, item: any) => ReactNode
5
6
  */
6
- export default function Accordion({ items, allowMultiple, defaultOpenIndexes, onChange, className, headerClassName, contentClassName, chevronPosition, chevronIcon, bordered, rounded, size, transitionDuration, }: {
7
- items?: never[] | undefined;
8
- allowMultiple?: boolean | undefined;
9
- defaultOpenIndexes?: never[] | undefined;
10
- onChange: any;
11
- className?: string | undefined;
12
- headerClassName?: string | undefined;
13
- contentClassName?: string | undefined;
14
- chevronPosition?: string | undefined;
15
- chevronIcon?: null | undefined;
16
- bordered?: boolean | undefined;
17
- rounded?: string | undefined;
18
- size?: string | undefined;
19
- transitionDuration?: number | undefined;
20
- }): import("react/jsx-runtime").JSX.Element;
7
+ declare const Accordion: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
8
+ import React from "react";
21
9
  //# sourceMappingURL=Accordion.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../src/components/core/Accordion.jsx"],"names":[],"mappings":"AAEA;;;;GAIG;AAEH;;;;;;;;;;;;;;4CAyOC"}
1
+ {"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../src/components/core/Accordion.jsx"],"names":[],"mappings":";AAGA;;;;GAIG;AAEH,mFA2OG;kBApP6D,OAAO"}
@@ -1,2 +1,4 @@
1
- export default function ColorPicker(props: any): import("react/jsx-runtime").JSX.Element;
1
+ export default ColorPicker;
2
+ declare const ColorPicker: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
2
4
  //# sourceMappingURL=ColorPicker.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ColorPicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/ColorPicker.jsx"],"names":[],"mappings":"AAoJA,yFAsJC"}
1
+ {"version":3,"file":"ColorPicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/ColorPicker.jsx"],"names":[],"mappings":";AAqJA,qFA6JG;kBAlT6D,OAAO"}
@@ -1,21 +1,4 @@
1
1
  export default DateRangePicker;
2
- declare function DateRangePicker({ value, onChange, placeholder, label, error, disabled, required, minDate, maxDate, className, weekStartsOn, portal, displayFormat, locale, showClear, closeOnSelect, ...props }: {
3
- [x: string]: any;
4
- value: any;
5
- onChange: any;
6
- placeholder?: string | undefined;
7
- label: any;
8
- error: any;
9
- disabled: any;
10
- required: any;
11
- minDate: any;
12
- maxDate: any;
13
- className: any;
14
- weekStartsOn?: number | undefined;
15
- portal?: boolean | undefined;
16
- displayFormat?: string | undefined;
17
- locale?: undefined;
18
- showClear?: boolean | undefined;
19
- closeOnSelect?: boolean | undefined;
20
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const DateRangePicker: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
21
4
  //# sourceMappingURL=DateRangePicker.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DateRangePicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/DateRangePicker.jsx"],"names":[],"mappings":";AA+CA;;;;;;;;;;;;;;;;;;4CAqcC"}
1
+ {"version":3,"file":"DateRangePicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/DateRangePicker.jsx"],"names":[],"mappings":";AAgDA,yFAwcG;kBAjfI,OAAO"}
@@ -1,16 +1,4 @@
1
1
  export default Form;
2
- declare function Form({ fields, onSubmit, defaultValues, validationSchema, className, submitText, resetText, submitButtonClass, resetButtonClass, showReset, submitDisabled, ...props }: {
3
- [x: string]: any;
4
- fields?: never[] | undefined;
5
- onSubmit: any;
6
- defaultValues?: {} | undefined;
7
- validationSchema: any;
8
- className: any;
9
- submitText?: string | undefined;
10
- resetText?: string | undefined;
11
- submitButtonClass: any;
12
- resetButtonClass: any;
13
- showReset?: boolean | undefined;
14
- submitDisabled?: boolean | undefined;
15
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const Form: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
16
4
  //# sourceMappingURL=Form.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/components/core/Form.jsx"],"names":[],"mappings":";AASA;;;;;;;;;;;;;4CAqbC"}
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/components/core/Form.jsx"],"names":[],"mappings":";AASA,8EAybG;kBAlcsD,OAAO"}
@@ -1 +1 @@
1
- {"version":3,"file":"Loader.d.ts","sourceRoot":"","sources":["../../../src/components/core/Loader.jsx"],"names":[],"mappings":";AAkBA,gFAwIG;kBAzJ+B,OAAO"}
1
+ {"version":3,"file":"Loader.d.ts","sourceRoot":"","sources":["../../../src/components/core/Loader.jsx"],"names":[],"mappings":";AAmBA,gFA8IG;kBAhK+B,OAAO"}
@@ -1,10 +1,4 @@
1
- export default function LocationPicker({ value, onChange, inputProps, icon, iconProps, iconPosition, placeholder, }: {
2
- value?: null | undefined;
3
- onChange: any;
4
- inputProps?: {} | undefined;
5
- icon?: null | undefined;
6
- iconProps?: {} | undefined;
7
- iconPosition?: string | undefined;
8
- placeholder?: string | undefined;
9
- }): import("react/jsx-runtime").JSX.Element;
1
+ export default LocationPicker;
2
+ declare const LocationPicker: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
10
4
  //# sourceMappingURL=LocationPicker.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LocationPicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/LocationPicker.jsx"],"names":[],"mappings":"AAGA;;;;;;;;4CA0JC"}
1
+ {"version":3,"file":"LocationPicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/LocationPicker.jsx"],"names":[],"mappings":";AAIA,wFAmKG;kBAtKkE,OAAO"}
@@ -1,3 +1,4 @@
1
+ export default PriceRangePicker;
1
2
  /**
2
3
  * PriceRangeSlider - UI library component (Tailwind)
3
4
  *
@@ -27,26 +28,6 @@
27
28
  * Accessibility
28
29
  * - Inputs are labelled and thumbs are keyboard-focusable
29
30
  */
30
- export default function PriceRangePicker({ min, max, step, minGap, value, defaultValue, onChange, onFinalChange, showInputs, showTooltips, disabled, presets, formatValue, className, size, colorClass, ariaLabel, }: {
31
- min?: number | undefined;
32
- max?: number | undefined;
33
- step?: number | undefined;
34
- minGap?: number | undefined;
35
- value?: null | undefined;
36
- defaultValue?: {
37
- min: number;
38
- max: number;
39
- } | undefined;
40
- onChange?: (() => void) | undefined;
41
- onFinalChange?: (() => void) | undefined;
42
- showInputs?: boolean | undefined;
43
- showTooltips?: boolean | undefined;
44
- disabled?: boolean | undefined;
45
- presets?: never[] | undefined;
46
- formatValue?: ((n: any) => string) | undefined;
47
- className?: string | undefined;
48
- size?: string | undefined;
49
- colorClass?: string | undefined;
50
- ariaLabel?: string | undefined;
51
- }): import("react/jsx-runtime").JSX.Element;
31
+ declare const PriceRangePicker: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
32
+ import React from "react";
52
33
  //# sourceMappingURL=PriceRangePicker.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PriceRangePicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/PriceRangePicker.jsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH;;;;;;;;;;;;;;;;;;;;;4CAsTC"}
1
+ {"version":3,"file":"PriceRangePicker.d.ts","sourceRoot":"","sources":["../../../src/components/core/PriceRangePicker.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH,0FA8TG;kBA/VqE,OAAO"}
@@ -1,17 +1,4 @@
1
- export default function ProgressBar({ value, max, size, showValue, rounded, color, bgColor, valueColor, striped, animated, label, ariaLabel, className, style, }: {
2
- value?: number | undefined;
3
- max?: number | undefined;
4
- size?: string | undefined;
5
- showValue?: boolean | undefined;
6
- rounded?: boolean | undefined;
7
- color?: string | undefined;
8
- bgColor?: string | undefined;
9
- valueColor?: undefined;
10
- striped?: boolean | undefined;
11
- animated?: boolean | undefined;
12
- label?: string | undefined;
13
- ariaLabel?: string | undefined;
14
- className?: string | undefined;
15
- style?: {} | undefined;
16
- }): import("react/jsx-runtime").JSX.Element;
1
+ export default ProgressBar;
2
+ declare const ProgressBar: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
17
4
  //# sourceMappingURL=ProgressBar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ProgressBar.d.ts","sourceRoot":"","sources":["../../../src/components/core/ProgressBar.jsx"],"names":[],"mappings":"AA8CA;;;;;;;;;;;;;;;4CA0FC"}
1
+ {"version":3,"file":"ProgressBar.d.ts","sourceRoot":"","sources":["../../../src/components/core/ProgressBar.jsx"],"names":[],"mappings":";AA+CA,qFA8FG;kBA7I+B,OAAO"}
@@ -1,18 +1,4 @@
1
- export default function Rate({ count, value, defaultValue, readOnly, icon, toggledIcon, activeColor, inactiveColor, size, onChange, onClick, text, className, id, name, }: {
2
- count?: number | undefined;
3
- value: any;
4
- defaultValue?: number | undefined;
5
- readOnly?: boolean | undefined;
6
- icon: any;
7
- toggledIcon: any;
8
- activeColor?: string | undefined;
9
- inactiveColor?: string | undefined;
10
- size?: number | undefined;
11
- onChange: any;
12
- onClick: any;
13
- text: any;
14
- className?: string | undefined;
15
- id: any;
16
- name: any;
17
- }): import("react/jsx-runtime").JSX.Element;
1
+ export default Rate;
2
+ declare const Rate: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
18
4
  //# sourceMappingURL=Rate.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Rate.d.ts","sourceRoot":"","sources":["../../../src/components/core/Rate.jsx"],"names":[],"mappings":"AAyCA;;;;;;;;;;;;;;;;4CA+IC"}
1
+ {"version":3,"file":"Rate.d.ts","sourceRoot":"","sources":["../../../src/components/core/Rate.jsx"],"names":[],"mappings":";AA0CA,8EAqJG;kBA9LyC,OAAO"}
@@ -1,16 +1,4 @@
1
- export default function RoundedTag({ label, avatarSrc, avatarAlt, initials, size, onRemove, onClick, className, closeClass, ariaLabel, avatarPosition, avatarClassname, initialClassname, }: {
2
- label: any;
3
- avatarSrc?: null | undefined;
4
- avatarAlt?: string | undefined;
5
- initials?: string | undefined;
6
- size?: string | undefined;
7
- onRemove?: null | undefined;
8
- onClick?: null | undefined;
9
- className?: string | undefined;
10
- closeClass?: string | undefined;
11
- ariaLabel?: string | undefined;
12
- avatarPosition?: string | undefined;
13
- avatarClassname?: string | undefined;
14
- initialClassname?: string | undefined;
15
- }): import("react/jsx-runtime").JSX.Element;
1
+ export default RoundedTag;
2
+ declare const RoundedTag: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
16
4
  //# sourceMappingURL=RoundedTag.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"RoundedTag.d.ts","sourceRoot":"","sources":["../../../src/components/core/RoundedTag.jsx"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;4CA0HC"}
1
+ {"version":3,"file":"RoundedTag.d.ts","sourceRoot":"","sources":["../../../src/components/core/RoundedTag.jsx"],"names":[],"mappings":";AAGA,oFAoIG;kBAvI+B,OAAO"}
@@ -1,15 +1,4 @@
1
- export default function Skeleton({ count, circle, height, width, rounded, animated, active, gap, inline, className, children, style, }: {
2
- count?: number | undefined;
3
- circle?: boolean | undefined;
4
- height?: number | undefined;
5
- width: any;
6
- rounded?: boolean | undefined;
7
- animated?: boolean | undefined;
8
- active?: boolean | undefined;
9
- gap?: string | undefined;
10
- inline?: boolean | undefined;
11
- className?: string | undefined;
12
- children?: null | undefined;
13
- style?: {} | undefined;
14
- }): import("react/jsx-runtime").JSX.Element;
1
+ export default Skeleton;
2
+ declare const Skeleton: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
15
4
  //# sourceMappingURL=Skeleton.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/core/Skeleton.jsx"],"names":[],"mappings":"AAyBA;;;;;;;;;;;;;4CAkFC"}
1
+ {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/core/Skeleton.jsx"],"names":[],"mappings":";AA0BA,kFAwFG;kBAlH+B,OAAO"}
@@ -1,2 +1,4 @@
1
- export default function Switch(props: any): import("react/jsx-runtime").JSX.Element;
1
+ export default Switch;
2
+ declare const Switch: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from "react";
2
4
  //# sourceMappingURL=Switch.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../src/components/core/Switch.jsx"],"names":[],"mappings":"AAqBA,oFA4JC"}
1
+ {"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../src/components/core/Switch.jsx"],"names":[],"mappings":";AAsBA,gFA2JG;kBAjL4D,OAAO"}
@@ -1,5 +1,5 @@
1
1
  export default Table;
2
- declare function Table({ data: initialData, columns: initialColumns, sortable, filterable, selectable, pagination, pageSize, onSort, onFilter, onFetch, onFilterChange, onSelectionChange, onRowClick, hasDetails, DetailsComponent, className, withAction, onAction, actions, showSerial, cellClass, rowClass, globalSearch, limitOptions, showLimitSelector, onLimitChange, showReloadButton, renderReloadButton, onReload, stripedRows, theme, responsiveBreakpoint, serverSide, totalRecords, pageNumber, TheadComponent, TfootComponent, ...props }: {
2
+ declare function Table({ data: initialData, columns: initialColumns, sortable, filterable, selectable, pagination, pageSize, onSort, onFilter, onFetch, onFilterChange, onSelectionChange, onRowClick, hasDetails, DetailsComponent, className, withAction, onAction, actions, showSerial, cellClass, rowClass, globalSearch, limitOptions, showLimitSelector, onLimitChange, showReloadButton, renderReloadButton, onReload, stripedRows, theme, responsiveBreakpoint, serverSide, totalRecords, pageNumber, onPageChange, TheadComponent, TfootComponent, ...props }: {
3
3
  [x: string]: any;
4
4
  data?: any[] | undefined;
5
5
  columns?: any[] | undefined;
@@ -42,6 +42,7 @@ declare function Table({ data: initialData, columns: initialColumns, sortable, f
42
42
  serverSide?: boolean | undefined;
43
43
  totalRecords?: number | undefined;
44
44
  pageNumber: any;
45
+ onPageChange: any;
45
46
  TheadComponent?: null | undefined;
46
47
  TfootComponent?: null | undefined;
47
48
  }): import("react/jsx-runtime").JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../src/components/core/Table/Table.jsx"],"names":[],"mappings":";AAqCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA2vBC"}
1
+ {"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../../src/components/core/Table/Table.jsx"],"names":[],"mappings":";AAqCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAgwBC"}
@@ -1,21 +1,3 @@
1
- declare function Tabs({ children, defaultIndex, index: controlledIndex, onChange, orientation, size, variant, animated, className, }: {
2
- children: any;
3
- defaultIndex?: number | undefined;
4
- index: any;
5
- onChange: any;
6
- orientation?: string | undefined;
7
- size?: string | undefined;
8
- variant?: string | undefined;
9
- animated?: boolean | undefined;
10
- className?: string | undefined;
11
- }): import("react/jsx-runtime").JSX.Element;
12
- declare namespace Tabs {
13
- export { TabList as List };
14
- export { Tab };
15
- export { Panels };
16
- export { Panel };
17
- }
18
- export default Tabs;
19
1
  export function TabList({ children, className }: {
20
2
  children: any;
21
3
  className?: string | undefined;
@@ -39,4 +21,7 @@ export function Panel({ children, index, className, animated }: {
39
21
  className?: string | undefined;
40
22
  animated?: boolean | undefined;
41
23
  }): import("react/jsx-runtime").JSX.Element | null;
24
+ export default Tabs;
25
+ declare const Tabs: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
26
+ import React from "react";
42
27
  //# sourceMappingURL=Tabs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tabs.jsx"],"names":[],"mappings":"AA6CA;;;;;;;;;;4CA4CC;;;;;;;;AAGD;;;4CAuBC;AAGD;;;;;;;;4CAgHC;AAGD;;;4CAcC;AAED;;;;;mDAmCC"}
1
+ {"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tabs.jsx"],"names":[],"mappings":"AAsGA;;;4CAuBC;AAGD;;;;;;;;4CAoHC;AAGD;;;4CAcC;AAED;;;;;mDAmCC;;AA3PD,8EAkDG;kBA1FI,OAAO"}
@@ -1,3 +1,4 @@
1
+ export default ThreeDotPopoverSimple;
1
2
  /**
2
3
  * ThreeDotPopover (Simple)
3
4
  *
@@ -25,13 +26,6 @@
25
26
  * ];
26
27
  * <ThreeDotPopoverSimple items={items} />
27
28
  */
28
- export default function ThreeDotPopoverSimple({ items, trigger, className, menuClass, menuItemClass, closeOnSelect, ariaLabel, }: {
29
- items?: never[] | undefined;
30
- trigger?: null | undefined;
31
- className?: string | undefined;
32
- menuClass?: string | undefined;
33
- menuItemClass?: string | undefined;
34
- closeOnSelect?: boolean | undefined;
35
- ariaLabel?: string | undefined;
36
- }): import("react/jsx-runtime").JSX.Element;
29
+ declare const ThreeDotPopoverSimple: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
30
+ import React from "react";
37
31
  //# sourceMappingURL=ThreeDotPopover.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ThreeDotPopover.d.ts","sourceRoot":"","sources":["../../../src/components/core/ThreeDotPopover.jsx"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH;;;;;;;;4CAkHC"}
1
+ {"version":3,"file":"ThreeDotPopover.d.ts","sourceRoot":"","sources":["../../../src/components/core/ThreeDotPopover.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,+FAiIG;kBAhK4D,OAAO"}
@@ -1,3 +1,4 @@
1
+ export default Tooltip;
1
2
  /**
2
3
  * Tooltip props
3
4
  * - position: 'auto' | 'top' | 'bottom' | 'left' | 'right' (default 'auto')
@@ -15,22 +16,6 @@
15
16
  * - className: extra classes for tooltip box
16
17
  * - portal: boolean (default true) -> render to document.body
17
18
  */
18
- export default function Tooltip({ position, trigger, content, customTrigger, children, open: controlledOpen, defaultOpen, onChange, delay, offset, textClass, bgClass, className, portal, id: propsId, ...rest }: {
19
- [x: string]: any;
20
- position?: string | undefined;
21
- trigger?: string | undefined;
22
- content: any;
23
- customTrigger: any;
24
- children: any;
25
- open: any;
26
- defaultOpen?: boolean | undefined;
27
- onChange: any;
28
- delay?: number | undefined;
29
- offset?: number | undefined;
30
- textClass?: string | undefined;
31
- bgClass?: string | undefined;
32
- className?: string | undefined;
33
- portal?: boolean | undefined;
34
- id: any;
35
- }): import("react/jsx-runtime").JSX.Element;
19
+ declare const Tooltip: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
20
+ import React from "react";
36
21
  //# sourceMappingURL=Tooltip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tooltip.jsx"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;;;;GAgBG;AACH;;;;;;;;;;;;;;;;;4CAySC"}
1
+ {"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/core/Tooltip.jsx"],"names":[],"mappings":";AAWA;;;;;;;;;;;;;;;;GAgBG;AACH,iFA4TG;kBAjVI,OAAO"}
@@ -1,11 +1,4 @@
1
1
  export default Alert;
2
- declare function Alert({ variant, title, children, dismissible, onDismiss, className, ...props }: {
3
- [x: string]: any;
4
- variant?: string | undefined;
5
- title: any;
6
- children: any;
7
- dismissible?: boolean | undefined;
8
- onDismiss: any;
9
- className: any;
10
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const Alert: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from 'react';
11
4
  //# sourceMappingURL=Alert.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Alert.jsx"],"names":[],"mappings":";AAIA;;;;;;;;4CAuFC"}
1
+ {"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Alert.jsx"],"names":[],"mappings":";AAIA,+EAwFG;kBA5Fe,OAAO"}
@@ -1,33 +1,4 @@
1
1
  export default Dialog;
2
- declare function Dialog({ isOpen, onClose, title, children, size, dismissible, showCloseButton, footer, className, onOpen, ...props }: {
3
- [x: string]: any;
4
- isOpen: any;
5
- onClose: any;
6
- title: any;
7
- children: any;
8
- size?: string | undefined;
9
- dismissible?: boolean | undefined;
10
- showCloseButton?: boolean | undefined;
11
- footer: any;
12
- className: any;
13
- onOpen: any;
14
- }): React.ReactPortal | null;
15
- declare namespace Dialog {
16
- function Header({ children, className, ...props }: {
17
- [x: string]: any;
18
- children: any;
19
- className: any;
20
- }): import("react/jsx-runtime").JSX.Element;
21
- function Body({ children, className, ...props }: {
22
- [x: string]: any;
23
- children: any;
24
- className: any;
25
- }): import("react/jsx-runtime").JSX.Element;
26
- function Footer({ children, className, ...props }: {
27
- [x: string]: any;
28
- children: any;
29
- className: any;
30
- }): import("react/jsx-runtime").JSX.Element;
31
- }
2
+ declare const Dialog: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
32
3
  import React from 'react';
33
4
  //# sourceMappingURL=Dialog.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Dialog.jsx"],"names":[],"mappings":";AAwBA;;;;;;;;;;;;6BAqJC;;IAGD;;;;gDAIC;IAED;;;;gDAIC;IAED;;;;gDAIC;;kBAhMwC,OAAO"}
1
+ {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Dialog.jsx"],"names":[],"mappings":";AAmCA,gFAqJG;kBAxLsC,OAAO"}
@@ -1,14 +1,5 @@
1
1
  export default Toast;
2
- export function Toast({ id, title, message, type, duration, onClose, position, ...props }: {
3
- [x: string]: any;
4
- id: any;
5
- title: any;
6
- message: any;
7
- type?: string | undefined;
8
- duration?: number | undefined;
9
- onClose: any;
10
- position?: string | undefined;
11
- }): React.ReactPortal | null;
2
+ export const Toast: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
12
3
  export function ToastContainer({ toasts, position, onRemove }: {
13
4
  toasts?: never[] | undefined;
14
5
  position?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Toast.jsx"],"names":[],"mappings":";AAKA;;;;;;;;;6BAgFC;AAGD;;;;4CAaC;AAGD;;;;;;;;;EAoBC;kBA5H0C,OAAO"}
1
+ {"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../../../src/components/feedback/Toast.jsx"],"names":[],"mappings":";AAKA,8EAiFG;AAKH;;;;4CAaC;AAGD;;;;;;;;;EAoBC;kBA/H0C,OAAO"}
@@ -1,11 +1,4 @@
1
1
  export default Breadcrumbs;
2
- declare function Breadcrumbs({ items, separator, showHome, homeIcon, onHomeClick, className, ...props }: {
3
- [x: string]: any;
4
- items?: never[] | undefined;
5
- separator?: import("react/jsx-runtime").JSX.Element | undefined;
6
- showHome?: boolean | undefined;
7
- homeIcon?: import("react/jsx-runtime").JSX.Element | undefined;
8
- onHomeClick: any;
9
- className: any;
10
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const Breadcrumbs: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from 'react';
11
4
  //# sourceMappingURL=Breadcrumbs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Breadcrumbs.jsx"],"names":[],"mappings":";AAIA;;;;;;;;4CAmDC"}
1
+ {"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Breadcrumbs.jsx"],"names":[],"mappings":";AAIA,qFAoDG;kBAxDe,OAAO"}
@@ -1,7 +1,4 @@
1
1
  export default FootNav;
2
- declare function FootNav({ items, className, ...props }: {
3
- [x: string]: any;
4
- items?: never[] | undefined;
5
- className: any;
6
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const FootNav: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from 'react';
7
4
  //# sourceMappingURL=FootNav.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FootNav.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/FootNav.jsx"],"names":[],"mappings":";AAGA;;;;4CAsCC"}
1
+ {"version":3,"file":"FootNav.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/FootNav.jsx"],"names":[],"mappings":";AAGA,iFAuCG;kBA1Ce,OAAO"}
@@ -1,31 +1,4 @@
1
- export function Navbar({ emitter, logo, items, user, notifications, searchable, onSearch, leftIcon, rightMenuContent: RightMenuContentProp, onLeftIconClick, onLoginClick, onLogoutClick, className, ...props }: {
2
- [x: string]: any;
3
- emitter: any;
4
- logo: any;
5
- items?: never[] | undefined;
6
- user: any;
7
- notifications?: never[] | undefined;
8
- searchable?: boolean | undefined;
9
- onSearch: any;
10
- leftIcon?: import("react/jsx-runtime").JSX.Element | undefined;
11
- rightMenuContent: any;
12
- onLeftIconClick: any;
13
- onLoginClick?: (() => void) | undefined;
14
- onLogoutClick?: (() => void) | undefined;
15
- className: any;
16
- }): import("react/jsx-runtime").JSX.Element;
17
- export namespace Navbar {
18
- let displayName: string;
19
- namespace propTypes {
20
- let emitter: PropTypes.Validator<object>;
21
- let logo: PropTypes.Requireable<PropTypes.ReactNodeLike>;
22
- let items: PropTypes.Validator<any[]>;
23
- let user: PropTypes.Requireable<object>;
24
- let notifications: PropTypes.Requireable<any[]>;
25
- let searchable: PropTypes.Requireable<boolean>;
26
- let onSearch: PropTypes.Requireable<(...args: any[]) => any>;
27
- }
28
- }
1
+ export const Navbar: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
29
2
  export default Navbar;
30
- import PropTypes from "prop-types";
3
+ import React from "react";
31
4
  //# sourceMappingURL=Navbar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Navbar.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Navbar.jsx"],"names":[],"mappings":"AAuLO;;;;;;;;;;;;;;;4CA4PN;;;;;;;;;;;;;;sBAtaqB,YAAY"}
1
+ {"version":3,"file":"Navbar.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Navbar.jsx"],"names":[],"mappings":"AAuLA,+EAqQG;;kBA3b6D,OAAO"}
@@ -11,19 +11,6 @@ export default Sidebar;
11
11
  * - isMobileOpen, setIsMobileOpen
12
12
  * - showCollapsedTooltips: boolean (default true)
13
13
  */
14
- declare function Sidebar({ items, collapsed, onToggle, className, logo, user, onUserClick, drawerPosition, isMobileOpen, setIsMobileOpen, showCollapsedTooltips, tooltipOptions, ...props }: {
15
- [x: string]: any;
16
- items?: never[] | undefined;
17
- collapsed?: boolean | undefined;
18
- onToggle: any;
19
- className: any;
20
- logo: any;
21
- user: any;
22
- onUserClick: any;
23
- drawerPosition?: string | undefined;
24
- isMobileOpen?: boolean | undefined;
25
- setIsMobileOpen: any;
26
- showCollapsedTooltips?: boolean | undefined;
27
- tooltipOptions: any;
28
- }): import("react/jsx-runtime").JSX.Element;
14
+ declare const Sidebar: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
15
+ import React from "react";
29
16
  //# sourceMappingURL=Sidebar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Sidebar.jsx"],"names":[],"mappings":";AA8BA;;;;;;;;;;;GAWG;AACH;;;;;;;;;;;;;;4CA+TC"}
1
+ {"version":3,"file":"Sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/Sidebar.jsx"],"names":[],"mappings":";AA8BA;;;;;;;;;;;GAWG;AACH,iFA+TG;kBAxWwC,OAAO"}
@@ -1,12 +1,4 @@
1
1
  export default Avatar;
2
- declare function Avatar({ src, alt, name, size, shape, status, className, ...props }: {
3
- [x: string]: any;
4
- src: any;
5
- alt: any;
6
- name: any;
7
- size?: string | undefined;
8
- shape?: string | undefined;
9
- status: any;
10
- className: any;
11
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const Avatar: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from 'react';
12
4
  //# sourceMappingURL=Avatar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../src/components/utility/Avatar.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;4CA6GC"}
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../src/components/utility/Avatar.jsx"],"names":[],"mappings":";AAIA,gFA6GG;kBAjHe,OAAO"}
@@ -1,10 +1,4 @@
1
1
  export default Badge;
2
- declare function Badge({ children, variant, size, rounded, className, ...props }: {
3
- [x: string]: any;
4
- children: any;
5
- variant?: string | undefined;
6
- size?: string | undefined;
7
- rounded?: boolean | undefined;
8
- className: any;
9
- }): import("react/jsx-runtime").JSX.Element;
2
+ declare const Badge: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
3
+ import React from 'react';
10
4
  //# sourceMappingURL=Badge.d.ts.map