@nattstack/ui 0.0.29 → 0.0.31
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/dist/components/index.d.ts +183 -170
- package/dist/components/index.js +581 -730
- package/dist/components/style.css +727 -0
- package/dist/tailwind-colors/color.css +2 -1
- package/dist/tailwind-colors/root.css +1 -0
- package/package.json +8 -7
- package/dist/components/button-spinner.module-T3OGVJS4.module.css +0 -95
- package/dist/components/button.module-4EHK5C4W.module.css +0 -183
- package/dist/components/column.module-A7QCVPFC.module.css +0 -4
- package/dist/components/dialog-responsive-backdrop.module-O336AARV.module.css +0 -27
- package/dist/components/dialog-responsive-bar.module-QCLP4IUN.module.css +0 -14
- package/dist/components/dialog-responsive-popup.module-BOEQIHJ7.module.css +0 -58
- package/dist/components/dialog-responsive-portal.module-YFVKMKVT.module.css +0 -5
- package/dist/components/dialog-responsive-viewport.module-LT7MZPLD.module.css +0 -16
- package/dist/components/input.module-H5TWAPFX.module.css +0 -97
- package/dist/components/label.module-2UZDXZQ4.module.css +0 -8
- package/dist/components/row.module-GYNANRAY.module.css +0 -4
- package/dist/components/spacer.module-ZYYYWYEB.module.css +0 -3
- package/dist/components/switch.module-U6Q27QB5.module.css +0 -62
- package/dist/components/tabs-panel.module-VGH3G3KV.module.css +0 -12
- package/dist/components/tabs-pill-indicator.module-533HMO7L.module.css +0 -12
- package/dist/components/tabs-pill-list.module-KQW67ZSW.module.css +0 -7
- package/dist/components/tabs-pill-tab.module-5SZMEO3Y.module.css +0 -64
- package/dist/components/tabs-segmented-indicator.module-EG56DHS2.module.css +0 -12
- package/dist/components/tabs-segmented-list.module-I3DSVFSP.module.css +0 -11
- package/dist/components/tabs-segmented-tab.module-SVYVEM2O.module.css +0 -36
- package/dist/components/tabs-underline-indicator.module-6SHQHUH5.module.css +0 -10
- package/dist/components/tabs-underline-list.module-72ZCIEAS.module.css +0 -8
- package/dist/components/tabs-underline-tab.module-OAE4JH7K.module.css +0 -35
- package/dist/components/tabs.module-3Z5DRPPX.module.css +0 -5
- package/dist/components/textarea.module-LK25MKCZ.module.css +0 -10
- package/dist/components/tooltip-content.module-QGRFS5NN.module.css +0 -18
|
@@ -1,265 +1,278 @@
|
|
|
1
|
-
import { ComponentProps,
|
|
2
|
-
import { Drawer, Switch as Switch$1, Tabs as Tabs$1, Tooltip as Tooltip$1 } from
|
|
1
|
+
import { CSSProperties, ComponentProps, ElementType, JSX, ReactNode } from "react";
|
|
2
|
+
import { Drawer, Switch as Switch$1, Tabs as Tabs$1, Tooltip as Tooltip$1 } from "@base-ui/react";
|
|
3
3
|
|
|
4
|
+
//#region src/components/button/button.d.ts
|
|
4
5
|
interface ButtonIconProps extends ButtonInternalProps {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
iconEnd?: never;
|
|
8
|
+
iconStart?: never;
|
|
9
|
+
isIconOnly: true;
|
|
9
10
|
}
|
|
10
11
|
interface ButtonProps extends ButtonInternalProps {
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
children?: number | number[] | string | string[];
|
|
13
|
+
isIconOnly?: false;
|
|
13
14
|
}
|
|
14
15
|
interface ButtonInternalProps extends Omit<ComponentProps<"button">, "aria-pressed" | "disabled"> {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
iconEnd?: ReactNode;
|
|
17
|
+
iconStart?: ReactNode;
|
|
18
|
+
isActive?: boolean;
|
|
19
|
+
isDisabled?: boolean;
|
|
20
|
+
isFullWidth?: boolean;
|
|
21
|
+
isIconOnly?: boolean;
|
|
22
|
+
isLoading?: boolean;
|
|
23
|
+
isRounded?: boolean;
|
|
24
|
+
size?: 32 | 36 | 40 | 44 | 48;
|
|
25
|
+
variant?: "ghost" | "primary" | "secondary";
|
|
25
26
|
}
|
|
26
27
|
type ButtonUnionProps = ButtonIconProps | ButtonProps;
|
|
27
28
|
declare function Button(props: ButtonUnionProps): JSX.Element;
|
|
28
29
|
declare const BUTTON_CLASS_NAME: {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
30
|
+
readonly BASE: any;
|
|
31
|
+
readonly ICON_ONLY: any;
|
|
32
|
+
readonly ROUNDED: {
|
|
33
|
+
readonly BASE: any;
|
|
34
|
+
readonly FULL: any;
|
|
35
|
+
};
|
|
36
|
+
readonly SIZE: {
|
|
37
|
+
readonly 32: any;
|
|
38
|
+
readonly 36: any;
|
|
39
|
+
readonly 40: any;
|
|
40
|
+
readonly 44: any;
|
|
41
|
+
readonly 48: any;
|
|
42
|
+
};
|
|
43
|
+
readonly VARIANT: {
|
|
44
|
+
readonly GHOST: any;
|
|
45
|
+
readonly PRIMARY: any;
|
|
46
|
+
readonly SECONDARY: any;
|
|
47
|
+
};
|
|
48
|
+
readonly WIDTH: {
|
|
49
|
+
readonly BASE: any;
|
|
50
|
+
readonly FULL: any;
|
|
51
|
+
};
|
|
51
52
|
};
|
|
52
|
-
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region src/components/button-link/button-link.d.ts
|
|
53
55
|
type ButtonLinkProps<ComponentType extends ElementType = "a"> = ButtonLinkInternalProps & ComponentProps<ComponentType>;
|
|
54
56
|
interface ButtonLinkInternalProps extends Pick<ButtonProps, "isFullWidth" | "isIconOnly" | "isRounded" | "size" | "variant"> {
|
|
55
|
-
|
|
57
|
+
as?: ElementType;
|
|
56
58
|
}
|
|
57
59
|
declare function ButtonLink<ComponentType extends ElementType = "a">(props: ButtonLinkProps<ComponentType>): JSX.Element;
|
|
58
|
-
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/components/column/column.d.ts
|
|
59
62
|
type ColumnProps<ComponentType extends ElementType = "div"> = ColumnInternalProps & ComponentProps<ComponentType>;
|
|
60
63
|
interface ColumnInternalProps {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
alignItems?: CSSProperties["alignItems"];
|
|
65
|
+
as?: keyof JSX.IntrinsicElements;
|
|
66
|
+
flexWrap?: CSSProperties["flexWrap"];
|
|
67
|
+
gap?: CSSProperties["gap"];
|
|
68
|
+
gapX?: CSSProperties["columnGap"];
|
|
69
|
+
gapY?: CSSProperties["rowGap"];
|
|
70
|
+
justifyContent?: CSSProperties["justifyContent"];
|
|
68
71
|
}
|
|
69
72
|
declare function Column(props: ColumnProps): JSX.Element;
|
|
70
73
|
declare const COLUMN_CLASS_NAME: {
|
|
71
|
-
|
|
74
|
+
readonly BASE: any;
|
|
72
75
|
};
|
|
73
|
-
|
|
76
|
+
//#endregion
|
|
77
|
+
//#region src/components/dialog-responsive/dialog-responsive.d.ts
|
|
74
78
|
interface DialogResponsiveProps extends Omit<Drawer.Root.Props, "onOpenChange" | "open"> {
|
|
75
|
-
|
|
76
|
-
|
|
79
|
+
isOpen?: Drawer.Root.Props["open"];
|
|
80
|
+
onIsOpenChange?: Drawer.Root.Props["onOpenChange"];
|
|
77
81
|
}
|
|
78
82
|
declare function DialogResponsive(props: DialogResponsiveProps): JSX.Element;
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
83
|
+
//#endregion
|
|
84
|
+
//#region src/components/dialog-responsive/dialog-responsive-popup.d.ts
|
|
85
|
+
interface DialogResponsivePopupProps extends Drawer.Popup.Props {}
|
|
82
86
|
declare function DialogResponsivePopup(props: DialogResponsivePopupProps): JSX.Element;
|
|
83
87
|
declare const DIALOG_RESPONSIVE_POPUP_CLASS_NAME: {
|
|
84
|
-
|
|
88
|
+
readonly BASE: any;
|
|
85
89
|
};
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
90
|
+
//#endregion
|
|
91
|
+
//#region src/components/dialog-responsive/dialog-responsive-trigger.d.ts
|
|
92
|
+
interface DialogResponsiveTriggerProps extends Drawer.Trigger.Props {}
|
|
89
93
|
declare function DialogResponsiveTrigger(props: DialogResponsiveTriggerProps): JSX.Element;
|
|
90
|
-
|
|
94
|
+
//#endregion
|
|
95
|
+
//#region src/components/input/input.d.ts
|
|
91
96
|
interface InputProps extends Omit<ComponentProps<"input">, "aria-pressed" | "disabled" | "readOnly" | "required"> {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
isActive?: boolean;
|
|
98
|
+
isDisabled?: boolean;
|
|
99
|
+
isInvalid?: boolean;
|
|
100
|
+
isReadOnly?: boolean;
|
|
101
|
+
isRequired?: boolean;
|
|
102
|
+
isRounded?: boolean;
|
|
103
|
+
isValid?: boolean;
|
|
104
|
+
size?: 32 | 36 | 40 | 44 | 48;
|
|
100
105
|
}
|
|
101
106
|
declare function Input(props: InputProps): JSX.Element;
|
|
102
107
|
declare const INPUT_CLASS_NAME: {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
108
|
+
readonly BASE: any;
|
|
109
|
+
readonly ROUNDED: {
|
|
110
|
+
readonly BASE: any;
|
|
111
|
+
readonly FULL: any;
|
|
112
|
+
};
|
|
113
|
+
readonly SIZE: {
|
|
114
|
+
readonly 32: any;
|
|
115
|
+
readonly 36: any;
|
|
116
|
+
readonly 40: any;
|
|
117
|
+
readonly 44: any;
|
|
118
|
+
readonly 48: any;
|
|
119
|
+
};
|
|
115
120
|
};
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
121
|
+
//#endregion
|
|
122
|
+
//#region src/components/label/label.d.ts
|
|
123
|
+
interface LabelProps extends ComponentProps<"label"> {}
|
|
119
124
|
declare function Label(props: LabelProps): JSX.Element;
|
|
120
125
|
declare const LABEL_CLASS_NAME: {
|
|
121
|
-
|
|
126
|
+
readonly BASE: any;
|
|
122
127
|
};
|
|
123
|
-
|
|
128
|
+
//#endregion
|
|
129
|
+
//#region src/components/row/row.d.ts
|
|
124
130
|
type RowProps<ComponentType extends ElementType = "div"> = ComponentProps<ComponentType> & RowInternalProps;
|
|
125
131
|
interface RowInternalProps {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
132
|
+
alignItems?: CSSProperties["alignItems"];
|
|
133
|
+
as?: keyof JSX.IntrinsicElements;
|
|
134
|
+
flexWrap?: CSSProperties["flexWrap"];
|
|
135
|
+
gap?: CSSProperties["gap"];
|
|
136
|
+
gapX?: CSSProperties["columnGap"];
|
|
137
|
+
gapY?: CSSProperties["rowGap"];
|
|
138
|
+
justifyContent?: CSSProperties["justifyContent"];
|
|
133
139
|
}
|
|
134
140
|
declare function Row(props: RowProps): JSX.Element;
|
|
135
141
|
declare const ROW_CLASS_NAME: {
|
|
136
|
-
|
|
142
|
+
readonly BASE: any;
|
|
137
143
|
};
|
|
138
|
-
|
|
144
|
+
//#endregion
|
|
145
|
+
//#region src/components/spacer/spacer.d.ts
|
|
139
146
|
interface SpacerProps extends Omit<ComponentProps<"div">, "children"> {
|
|
140
|
-
|
|
141
|
-
|
|
147
|
+
height?: CSSProperties["height"];
|
|
148
|
+
width?: CSSProperties["width"];
|
|
142
149
|
}
|
|
143
150
|
declare function Spacer(props: SpacerProps): JSX.Element;
|
|
144
151
|
declare const SPACER_CLASS_NAME: {
|
|
145
|
-
|
|
152
|
+
readonly BASE: any;
|
|
146
153
|
};
|
|
147
|
-
|
|
154
|
+
//#endregion
|
|
155
|
+
//#region src/components/switch/switch.d.ts
|
|
148
156
|
interface SwitchProps extends Omit<ComponentProps<typeof Switch$1.Root>, "checked" | "defaultChecked" | "disabled" | "nativeButton" | "readOnly" | "required"> {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
157
|
+
isChecked?: boolean;
|
|
158
|
+
isDefaultChecked?: boolean;
|
|
159
|
+
isDisabled?: boolean;
|
|
160
|
+
isReadOnly?: boolean;
|
|
161
|
+
isRequired?: boolean;
|
|
162
|
+
size?: 18 | 24;
|
|
155
163
|
}
|
|
156
164
|
declare function Switch(props: SwitchProps): JSX.Element;
|
|
157
165
|
declare const SWITCH_CLASS_NAME: {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
166
|
+
readonly BASE: any;
|
|
167
|
+
readonly SIZE: {
|
|
168
|
+
readonly 18: any;
|
|
169
|
+
readonly 24: any;
|
|
170
|
+
};
|
|
163
171
|
};
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
}
|
|
172
|
+
//#endregion
|
|
173
|
+
//#region src/components/tabs-pill/tabs-pill-list.d.ts
|
|
174
|
+
interface TabsPillListProps extends Tabs$1.List.Props {}
|
|
167
175
|
declare function TabsPillList(props: TabsPillListProps): JSX.Element;
|
|
168
176
|
declare const TABS_PILL_LIST_CLASS_NAME: {
|
|
169
|
-
|
|
177
|
+
readonly BASE: any;
|
|
170
178
|
};
|
|
171
|
-
|
|
179
|
+
//#endregion
|
|
180
|
+
//#region src/components/tabs-pill/tabs-pill-tab.d.ts
|
|
172
181
|
interface TabsPillTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
|
|
173
|
-
|
|
182
|
+
isNativeButton?: Tabs$1.Tab.Props["nativeButton"];
|
|
174
183
|
}
|
|
175
184
|
declare function TabsPillTab(props: TabsPillTabProps): JSX.Element;
|
|
176
185
|
declare const TABS_PILL_TAB_CLASS_NAME: {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
186
|
+
readonly BACKGROUND: any;
|
|
187
|
+
readonly BASE: any;
|
|
188
|
+
readonly WRAPPER: any;
|
|
180
189
|
};
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
}
|
|
190
|
+
//#endregion
|
|
191
|
+
//#region src/components/tabs-segmented/tabs-segmented-list.d.ts
|
|
192
|
+
interface TabsSegmentedListProps extends Tabs$1.List.Props {}
|
|
184
193
|
declare function TabsSegmentedList(props: TabsSegmentedListProps): JSX.Element;
|
|
185
194
|
declare const TABS_SEGMENTED_LIST_CLASS_NAME: {
|
|
186
|
-
|
|
195
|
+
readonly BASE: any;
|
|
187
196
|
};
|
|
188
|
-
|
|
197
|
+
//#endregion
|
|
198
|
+
//#region src/components/tabs-segmented/tabs-segmented-tab.d.ts
|
|
189
199
|
interface TabsSegmentedTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
|
|
190
|
-
|
|
200
|
+
isNativeButton?: Tabs$1.Tab.Props["nativeButton"];
|
|
191
201
|
}
|
|
192
202
|
declare function TabsSegmentedTab(props: TabsSegmentedTabProps): JSX.Element;
|
|
193
203
|
declare const TABS_SEGMENTED_TAB_CLASS_NAME: {
|
|
194
|
-
|
|
204
|
+
readonly BASE: any;
|
|
195
205
|
};
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
206
|
+
//#endregion
|
|
207
|
+
//#region src/components/tabs-underline/tabs-underline-list.d.ts
|
|
208
|
+
interface TabsUnderlineListProps extends Tabs$1.List.Props {}
|
|
199
209
|
declare function TabsUnderlineList(props: TabsUnderlineListProps): JSX.Element;
|
|
200
210
|
declare const TABS_UNDERLINE_LIST_CLASS_NAME: {
|
|
201
|
-
|
|
211
|
+
readonly BASE: any;
|
|
202
212
|
};
|
|
203
|
-
|
|
213
|
+
//#endregion
|
|
214
|
+
//#region src/components/tabs-underline/tabs-underline-tab.d.ts
|
|
204
215
|
interface TabsUnderlineTabProps extends Omit<Tabs$1.Tab.Props, "nativeButton"> {
|
|
205
|
-
|
|
216
|
+
isNativeButton?: Tabs$1.Tab.Props["nativeButton"];
|
|
206
217
|
}
|
|
207
218
|
declare function TabsUnderlineTab(props: TabsUnderlineTabProps): JSX.Element;
|
|
208
219
|
declare const TABS_UNDERLINE_TAB_CLASS_NAME: {
|
|
209
|
-
|
|
220
|
+
readonly BASE: any;
|
|
210
221
|
};
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
222
|
+
//#endregion
|
|
223
|
+
//#region src/components/tabs/tabs.d.ts
|
|
224
|
+
interface TabsProps extends Tabs$1.Root.Props {}
|
|
214
225
|
declare function Tabs(props: TabsProps): JSX.Element;
|
|
215
226
|
declare const TABS_CLASS_NAME: {
|
|
216
|
-
|
|
227
|
+
readonly BASE: any;
|
|
217
228
|
};
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
}
|
|
229
|
+
//#endregion
|
|
230
|
+
//#region src/components/tabs/tabs-panel.d.ts
|
|
231
|
+
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
221
232
|
declare function TabsPanel(props: TabsPanelProps): JSX.Element;
|
|
222
233
|
declare const TABS_PANEL_CLASS_NAME: {
|
|
223
|
-
|
|
234
|
+
readonly BASE: any;
|
|
224
235
|
};
|
|
225
|
-
|
|
236
|
+
//#endregion
|
|
237
|
+
//#region src/components/textarea/textarea.d.ts
|
|
226
238
|
interface TextareaProps extends Omit<ComponentProps<"textarea">, "aria-pressed" | "disabled" | "readOnly" | "required"> {
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
239
|
+
isActive?: boolean;
|
|
240
|
+
isDisabled?: boolean;
|
|
241
|
+
isInvalid?: boolean;
|
|
242
|
+
isReadOnly?: boolean;
|
|
243
|
+
isRequired?: boolean;
|
|
244
|
+
isRounded?: boolean;
|
|
245
|
+
isValid?: boolean;
|
|
234
246
|
}
|
|
235
247
|
declare function Textarea(props: TextareaProps): JSX.Element;
|
|
236
248
|
declare const TEXTAREA_CLASS_NAME: {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
249
|
+
readonly BASE: any;
|
|
250
|
+
readonly INPUT: any;
|
|
251
|
+
readonly ROUNDED: {
|
|
252
|
+
readonly BASE: any;
|
|
253
|
+
readonly FULL: any;
|
|
254
|
+
};
|
|
243
255
|
};
|
|
244
|
-
|
|
256
|
+
//#endregion
|
|
257
|
+
//#region src/components/tooltip/tooltip.d.ts
|
|
245
258
|
interface TooltipProps extends Omit<Tooltip$1.Root.Props, "disabled"> {
|
|
246
|
-
|
|
259
|
+
isDisabled?: Tooltip$1.Root.Props["disabled"];
|
|
247
260
|
}
|
|
248
261
|
declare function Tooltip(props: TooltipProps): JSX.Element;
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
}
|
|
262
|
+
//#endregion
|
|
263
|
+
//#region src/components/tooltip/tooltip-content.d.ts
|
|
264
|
+
interface TooltipContentProps extends Pick<Tooltip$1.Positioner.Props, "side" | "sideOffset">, Tooltip$1.Popup.Props {}
|
|
252
265
|
declare function TooltipContent(props: TooltipContentProps): JSX.Element;
|
|
253
266
|
declare const TOOLTIP_CONTENT_CLASS_NAME: {
|
|
254
|
-
|
|
267
|
+
readonly BASE: any;
|
|
255
268
|
};
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
269
|
+
//#endregion
|
|
270
|
+
//#region src/components/tooltip/tooltip-provider.d.ts
|
|
271
|
+
interface TooltipProviderProps extends Tooltip$1.Provider.Props {}
|
|
259
272
|
declare function TooltipProvider(props: TooltipProviderProps): JSX.Element;
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}
|
|
273
|
+
//#endregion
|
|
274
|
+
//#region src/components/tooltip/tooltip-trigger.d.ts
|
|
275
|
+
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
263
276
|
declare function TooltipTrigger(props: TooltipTriggerProps): JSX.Element;
|
|
264
|
-
|
|
265
|
-
export { BUTTON_CLASS_NAME, Button,
|
|
277
|
+
//#endregion
|
|
278
|
+
export { BUTTON_CLASS_NAME, Button, ButtonIconProps, ButtonLink, ButtonLinkProps, ButtonProps, COLUMN_CLASS_NAME, Column, ColumnProps, DIALOG_RESPONSIVE_POPUP_CLASS_NAME, DialogResponsive, DialogResponsivePopup, DialogResponsivePopupProps, DialogResponsiveProps, DialogResponsiveTrigger, DialogResponsiveTriggerProps, INPUT_CLASS_NAME, Input, InputProps, LABEL_CLASS_NAME, Label, LabelProps, ROW_CLASS_NAME, Row, RowProps, SPACER_CLASS_NAME, SWITCH_CLASS_NAME, Spacer, SpacerProps, Switch, SwitchProps, TABS_CLASS_NAME, TABS_PANEL_CLASS_NAME, TABS_PILL_LIST_CLASS_NAME, TABS_PILL_TAB_CLASS_NAME, TABS_SEGMENTED_LIST_CLASS_NAME, TABS_SEGMENTED_TAB_CLASS_NAME, TABS_UNDERLINE_LIST_CLASS_NAME, TABS_UNDERLINE_TAB_CLASS_NAME, TEXTAREA_CLASS_NAME, TOOLTIP_CONTENT_CLASS_NAME, Tabs, TabsPanel, TabsPanelProps, TabsPillList, TabsPillListProps, TabsPillTab, TabsPillTabProps, TabsProps, TabsSegmentedList, TabsSegmentedListProps, TabsSegmentedTab, TabsSegmentedTabProps, TabsUnderlineList, TabsUnderlineListProps, TabsUnderlineTab, TabsUnderlineTabProps, Textarea, TextareaProps, Tooltip, TooltipContent, TooltipContentProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipTrigger, TooltipTriggerProps };
|