@redsift/products 11.6.0-muiv5-alpha.6 → 11.6.0-muiv5-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,8 +1,199 @@
1
- export { Radar, RadarSimple } from './_internal/radar.js';
2
- export { R as RadarButton } from './_internal/RadarButton.js';
3
- export { R as RadarItem } from './_internal/RadarItem.js';
4
- export { B as BaseRadarMenuButton, a as BaseRadarMenuButtonContent, f as RadarMenuButton, e as RadarMenuButtonContent, d as RadarMenuButtonContentFooter, b as RadarMenuButtonContentHeader, c as RadarMenuButtonContentMenu, R as RadarMenuButtonTrigger, g as RadarSimpleMenuButton } from './_internal/RadarSimpleMenuButton.js';
5
- import 'react';
6
- import '@redsift/design-system';
7
- import '@redsift/pickers';
8
- import './_internal/RadarSimpleDialog.js';
1
+ import * as React$1 from 'react';
2
+ import React__default, { ReactNode, ComponentProps } from 'react';
3
+ import * as _redsift_design_system from '@redsift/design-system';
4
+ import { ButtonColor, Theme, ValueOf, ContainerProps, HeadingProps, IconProps, StylingProps, Comp, ButtonProps } from '@redsift/design-system';
5
+ import * as _redsift_pickers from '@redsift/pickers';
6
+ import { ItemProps, MenuButtonProps, MenuButtonContentProps, MenuButtonContentHeaderProps, MenuButtonContentMenuProps } from '@redsift/pickers';
7
+
8
+ /**
9
+ * Component variant.
10
+ */
11
+ declare const DialogSize: {
12
+ readonly small: "small";
13
+ readonly medium: "medium";
14
+ readonly large: "large";
15
+ readonly xlarge: "xlarge";
16
+ };
17
+ type DialogSize = ValueOf<typeof DialogSize>;
18
+ /**
19
+ * Component props.
20
+ */
21
+ interface DialogProps {
22
+ /** Button color that will be forward to the trigger. */
23
+ color?: ButtonColor;
24
+ /** Children. Can only be DialogTrigger and DialogContent. */
25
+ children: ReactNode;
26
+ /**
27
+ * Default open status.
28
+ * Used for uncontrolled version.
29
+ */
30
+ defaultOpen?: boolean;
31
+ /** Whether the Close icon button is displayed or not. */
32
+ hasCloseButton?: boolean;
33
+ /** Which element to initially focus. Can be either a number (tabbable index), a ref to en element, or a shortcut pointing towards a section of the dialog. See the accessibility section in the documentation to know which one to use. */
34
+ initialFocus?: number | React.MutableRefObject<HTMLElement | null> | 'header' | 'body' | 'actions';
35
+ /**
36
+ * Whether the component is opened or not.
37
+ * Used for controlled version.
38
+ */
39
+ isOpen?: boolean;
40
+ /** Method to handle component change. */
41
+ onOpen?: (open: boolean) => void;
42
+ /** Dialog size. */
43
+ size?: DialogSize | {
44
+ width?: string;
45
+ maxWidth?: string;
46
+ minWidth?: string;
47
+ };
48
+ /** Theme. */
49
+ theme?: Theme;
50
+ /** Class name to append to the trigger. */
51
+ triggerClassName?: string;
52
+ }
53
+
54
+ /**
55
+ * Component props.
56
+ */
57
+ interface DialogContentBodyProps extends ComponentProps<'div'>, ContainerProps {
58
+ /** Theme. */
59
+ theme?: Theme;
60
+ }
61
+
62
+ /**
63
+ * Component props.
64
+ */
65
+ interface DialogContentHeaderProps extends ComponentProps<'div'> {
66
+ /** Header. */
67
+ header?: string;
68
+ /** Heading props allowing to override the component rendered by the heading without changing its style. */
69
+ headingProps?: Pick<HeadingProps, 'as' | 'noWrap' | 'variant'>;
70
+ /** Subheader */
71
+ subheader?: string;
72
+ /**
73
+ * Can be a string or an array of strings containing `d` property of the `path` SVG element.<br />
74
+ * Can also be a ReactElement.
75
+ */
76
+ icon?: IconProps['icon'];
77
+ /** Custom props to pass to the Icon component. */
78
+ iconProps?: Omit<IconProps, 'ref' | 'icon'>;
79
+ /** Whether the card is loading or not. */
80
+ isLoading?: boolean;
81
+ /** Theme. */
82
+ theme?: Theme;
83
+ }
84
+
85
+ /**
86
+ * Component props.
87
+ */
88
+ interface DialogContentProps extends ComponentProps<'div'> {
89
+ /** Theme. */
90
+ theme?: Theme;
91
+ }
92
+
93
+ /**
94
+ * Component props.
95
+ */
96
+ interface DialogTriggerProps extends ComponentProps<'button'>, StylingProps {
97
+ }
98
+
99
+ /**
100
+ * The RadarSimpleDialog component.
101
+ */
102
+ type RadarSimpleDialogProps = Comp<Omit<DialogProps, 'children'> & {
103
+ header?: ReactNode;
104
+ trigger?: Omit<DialogTriggerProps, 'ref'>;
105
+ } & Pick<DialogContentBodyProps, 'children'>, HTMLDivElement>;
106
+
107
+ declare const RadarSimple: {
108
+ Dialog: RadarSimpleDialogProps;
109
+ MenuButton: _redsift_design_system.Comp<Omit<_redsift_pickers.MenuButtonProps, "children"> & {
110
+ title: string;
111
+ subtitle?: string | undefined;
112
+ icon?: Omit<_redsift_design_system.IconProps, "ref"> | undefined;
113
+ } & Pick<_redsift_pickers.MenuButtonContentMenuProps, "children">, HTMLDivElement>;
114
+ };
115
+ declare const Radar: {
116
+ Button: _redsift_design_system.Comp<_redsift_design_system.ButtonProps, HTMLButtonElement>;
117
+ Dialog: React$1.FC<DialogProps> & {
118
+ displayName?: string | undefined;
119
+ className?: string | undefined;
120
+ } & {
121
+ Trigger: _redsift_design_system.Comp<DialogTriggerProps, HTMLButtonElement>;
122
+ Content: _redsift_design_system.Comp<DialogContentProps & {
123
+ backgroundPosition?: "top" | "bottom" | undefined;
124
+ }, HTMLDivElement> & {
125
+ Header: _redsift_design_system.Comp<DialogContentHeaderProps, HTMLDivElement>;
126
+ Body: _redsift_design_system.Comp<DialogContentBodyProps, HTMLDivElement>;
127
+ };
128
+ };
129
+ Item: _redsift_design_system.Comp<_redsift_design_system.ItemProps, HTMLDivElement>;
130
+ MenuButton: React$1.FC<_redsift_pickers.MenuButtonProps> & {
131
+ displayName?: string | undefined;
132
+ className?: string | undefined;
133
+ } & {
134
+ Trigger: _redsift_design_system.Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
135
+ Content: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentProps, HTMLDivElement> & {
136
+ Header: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentHeaderProps, HTMLDivElement>;
137
+ Menu: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentMenuProps, HTMLDivElement>;
138
+ Footer: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
139
+ };
140
+ };
141
+ Simple: {
142
+ Dialog: RadarSimpleDialogProps;
143
+ MenuButton: _redsift_design_system.Comp<Omit<_redsift_pickers.MenuButtonProps, "children"> & {
144
+ title: string;
145
+ subtitle?: string | undefined;
146
+ icon?: Omit<_redsift_design_system.IconProps, "ref"> | undefined;
147
+ } & Pick<_redsift_pickers.MenuButtonContentMenuProps, "children">, HTMLDivElement>;
148
+ };
149
+ };
150
+
151
+ /**
152
+ * The RadarButton component.
153
+ */
154
+ declare const RadarButton: Comp<ButtonProps, HTMLButtonElement>;
155
+
156
+ /**
157
+ * The RadarItem component.
158
+ */
159
+ declare const RadarItem: Comp<ItemProps, HTMLDivElement>;
160
+
161
+ /**
162
+ * The RadarMenuButton component.
163
+ */
164
+ declare const BaseRadarMenuButton: React__default.FC<MenuButtonProps> & {
165
+ displayName?: string;
166
+ className?: string;
167
+ };
168
+ declare const RadarMenuButtonTrigger: Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
169
+ declare const BaseRadarMenuButtonContent: Comp<MenuButtonContentProps, HTMLDivElement>;
170
+ declare const RadarMenuButtonContentHeader: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
171
+ declare const RadarMenuButtonContentMenu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
172
+ declare const RadarMenuButtonContentFooter: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
173
+ declare const RadarMenuButtonContent: Comp<MenuButtonContentProps, HTMLDivElement> & {
174
+ Header: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
175
+ Menu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
176
+ Footer: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
177
+ };
178
+ declare const RadarMenuButton: React__default.FC<MenuButtonProps> & {
179
+ displayName?: string | undefined;
180
+ className?: string | undefined;
181
+ } & {
182
+ Trigger: Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
183
+ Content: Comp<MenuButtonContentProps, HTMLDivElement> & {
184
+ Header: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
185
+ Menu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
186
+ Footer: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
187
+ };
188
+ };
189
+
190
+ /**
191
+ * The RadarSimpleMenuButton component.
192
+ */
193
+ declare const RadarSimpleMenuButton: Comp<Omit<MenuButtonProps, 'children'> & {
194
+ title: string;
195
+ subtitle?: string;
196
+ icon?: Omit<IconProps, 'ref'>;
197
+ } & Pick<MenuButtonContentMenuProps, 'children'>, HTMLDivElement>;
198
+
199
+ export { BaseRadarMenuButton, BaseRadarMenuButtonContent, Radar, RadarButton, RadarItem, RadarMenuButton, RadarMenuButtonContent, RadarMenuButtonContentFooter, RadarMenuButtonContentHeader, RadarMenuButtonContentMenu, RadarMenuButtonTrigger, RadarSimple, RadarSimpleMenuButton };
package/package.json CHANGED
@@ -30,11 +30,11 @@
30
30
  "test": "yarn test:unit && yarn test:storybook"
