@evoke-platform/ui-components 1.8.1-dev.5 → 1.8.1-testing.1

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 (65) hide show
  1. package/dist/published/components/custom/BuilderGrid/BuilderGridToolbar.js +2 -3
  2. package/dist/published/stories/Accordion.stories.d.ts +4 -36
  3. package/dist/published/stories/Alert.stories.d.ts +4 -2
  4. package/dist/published/stories/AlertTitle.stories.d.ts +4 -2
  5. package/dist/published/stories/Appbar.stories.d.ts +3 -10
  6. package/dist/published/stories/Autocomplete.stories.d.ts +4 -22
  7. package/dist/published/stories/Avatar.stories.d.ts +3 -16
  8. package/dist/published/stories/Backdrop.stories.d.ts +4 -10
  9. package/dist/published/stories/Badge.stories.d.ts +4 -10
  10. package/dist/published/stories/Box.stories.d.ts +3 -2
  11. package/dist/published/stories/Breadcrumbs.stories.d.ts +4 -10
  12. package/dist/published/stories/BuilderGrid.stories.d.ts +5 -54
  13. package/dist/published/stories/Button.stories.d.ts +4 -10
  14. package/dist/published/stories/ButtonGroup.stories.d.ts +4 -10
  15. package/dist/published/stories/Card.stories.d.ts +4 -10
  16. package/dist/published/stories/Checkbox.stories.d.ts +4 -2
  17. package/dist/published/stories/Chip.stories.d.ts +4 -10
  18. package/dist/published/stories/CircularProgress.stories.d.ts +4 -2
  19. package/dist/published/stories/Collapse.stories.d.ts +4 -2
  20. package/dist/published/stories/Container.stories.d.ts +4 -10
  21. package/dist/published/stories/CriteriaBuilder.stories.d.ts +8 -6
  22. package/dist/published/stories/DataGrid.stories.d.ts +4 -40
  23. package/dist/published/stories/DatePicker.stories.d.ts +4 -7
  24. package/dist/published/stories/Dialog.stories.d.ts +4 -2
  25. package/dist/published/stories/Divider.stories.d.ts +4 -10
  26. package/dist/published/stories/Drawer.stories.d.ts +4 -2
  27. package/dist/published/stories/Form.stories.d.ts +5 -4
  28. package/dist/published/stories/FormControl.stories.d.ts +4 -10
  29. package/dist/published/stories/FormControlLabel.stories.d.ts +4 -2
  30. package/dist/published/stories/FormField.stories.d.ts +13 -11
  31. package/dist/published/stories/FormGroup.stories.d.ts +4 -2
  32. package/dist/published/stories/FormHelperText.stories.d.ts +4 -10
  33. package/dist/published/stories/FormLabel.stories.d.ts +4 -10
  34. package/dist/published/stories/FormRenderer.stories.d.ts +6 -69
  35. package/dist/published/stories/FormRendererContainer.stories.d.ts +6 -89
  36. package/dist/published/stories/Grid.stories.d.ts +4 -10
  37. package/dist/published/stories/HistoryLog.stories.d.ts +4 -2
  38. package/dist/published/stories/IconButton.stories.d.ts +4 -10
  39. package/dist/published/stories/LinearProgress.stories.d.ts +4 -2
  40. package/dist/published/stories/Link.stories.d.ts +4 -10
  41. package/dist/published/stories/List.stories.d.ts +4 -10
  42. package/dist/published/stories/Menu.stories.d.ts +4 -2
  43. package/dist/published/stories/MenuBar.stories.d.ts +4 -3
  44. package/dist/published/stories/MultiSelect.stories.d.ts +4 -3
  45. package/dist/published/stories/OverflowTextField.stories.d.ts +4 -2
  46. package/dist/published/stories/Palette.stories.d.ts +3 -2
  47. package/dist/published/stories/Paper.stories.d.ts +4 -10
  48. package/dist/published/stories/RadioGroup.stories.d.ts +4 -2
  49. package/dist/published/stories/RepeatableField.stories.d.ts +4 -3
  50. package/dist/published/stories/ResponsiveOverflow.stories.d.ts +4 -3
  51. package/dist/published/stories/RichTextViewer.stories.d.ts +4 -2
  52. package/dist/published/stories/Skeleton.stories.d.ts +4 -10
  53. package/dist/published/stories/Snackbar.stories.d.ts +3 -9
  54. package/dist/published/stories/Stack.stories.d.ts +4 -10
  55. package/dist/published/stories/StaticDatePicker.stories.d.ts +5 -10
  56. package/dist/published/stories/Stepper.stories.d.ts +6 -12
  57. package/dist/published/stories/Switch.stories.d.ts +4 -2
  58. package/dist/published/stories/Table.stories.d.ts +4 -10
  59. package/dist/published/stories/Tabs.stories.d.ts +4 -10
  60. package/dist/published/stories/TextField.stories.d.ts +8 -6
  61. package/dist/published/stories/TimePicker.stories.d.ts +7 -2
  62. package/dist/published/stories/TimePickerSelect.stories.d.ts +6 -4
  63. package/dist/published/stories/ToggleButton.stories.d.ts +4 -10
  64. package/dist/published/stories/Typography.stories.d.ts +4 -2
  65. package/package.json +16 -16