31
31
  },
32
32
  "types": "index.d.ts",
33
- "version": "11.6.0-muiv5-alpha.6",
33
+ "version": "11.6.0-muiv5-alpha.8",
34
34
  "dependencies": {
35
- "@redsift/design-system": "^11.6.0-muiv5-alpha.6",
36
- "@redsift/icons": "^11.6.0-muiv5-alpha.6",
37
- "@redsift/pickers": "^11.6.0-muiv5-alpha.6",
35
+ "@redsift/design-system": "^11.6.0-muiv5-alpha.8",
36
+ "@redsift/icons": "^11.6.0-muiv5-alpha.8",
37
+ "@redsift/pickers": "^11.6.0-muiv5-alpha.8",
38
38
  "classnames": "^2.3.1",
39
39
  "styled-components": "^5.3.5"
40
40
  },
@@ -95,5 +95,5 @@
95
95
  "react-dom": ">=17",
96
96
  "styled-components": "^5.3.5"
97
97
  },
98
- "gitHead": "c10cd42a94d8705dab7e947fa3fdc0ef0d93767e"
98
+ "gitHead": "ae1291b7b1536be10c6a15375bec7f0e75b03cbe"
99
99
  }
@@ -1,8 +0,0 @@
1
- import { Comp, ButtonProps } from '@redsift/design-system';
2
-
3
- /**
4
- * The RadarButton component.
5
- */
6
- declare const RadarButton: Comp<ButtonProps, HTMLButtonElement>;
7
-
8
- export { RadarButton as R };
@@ -1,9 +0,0 @@
1
- import { Comp } from '@redsift/design-system';
2
- import { ItemProps } from '@redsift/pickers';
3
-
4
- /**
5
- * The RadarItem component.
6
- */
7
- declare const RadarItem: Comp<ItemProps, HTMLDivElement>;
8
-
9
- export { RadarItem as R };
@@ -1,104 +0,0 @@
1
- import { ReactNode, ComponentProps } from 'react';
2
- import { ButtonColor, Theme, ValueOf, ContainerProps, HeadingProps, IconProps, StylingProps, Comp } from '@redsift/design-system';
3
-
4
- /**
5
- * Component variant.
6
- */
7
- declare const DialogSize: {
8
- readonly small: "small";
9
- readonly medium: "medium";
10
- readonly large: "large";
11
- readonly xlarge: "xlarge";
12
- };
13
- type DialogSize = ValueOf<typeof DialogSize>;
14
- /**
15
- * Component props.
16
- */
17
- interface DialogProps {
18
- /** Button color that will be forward to the trigger. */
19
- color?: ButtonColor;
20
- /** Children. Can only be DialogTrigger and DialogContent. */
21
- children: ReactNode;
22
- /**
23
- * Default open status.
24
- * Used for uncontrolled version.
25
- */
26
- defaultOpen?: boolean;
27
- /** Whether the Close icon button is displayed or not. */
28
- hasCloseButton?: boolean;
29
- /** Which element to initially focus. Can be either a number (tabbable index), a ref to en element, or a shortcut pointing towards a section of the dialog. See the accessibility section in the documentation to know which one to use. */
30
- initialFocus?: number | React.MutableRefObject<HTMLElement | null> | 'header' | 'body' | 'actions';
31
- /**
32
- * Whether the component is opened or not.
33
- * Used for controlled version.
34
- */
35
- isOpen?: boolean;
36
- /** Method to handle component change. */
37
- onOpen?: (open: boolean) => void;
38
- /** Dialog size. */
39
- size?: DialogSize | {
40
- width?: string;
41
- maxWidth?: string;
42
- minWidth?: string;
43
- };
44
- /** Theme. */
45
- theme?: Theme;
46
- /** Class name to append to the trigger. */
47
- triggerClassName?: string;
48
- }
49
-
50
- /**
51
- * Component props.
52
- */
53
- interface DialogContentBodyProps extends ComponentProps<'div'>, ContainerProps {
54
- /** Theme. */
55
- theme?: Theme;
56
- }
57
-
58
- /**
59
- * Component props.
60
- */
61
- interface DialogContentHeaderProps extends ComponentProps<'div'> {
62
- /** Header. */
63
- header?: string;
64
- /** Heading props allowing to override the component rendered by the heading without changing its style. */
65
- headingProps?: Pick<HeadingProps, 'as' | 'noWrap' | 'variant'>;
66
- /** Subheader */
67
- subheader?: string;
68
- /**
69
- * Can be a string or an array of strings containing `d` property of the `path` SVG element.<br />
70
- * Can also be a ReactElement.
71
- */
72
- icon?: IconProps['icon'];
73
- /** Custom props to pass to the Icon component. */
74
- iconProps?: Omit<IconProps, 'ref' | 'icon'>;
75
- /** Whether the card is loading or not. */
76
- isLoading?: boolean;
77
- /** Theme. */
78
- theme?: Theme;
79
- }
80
-
81
- /**
82
- * Component props.
83
- */
84
- interface DialogContentProps extends ComponentProps<'div'> {
85
- /** Theme. */
86
- theme?: Theme;
87
- }
88
-
89
- /**
90
- * Component props.
91
- */
92
- interface DialogTriggerProps extends ComponentProps<'button'>, StylingProps {
93
- }
94
-
95
- /**
96
- * The RadarSimpleDialog component.
97
- */
98
- type RadarSimpleDialogProps = Comp<Omit<DialogProps, 'children'> & {
99
- header?: ReactNode;
100
- trigger?: Omit<DialogTriggerProps, 'ref'>;
101
- } & Pick<DialogContentBodyProps, 'children'>, HTMLDivElement>;
102
- declare const RadarSimpleDialog: RadarSimpleDialogProps;
103
-
104
- export { DialogProps as D, RadarSimpleDialogProps as R, DialogTriggerProps as a, DialogContentProps as b, DialogContentHeaderProps as c, DialogContentBodyProps as d, RadarSimpleDialog as e };
@@ -1,44 +0,0 @@
1
- import * as _redsift_pickers from '@redsift/pickers';
2
- import { MenuButtonProps, MenuButtonContentProps, MenuButtonContentHeaderProps, MenuButtonContentMenuProps } from '@redsift/pickers';
3
- import React__default from 'react';
4
- import { Comp, IconProps } from '@redsift/design-system';
5
-
6
- /**
7
- * The RadarMenuButton component.
8
- */
9
- declare const BaseRadarMenuButton: React__default.FC<MenuButtonProps> & {
10
- displayName?: string;
11
- className?: string;
12
- };
13
- declare const RadarMenuButtonTrigger: Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
14
- declare const BaseRadarMenuButtonContent: Comp<MenuButtonContentProps, HTMLDivElement>;
15
- declare const RadarMenuButtonContentHeader: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
16
- declare const RadarMenuButtonContentMenu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
17
- declare const RadarMenuButtonContentFooter: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
18
- declare const RadarMenuButtonContent: Comp<MenuButtonContentProps, HTMLDivElement> & {
19
- Header: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
20
- Menu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
21
- Footer: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
22
- };
23
- declare const RadarMenuButton: React__default.FC<MenuButtonProps> & {
24
- displayName?: string | undefined;
25
- className?: string | undefined;
26
- } & {
27
- Trigger: Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
28
- Content: Comp<MenuButtonContentProps, HTMLDivElement> & {
29
- Header: Comp<MenuButtonContentHeaderProps, HTMLDivElement>;
30
- Menu: Comp<MenuButtonContentMenuProps, HTMLDivElement>;
31
- Footer: Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
32
- };
33
- };
34
-
35
- /**
36
- * The RadarSimpleMenuButton component.
37
- */
38
- declare const RadarSimpleMenuButton: Comp<Omit<MenuButtonProps, 'children'> & {
39
- title: string;
40
- subtitle?: string;
41
- icon?: Omit<IconProps, 'ref'>;
42
- } & Pick<MenuButtonContentMenuProps, 'children'>, HTMLDivElement>;
43
-
44
- export { BaseRadarMenuButton as B, RadarMenuButtonTrigger as R, BaseRadarMenuButtonContent as a, RadarMenuButtonContentHeader as b, RadarMenuButtonContentMenu as c, RadarMenuButtonContentFooter as d, RadarMenuButtonContent as e, RadarMenuButton as f, RadarSimpleMenuButton as g };
@@ -1,2 +0,0 @@
1
- export { R as RadarButton } from './RadarButton.js';
2
- import '@redsift/design-system';
@@ -1,38 +0,0 @@
1
- import React__default from 'react';
2
- import { Comp } from '@redsift/design-system';
3
- import { D as DialogProps, c as DialogContentHeaderProps, d as DialogContentBodyProps, a as DialogTriggerProps, b as DialogContentProps } from './RadarSimpleDialog.js';
4
- export { e as RadarSimpleDialog, R as RadarSimpleDialogProps } from './RadarSimpleDialog.js';
5
-
6
- /**
7
- * The RadarDialog component.
8
- */
9
- declare const BaseRadarDialog: React__default.FC<DialogProps> & {
10
- displayName?: string;
11
- className?: string;
12
- };
13
- declare const RadarDialogContentHeader: Comp<DialogContentHeaderProps, HTMLDivElement>;
14
- declare const RadarDialogContentBody: Comp<DialogContentBodyProps, HTMLDivElement>;
15
- declare const RadarDialogTrigger: Comp<DialogTriggerProps, HTMLButtonElement>;
16
- declare const BaseRadarDialogContent: Comp<DialogContentProps & {
17
- backgroundPosition?: 'top' | 'bottom';
18
- }, HTMLDivElement>;
19
- declare const RadarDialogContent: Comp<DialogContentProps & {
20
- backgroundPosition?: "top" | "bottom" | undefined;
21
- }, HTMLDivElement> & {
22
- Header: Comp<DialogContentHeaderProps, HTMLDivElement>;
23
- Body: Comp<DialogContentBodyProps, HTMLDivElement>;
24
- };
25
- declare const RadarDialog: React__default.FC<DialogProps> & {
26
- displayName?: string | undefined;
27
- className?: string | undefined;
28
- } & {
29
- Trigger: Comp<DialogTriggerProps, HTMLButtonElement>;
30
- Content: Comp<DialogContentProps & {
31
- backgroundPosition?: "top" | "bottom" | undefined;
32
- }, HTMLDivElement> & {
33
- Header: Comp<DialogContentHeaderProps, HTMLDivElement>;
34
- Body: Comp<DialogContentBodyProps, HTMLDivElement>;
35
- };
36
- };
37
-
38
- export { BaseRadarDialog, BaseRadarDialogContent, RadarDialog, RadarDialogContent, RadarDialogContentBody, RadarDialogContentHeader, RadarDialogTrigger };
@@ -1,3 +0,0 @@
1
- export { R as RadarItem } from './RadarItem.js';
2
- import '@redsift/design-system';
3
- import '@redsift/pickers';
@@ -1,4 +0,0 @@
1
- export { B as BaseRadarMenuButton, a as BaseRadarMenuButtonContent, f as RadarMenuButton, e as RadarMenuButtonContent, d as RadarMenuButtonContentFooter, b as RadarMenuButtonContentHeader, c as RadarMenuButtonContentMenu, R as RadarMenuButtonTrigger, g as RadarSimpleMenuButton } from './RadarSimpleMenuButton.js';
2
- import '@redsift/pickers';
3
- import 'react';
4
- import '@redsift/design-system';
@@ -1,50 +0,0 @@
1
- import * as React from 'react';
2
- import * as _redsift_design_system from '@redsift/design-system';
3
- import * as _redsift_pickers from '@redsift/pickers';
4
- import { R as RadarSimpleDialogProps, D as DialogProps, a as DialogTriggerProps, b as DialogContentProps, c as DialogContentHeaderProps, d as DialogContentBodyProps } from './RadarSimpleDialog.js';
5
-
6
- declare const RadarSimple: {
7
- Dialog: RadarSimpleDialogProps;
8
- MenuButton: _redsift_design_system.Comp<Omit<_redsift_pickers.MenuButtonProps, "children"> & {
9
- title: string;
10
- subtitle?: string | undefined;
11
- icon?: Omit<_redsift_design_system.IconProps, "ref"> | undefined;
12
- } & Pick<_redsift_pickers.MenuButtonContentMenuProps, "children">, HTMLDivElement>;
13
- };
14
- declare const Radar: {
15
- Button: _redsift_design_system.Comp<_redsift_design_system.ButtonProps, HTMLButtonElement>;
16
- Dialog: React.FC<DialogProps> & {
17
- displayName?: string | undefined;
18
- className?: string | undefined;
19
- } & {
20
- Trigger: _redsift_design_system.Comp<DialogTriggerProps, HTMLButtonElement>;
21
- Content: _redsift_design_system.Comp<DialogContentProps & {
22
- backgroundPosition?: "top" | "bottom" | undefined;
23
- }, HTMLDivElement> & {
24
- Header: _redsift_design_system.Comp<DialogContentHeaderProps, HTMLDivElement>;
25
- Body: _redsift_design_system.Comp<DialogContentBodyProps, HTMLDivElement>;
26
- };
27
- };
28
- Item: _redsift_design_system.Comp<_redsift_design_system.ItemProps, HTMLDivElement>;
29
- MenuButton: React.FC<_redsift_pickers.MenuButtonProps> & {
30
- displayName?: string | undefined;
31
- className?: string | undefined;
32
- } & {
33
- Trigger: _redsift_design_system.Comp<_redsift_pickers.MenuButtonTriggerProps, HTMLButtonElement>;
34
- Content: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentProps, HTMLDivElement> & {
35
- Header: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentHeaderProps, HTMLDivElement>;
36
- Menu: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentMenuProps, HTMLDivElement>;
37
- Footer: _redsift_design_system.Comp<_redsift_pickers.MenuButtonContentFooterProps, HTMLDivElement>;
38
- };
39
- };
40
- Simple: {
41
- Dialog: RadarSimpleDialogProps;
42
- MenuButton: _redsift_design_system.Comp<Omit<_redsift_pickers.MenuButtonProps, "children"> & {
43
- title: string;
44
- subtitle?: string | undefined;
45
- icon?: Omit<_redsift_design_system.IconProps, "ref"> | undefined;
46
- } & Pick<_redsift_pickers.MenuButtonContentMenuProps, "children">, HTMLDivElement>;
47
- };
48
- };
49
-
50
- export { Radar, RadarSimple };