@@ -38,17 +38,16 @@ function BuilderGridToolbar(props) {
38
38
  return (React.createElement(UIThemeProvider, { args: { theme: theme } },
39
39
  React.createElement(GridToolbarContainer, { sx: { padding: '0' } },
40
40
  React.createElement(Grid, { container: true },
41
- React.createElement(Grid, { item: true, xs: 12, display: 'flex', alignItems: 'center', gap: 2, my: 1 },
41
+ React.createElement(Grid, { item: true, xs: 12, display: 'flex', alignItems: 'center', gap: 2 },
42
42
  React.createElement(Box, { display: 'flex', alignItems: 'center', gap: 2 },
43
43
  title && (React.createElement(Typography, { variant: "h5", sx: {
44
44
  fontSize: '18px',
45
45
  fontWeight: 700,
46
46
  marginBottom: '6px',
47
- width: 'max-content',
48
47
  }, title: title }, title)),
49
48
  !hideSearchbar && (React.createElement(GridToolbarQuickFilter, { variant: "outlined", size: "small", sx: styles.quickFilter }))),
50
49
  React.createElement(ToolbarActions, { actions: actions })),
51
- subtitle && (React.createElement(Grid, { item: true, xs: 12, mb: 1 },
50
+ subtitle && (React.createElement(Grid, { item: true, xs: 12, my: 1 },
52
51
  React.createElement(Typography, { variant: "subtitle2", sx: {
53
52
  color: theme?.palette?.text?.secondary ?? '#637381',
54
53
  }, title: subtitle }, subtitle))),
@@ -1,38 +1,6 @@
1
+ import { AccordionProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, {
3
- children: NonNullable<React.ReactNode>;
4
- classes?: Partial<import("@mui/material").AccordionClasses> | undefined;
5
- defaultExpanded?: boolean | undefined;
6
- disabled?: boolean | undefined;
7
- disableGutters?: boolean | undefined;
8
- expanded?: boolean | undefined;
9
- onChange?: ((event: React.SyntheticEvent<Element, Event>, expanded: boolean) => void) | undefined;
10
- sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
11
- TransitionComponent?: React.JSXElementConstructor<import("@mui/material/transitions").TransitionProps & {
12
- children?: React.ReactElement<any, any> | undefined;
13
- }> | undefined;
14
- TransitionProps?: import("@mui/material/transitions").TransitionProps | undefined;
15
- } & import("@mui/material").AccordionSlotsAndSlotProps & Omit<import("@mui/material").PaperOwnProps, "classes" | "onChange"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
16
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
17
- }, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "onChange" | "disabled" | "sx" | "variant" | "elevation" | "square" | "TransitionComponent" | "disableGutters" | "defaultExpanded" | "expanded" | "TransitionProps" | keyof import("@mui/material").AccordionSlotsAndSlotProps> & {
18
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
19
- }>;
4
+ declare const _default: ComponentMeta<(props: AccordionProps<"div", {}>) => React.JSX.Element>;
20
5
  export default _default;
21
- export declare const Accordion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, {
22
- children: NonNullable<React.ReactNode>;
23
- classes?: Partial<import("@mui/material").AccordionClasses> | undefined;
24
- defaultExpanded?: boolean | undefined;
25
- disabled?: boolean | undefined;
26
- disableGutters?: boolean | undefined;
27
- expanded?: boolean | undefined;
28
- onChange?: ((event: React.SyntheticEvent<Element, Event>, expanded: boolean) => void) | undefined;
29
- sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
30
- TransitionComponent?: React.JSXElementConstructor<import("@mui/material/transitions").TransitionProps & {
31
- children?: React.ReactElement<any, any> | undefined;
32
- }> | undefined;
33
- TransitionProps?: import("@mui/material/transitions").TransitionProps | undefined;
34
- } & import("@mui/material").AccordionSlotsAndSlotProps & Omit<import("@mui/material").PaperOwnProps, "classes" | "onChange"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
35
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
36
- }, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "onChange" | "disabled" | "sx" | "variant" | "elevation" | "square" | "TransitionComponent" | "disableGutters" | "defaultExpanded" | "expanded" | "TransitionProps" | keyof import("@mui/material").AccordionSlotsAndSlotProps> & {
37
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
38
- }>;
6
+ export declare const Accordion: ComponentStory<(props: AccordionProps<"div", {}>) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { AlertProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, AlertProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: AlertProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const Alert: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, AlertProps>;
6
+ export declare const Alert: ComponentStory<(props: AlertProps) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { AlertTitleProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, AlertTitleProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: AlertTitleProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const AlertTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, AlertTitleProps>;
6
+ export declare const AlertTitle: ComponentStory<(props: AlertTitleProps) => React.JSX.Element>;
@@ -1,12 +1,5 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AppBarOwnProps & Omit<import("@mui/material").PaperOwnProps, "color" | "classes" | "position"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
3
- ref?: ((instance: HTMLElement | null) => void) | React.RefObject<HTMLElement> | null | undefined;
4
- }, "color" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "position" | "elevation" | "square" | "enableColorOnDark"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
3
+ declare const _default: ComponentMeta<(props: import("@mui/material").AppBarProps<"header", {}>) => React.JSX.Element>;
7
4
  export default _default;
8
- export declare const AppBar: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AppBarOwnProps & Omit<import("@mui/material").PaperOwnProps, "color" | "classes" | "position"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
9
- ref?: ((instance: HTMLElement | null) => void) | React.RefObject<HTMLElement> | null | undefined;
10
- }, "color" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "position" | "elevation" | "square" | "enableColorOnDark"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
5
+ export declare const AppBar: ComponentStory<(props: import("@mui/material").AppBarProps<"header", {}>) => React.JSX.Element>;
@@ -1,24 +1,6 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AutocompleteProps<any, any, any, any, "div"> & {
3
- options: string[] | number[] | import("../index").AutocompleteOption[];
4
- sortBy?: "NONE" | "ASC" | "DESC" | undefined;
5
- label?: string | undefined;
6
- labelPlacement?: string | undefined;
7
- required?: boolean | undefined;
8
- instructionText?: React.ReactNode;
9
- error?: boolean | undefined;
10
- errorMessage?: string | undefined;
11
- tooltip?: string | undefined;
12
- }>;
3
+ import { AutocompleteProps } from '../components/core/Autocomplete/Autocomplete';
4
+ declare const _default: ComponentMeta<(props: AutocompleteProps) => React.JSX.Element>;
13
5
  export default _default;
14
- export declare const Autocomplete: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AutocompleteProps<any, any, any, any, "div"> & {
15
- options: string[] | number[] | import("../index").AutocompleteOption[];
16
- sortBy?: "NONE" | "ASC" | "DESC" | undefined;
17
- label?: string | undefined;
18
- labelPlacement?: string | undefined;
19
- required?: boolean | undefined;
20
- instructionText?: React.ReactNode;
21
- error?: boolean | undefined;
22
- errorMessage?: string | undefined;
23
- tooltip?: string | undefined;
24
- }>;
6
+ export declare const Autocomplete: ComponentStory<(props: AutocompleteProps) => React.JSX.Element>;
@@ -1,18 +1,5 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AvatarOwnProps & import("@mui/material").AvatarSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "slotProps" | "slots" | "alt" | "imgProps" | "sizes" | "src" | "srcSet"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- } & {
7
- isSelected?: boolean | undefined;
8
- backgroundColor?: string | undefined;
9
- }>;
3
+ declare const _default: ComponentMeta<(props: import("../components/core/Avatar/Avatar").CustomAvatarProps) => React.JSX.Element>;
10
4
  export default _default;
11
- export declare const Avatar: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").AvatarOwnProps & import("@mui/material").AvatarSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
12
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
13
- }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "slotProps" | "slots" | "alt" | "imgProps" | "sizes" | "src" | "srcSet"> & {
14
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
15
- } & {
16
- isSelected?: boolean | undefined;
17
- backgroundColor?: string | undefined;
18
- }>;
5
+ export declare const Avatar: ComponentStory<(props: import("../components/core/Avatar/Avatar").CustomAvatarProps) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { BackdropProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BackdropOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "components" | "color" | "className" | "style" | "classes" | "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "ref" | "transitionDuration" | "componentsProps" | "slotProps" | "slots" | "in" | "mountOnEnter" | "unmountOnExit" | "timeout" | "easing" | "addEndListener" | "onEnter" | "onEntering" | "onEntered" | "onExit" | "onExiting" | "onExited" | "appear" | "enter" | "exit" | "invisible" | "open" | "TransitionComponent"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: BackdropProps<"div", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Backdrop: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BackdropOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
10
- }, "components" | "color" | "className" | "style" | "classes" | "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "ref" | "transitionDuration" | "componentsProps" | "slotProps" | "slots" | "in" | "mountOnEnter" | "unmountOnExit" | "timeout" | "easing" | "addEndListener" | "onEnter" | "onEntering" | "onEntered" | "onExit" | "onExiting" | "onExited" | "appear" | "enter" | "exit" | "invisible" | "open" | "TransitionComponent"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Backdrop: ComponentStory<(props: BackdropProps<"div", {}>) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { BadgeProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BadgeOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
3
- ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
4
- }, "components" | "color" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "componentsProps" | "slotProps" | "slots" | "invisible" | "anchorOrigin" | "badgeContent" | "max" | "overlap" | "showZero"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: BadgeProps<"span", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Badge: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BadgeOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
9
- ref?: ((instance: HTMLSpanElement | null) => void) | React.RefObject<HTMLSpanElement> | null | undefined;
10
- }, "components" | "color" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "componentsProps" | "slotProps" | "slots" | "invisible" | "anchorOrigin" | "badgeContent" | "max" | "overlap" | "showZero"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Badge: ComponentStory<(props: BadgeProps<"span", {}>) => React.JSX.Element>;
@@ -1,5 +1,6 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
3
  import { BoxProps } from '../components/layout/Box/Box';
3
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, Omit<BoxProps, "ref"> & React.RefAttributes<unknown>>;
4
+ declare const _default: ComponentMeta<React.ForwardRefExoticComponent<Omit<BoxProps, "ref"> & React.RefAttributes<unknown>>>;
4
5
  export default _default;
5
- export declare const Box: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, Omit<BoxProps, "ref"> & React.RefAttributes<unknown>>;
6
+ export declare const Box: ComponentStory<React.ForwardRefExoticComponent<Omit<BoxProps, "ref"> & React.RefAttributes<unknown>>>;
@@ -1,12 +1,6 @@
1
+ import { BreadcrumbsProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BreadcrumbsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
3
- ref?: ((instance: HTMLElement | null) => void) | React.RefObject<HTMLElement> | null | undefined;
4
- }, "className" | "style" | "classes" | "children" | "sx" | "slotProps" | "slots" | "expandText" | "itemsAfterCollapse" | "itemsBeforeCollapse" | "maxItems" | "separator"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: BreadcrumbsProps<"nav", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Breadcrumbs: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").BreadcrumbsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
9
- ref?: ((instance: HTMLElement | null) => void) | React.RefObject<HTMLElement> | null | undefined;
10
- }, "className" | "style" | "classes" | "children" | "sx" | "slotProps" | "slots" | "expandText" | "itemsAfterCollapse" | "itemsBeforeCollapse" | "maxItems" | "separator"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Breadcrumbs: ComponentStory<(props: BreadcrumbsProps<"nav", {}>) => React.JSX.Element>;
@@ -1,56 +1,7 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, Omit<Partial<import("@mui/x-data-grid/internals").DataGridPropsWithDefaultValues> & import("@mui/x-data-grid/internals").DataGridPropsWithComplexDefaultValueBeforeProcessing & import("@mui/x-data-grid/internals").DataGridPropsWithoutDefaultValue<import("@mui/x-data-grid").GridValidRowModel>, import("@mui/x-data-grid/models/props/DataGridProps").DataGridForcedPropsKey> & {
3
- pagination?: true | undefined;
4
- } & {
5
- actions?: import("../components/custom/BuilderGrid/BuilderGrid").GridAction[] | undefined;
6
- item?: string | undefined;
7
- initialSort?: import("@mui/x-data-grid").GridSortItem | undefined;
8
- emptyContentSelectOptions?: import("../components/custom/BuilderGrid/EmptyContent").EmptyContentSelectOptions | undefined;
9
- emptyContentActionIndex?: number | undefined;
10
- title?: string | undefined;
11
- subtitle?: string | undefined;
12
- disablePagination?: boolean | undefined;
13
- hideEmptyContent?: boolean | undefined;
14
- hideToolbar?: boolean | undefined;
15
- hideSearchbar?: boolean | undefined;
16
- noRowsOverlay?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
17
- filterComponent?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
18
- error?: number | undefined;
19
- }>;
3
+ import { BuilderGridProps } from '../components/custom/BuilderGrid/BuilderGrid';
4
+ declare const _default: ComponentMeta<(<T extends import("@mui/x-data-grid").GridValidRowModel>(props: BuilderGridProps<T>) => React.JSX.Element)>;
20
5
  export default _default;
21
- export declare const Empty: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, Omit<Partial<import("@mui/x-data-grid/internals").DataGridPropsWithDefaultValues> & import("@mui/x-data-grid/internals").DataGridPropsWithComplexDefaultValueBeforeProcessing & import("@mui/x-data-grid/internals").DataGridPropsWithoutDefaultValue<import("@mui/x-data-grid").GridValidRowModel>, import("@mui/x-data-grid/models/props/DataGridProps").DataGridForcedPropsKey> & {
22
- pagination?: true | undefined;
23
- } & {
24
- actions?: import("../components/custom/BuilderGrid/BuilderGrid").GridAction[] | undefined;
25
- item?: string | undefined;
26
- initialSort?: import("@mui/x-data-grid").GridSortItem | undefined;
27
- emptyContentSelectOptions?: import("../components/custom/BuilderGrid/EmptyContent").EmptyContentSelectOptions | undefined;
28
- emptyContentActionIndex?: number | undefined;
29
- title?: string | undefined;
30
- subtitle?: string | undefined;
31
- disablePagination?: boolean | undefined;
32
- hideEmptyContent?: boolean | undefined;
33
- hideToolbar?: boolean | undefined;
34
- hideSearchbar?: boolean | undefined;
35
- noRowsOverlay?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
36
- filterComponent?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
37
- error?: number | undefined;
38
- }>;
39
- export declare const Rows: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, Omit<Partial<import("@mui/x-data-grid/internals").DataGridPropsWithDefaultValues> & import("@mui/x-data-grid/internals").DataGridPropsWithComplexDefaultValueBeforeProcessing & import("@mui/x-data-grid/internals").DataGridPropsWithoutDefaultValue<import("@mui/x-data-grid").GridValidRowModel>, import("@mui/x-data-grid/models/props/DataGridProps").DataGridForcedPropsKey> & {
40
- pagination?: true | undefined;
41
- } & {
42
- actions?: import("../components/custom/BuilderGrid/BuilderGrid").GridAction[] | undefined;
43
- item?: string | undefined;
44
- initialSort?: import("@mui/x-data-grid").GridSortItem | undefined;
45
- emptyContentSelectOptions?: import("../components/custom/BuilderGrid/EmptyContent").EmptyContentSelectOptions | undefined;
46
- emptyContentActionIndex?: number | undefined;
47
- title?: string | undefined;
48
- subtitle?: string | undefined;
49
- disablePagination?: boolean | undefined;
50
- hideEmptyContent?: boolean | undefined;
51
- hideToolbar?: boolean | undefined;
52
- hideSearchbar?: boolean | undefined;
53
- noRowsOverlay?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
54
- filterComponent?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
55
- error?: number | undefined;
56
- }>;
6
+ export declare const Empty: ComponentStory<(<T extends import("@mui/x-data-grid").GridValidRowModel>(props: BuilderGridProps<T>) => React.JSX.Element)>;
7
+ export declare const Rows: ComponentStory<(<T extends import("@mui/x-data-grid").GridValidRowModel>(props: BuilderGridProps<T>) => React.JSX.Element)>;
@@ -1,12 +1,6 @@
1
+ import { ButtonProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
3
- ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
4
- }, "color" | "className" | "style" | "classes" | "children" | "tabIndex" | "disabled" | "sx" | "size" | "variant" | "fullWidth" | "disableElevation" | "startIcon" | "endIcon" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "href"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: ButtonProps<"button", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Button: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
9
- ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
10
- }, "color" | "className" | "style" | "classes" | "children" | "tabIndex" | "disabled" | "sx" | "size" | "variant" | "fullWidth" | "disableElevation" | "startIcon" | "endIcon" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "href"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Button: ComponentStory<(props: ButtonProps<"button", {}>) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { ButtonGroupProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ButtonGroupOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "color" | "className" | "style" | "classes" | "children" | "disabled" | "sx" | "size" | "variant" | "fullWidth" | "disableElevation" | "disableRipple" | "disableFocusRipple" | "orientation"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: ButtonGroupProps<"div", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const ButtonGroup: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ButtonGroupOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
10
- }, "color" | "className" | "style" | "classes" | "children" | "disabled" | "sx" | "size" | "variant" | "fullWidth" | "disableElevation" | "disableRipple" | "disableFocusRipple" | "orientation"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const ButtonGroup: ComponentStory<(props: ButtonGroupProps<"div", {}>) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { CardProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").CardOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "elevation" | "square" | "raised"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: CardProps<"div", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Card: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").CardOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
10
- }, "className" | "style" | "classes" | "children" | "sx" | "variant" | "elevation" | "square" | "raised"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Card: ComponentStory<(props: CardProps<"div", {}>) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { CheckboxProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, CheckboxProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: CheckboxProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const Checkbox: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CheckboxProps>;
6
+ export declare const Checkbox: ComponentStory<(props: CheckboxProps) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { ChipProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ChipOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "color" | "className" | "style" | "classes" | "children" | "tabIndex" | "disabled" | "sx" | "label" | "size" | "variant" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: ChipProps<"div", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Chip: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ChipOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
10
- }, "color" | "className" | "style" | "classes" | "children" | "tabIndex" | "disabled" | "sx" | "label" | "size" | "variant" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Chip: ComponentStory<(props: ChipProps<"div", {}>) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { CircularProgressProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, CircularProgressProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: CircularProgressProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const CircularProgress: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CircularProgressProps>;
6
+ export declare const CircularProgress: ComponentStory<(props: CircularProgressProps) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { CollapseProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, CollapseProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: CollapseProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const Collapse: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CollapseProps>;
6
+ export declare const Collapse: ComponentStory<(props: CollapseProps) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { ContainerProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ContainerOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
4
- }, "className" | "style" | "classes" | "children" | "sx" | "maxWidth" | "disableGutters" | "fixed"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: ContainerProps<"div", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Container: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").ContainerOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
10
- }, "className" | "style" | "classes" | "children" | "sx" | "maxWidth" | "disableGutters" | "fixed"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Container: ComponentStory<(props: ContainerProps<"div", {}>) => React.JSX.Element>;
@@ -1,8 +1,10 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
2
+ import React from 'react';
1
3
  import { CriteriaInputProps } from '../components/custom/CriteriaBuilder/CriteriaBuilder';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
4
+ declare const _default: ComponentMeta<(props: CriteriaInputProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const CriteriaBuilderEmpty: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
5
- export declare const CriteriaBuilder: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
6
- export declare const CriteriaBuilderPresetUserID: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
7
- export declare const CriteriaBuilderGroupedPresetValues: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
8
- export declare const CriteriaBuilderRelatedObject: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, CriteriaInputProps>;
6
+ export declare const CriteriaBuilderEmpty: ComponentStory<(props: CriteriaInputProps) => React.JSX.Element>;
7
+ export declare const CriteriaBuilder: ComponentStory<(props: CriteriaInputProps) => React.JSX.Element>;
8
+ export declare const CriteriaBuilderPresetUserID: ComponentStory<(props: CriteriaInputProps) => React.JSX.Element>;
9
+ export declare const CriteriaBuilderGroupedPresetValues: ComponentStory<(props: CriteriaInputProps) => React.JSX.Element>;
10
+ export declare const CriteriaBuilderRelatedObject: ComponentStory<(props: CriteriaInputProps) => React.JSX.Element>;
@@ -1,41 +1,5 @@
1
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, Omit<Partial<import("@mui/x-data-grid/internals").DataGridPropsWithDefaultValues> & import("@mui/x-data-grid/internals").DataGridPropsWithComplexDefaultValueBeforeProcessing & import("@mui/x-data-grid/internals").DataGridPropsWithoutDefaultValue<import("@mui/x-data-grid").GridValidRowModel>, import("@mui/x-data-grid/models/props/DataGridProps").DataGridForcedPropsKey> & {
2
- pagination?: true | undefined;
3
- } & {
4
- onRefresh?: (() => void) | undefined;
5
- theme?: import("@mui/material/styles/createTheme").Theme | undefined;
6
- title?: string | undefined;
7
- bulkAction?: import("../components/custom/DataGrid/DataGrid").BulkAction | undefined;
8
- filterSettings?: {
9
- mode: "client" | "server";
10
- maxRows?: number | undefined;
11
- filterColumns?: boolean | undefined;
12
- } | undefined;
13
- hideSearchbar?: boolean | undefined;
14
- loadingOptions?: {
15
- color: string;
16
- messages?: string[] | undefined;
17
- } | undefined;
18
- hideDownload?: boolean | undefined;
19
- exportFileName?: string | undefined;
20
- }>;
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
2
+ import { DataGrid as CustomDataGrid } from '../index';
3
+ declare const _default: ComponentMeta<typeof CustomDataGrid>;
21
4
  export default _default;
22
- export declare const DataGrid: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, Omit<Partial<import("@mui/x-data-grid/internals").DataGridPropsWithDefaultValues> & import("@mui/x-data-grid/internals").DataGridPropsWithComplexDefaultValueBeforeProcessing & import("@mui/x-data-grid/internals").DataGridPropsWithoutDefaultValue<import("@mui/x-data-grid").GridValidRowModel>, import("@mui/x-data-grid/models/props/DataGridProps").DataGridForcedPropsKey> & {
23
- pagination?: true | undefined;
24
- } & {
25
- onRefresh?: (() => void) | undefined;
26
- theme?: import("@mui/material/styles/createTheme").Theme | undefined;
27
- title?: string | undefined;
28
- bulkAction?: import("../components/custom/DataGrid/DataGrid").BulkAction | undefined;
29
- filterSettings?: {
30
- mode: "client" | "server";
31
- maxRows?: number | undefined;
32
- filterColumns?: boolean | undefined;
33
- } | undefined;
34
- hideSearchbar?: boolean | undefined;
35
- loadingOptions?: {
36
- color: string;
37
- messages?: string[] | undefined;
38
- } | undefined;
39
- hideDownload?: boolean | undefined;
40
- exportFileName?: string | undefined;
41
- }>;
5
+ export declare const DataGrid: ComponentStory<typeof CustomDataGrid>;
@@ -1,9 +1,6 @@
1
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
2
  import React from 'react';
2
- import { CalendarDate } from '../index';
3
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, Omit<import("@mui/x-date-pickers").DatePickerProps<string | CalendarDate, CalendarDate>, "renderInput"> & {
4
- renderInput?: ((props: import("@mui/material").FilledTextFieldProps | import("@mui/material").OutlinedTextFieldProps | import("@mui/material").StandardTextFieldProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
5
- }>;
3
+ import { DatePickerProps } from '../index';
4
+ declare const _default: ComponentMeta<(props: DatePickerProps) => React.JSX.Element>;
6
5
  export default _default;
7
- export declare const DatePicker: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, Omit<import("@mui/x-date-pickers").DatePickerProps<string | CalendarDate, CalendarDate>, "renderInput"> & {
8
- renderInput?: ((props: import("@mui/material").FilledTextFieldProps | import("@mui/material").OutlinedTextFieldProps | import("@mui/material").StandardTextFieldProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>) | undefined;
9
- }>;
6
+ export declare const DatePicker: ComponentStory<(props: DatePickerProps) => React.JSX.Element>;
@@ -1,4 +1,6 @@
1
1
  import { DialogProps } from '@mui/material';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, DialogProps>;
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
3
+ import React from 'react';
4
+ declare const _default: ComponentMeta<(props: DialogProps) => React.JSX.Element>;
3
5
  export default _default;
4
- export declare const Dialog: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, DialogProps>;
6
+ export declare const Dialog: ComponentStory<(props: DialogProps) => React.JSX.Element>;
@@ -1,12 +1,6 @@
1
+ import { DividerProps } from '@mui/material';
2
+ import { ComponentMeta, ComponentStory } from '@storybook/react';
1
3
  import React from 'react';
2
- declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").DividerOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref"> & {
3
- ref?: ((instance: HTMLHRElement | null) => void) | React.RefObject<HTMLHRElement> | null | undefined;
4
- }, "light" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "textAlign" | "orientation" | "absolute" | "flexItem"> & {
5
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
6
- }>;
4
+ declare const _default: ComponentMeta<(props: DividerProps<"hr", {}>) => React.JSX.Element>;
7
5
  export default _default;
8
- export declare const Divider: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("@mui/material").DividerOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref"> & {
9
- ref?: ((instance: HTMLHRElement | null) => void) | React.RefObject<HTMLHRElement> | null | undefined;
10
- }, "light" | "className" | "style" | "classes" | "children" | "sx" | "variant" | "textAlign" | "orientation" | "absolute" | "flexItem"> & {
11
- component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
12
- }>;
6
+ export declare const Divider: ComponentStory<(props: DividerProps<"hr", {}>) => React.JSX.Element>;