@scm-manager/ui-layout 2.46.2-20230911-085218 → 2.46.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- @scm-manager/ui-layout:build: cache hit, replaying output d2860f46cb3e69c4
1
+ @scm-manager/ui-layout:build: cache hit, replaying output 33a21114dfbedfe6
2
2
  @scm-manager/ui-layout:build: $ tsup ./src/index.ts -d build --format esm,cjs --dts
3
3
  @scm-manager/ui-layout:build: CLI Building entry: ./src/index.ts
4
4
  @scm-manager/ui-layout:build: CLI Using tsconfig: tsconfig.json
@@ -6,10 +6,10 @@
6
6
  @scm-manager/ui-layout:build: CLI Target: node14
7
7
  @scm-manager/ui-layout:build: ESM Build start
8
8
  @scm-manager/ui-layout:build: CJS Build start
9
- @scm-manager/ui-layout:build: ESM build/index.mjs 12.68 KB
10
- @scm-manager/ui-layout:build: ESM ⚡️ Build success in 84ms
11
- @scm-manager/ui-layout:build: CJS build/index.js 16.12 KB
12
- @scm-manager/ui-layout:build: CJS ⚡️ Build success in 69ms
9
+ @scm-manager/ui-layout:build: CJS build/index.js 7.71 KB
10
+ @scm-manager/ui-layout:build: CJS ⚡️ Build success in 77ms
11
+ @scm-manager/ui-layout:build: ESM build/index.mjs 5.41 KB
12
+ @scm-manager/ui-layout:build: ESM ⚡️ Build success in 103ms
13
13
  @scm-manager/ui-layout:build: DTS Build start
14
- @scm-manager/ui-layout:build: DTS ⚡️ Build success in 18238ms
15
- @scm-manager/ui-layout:build: DTS build/index.d.ts 39.97 KB
14
+ @scm-manager/ui-layout:build: DTS ⚡️ Build success in 23876ms
15
+ @scm-manager/ui-layout:build: DTS build/index.d.ts 5.01 KB
package/build/index.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- import * as _radix_ui_react_tabs from '@radix-ui/react-tabs';
2
- import * as _radix_ui_react_roving_focus from '@radix-ui/react-roving-focus';
3
- import * as react_i18next from 'react-i18next';
4
- import * as react_router_dom from 'react-router-dom';
5
1
  import * as csstype from 'csstype';
6
2
  import * as react from 'react';
7
3
  import react__default, { ReactNode } from 'react';
@@ -13,14 +9,10 @@ import * as RadixCollapsible from '@radix-ui/react-collapsible';
13
9
  */
14
10
  declare const Collapsible: react__default.ForwardRefExoticComponent<{
15
11
  header: ReactNode;
16
- defaultCollapsed?: boolean | undefined;
17
- collapsed?: boolean | undefined;
18
- onCollapsedChange?: ((collapsed: boolean) => void) | undefined;
19
- } & Pick<RadixCollapsible.CollapsibleProps & react__default.RefAttributes<HTMLDivElement>, "children" | "className"> & react__default.RefAttributes<HTMLButtonElement>>;
12
+ } & Pick<RadixCollapsible.CollapsibleProps & react__default.RefAttributes<HTMLDivElement>, "defaultOpen"> & react__default.RefAttributes<HTMLButtonElement>>;
20
13
 
21
14
  declare const Card: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLElement> & {
22
15
  action?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
23
- avatar?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
24
16
  as?: keyof react.ReactHTML | react.ComponentType<react.HTMLAttributes<HTMLElement> & {
25
17
  ref?: react.Ref<HTMLElement> | undefined;
26
18
  }> | undefined;
@@ -29,9 +21,7 @@ declare const Card: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLEle
29
21
  Title: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLHeadingElement> & {
30
22
  level?: number | undefined;
31
23
  } & react.RefAttributes<HTMLHeadingElement>>;
32
- Row: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
33
- SecondaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
34
- TertiaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
24
+ Row: "div";
35
25
  Details: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>> & {
36
26
  Detail: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
37
27
  children: react.ReactNode | ((props: {
@@ -39,39 +29,22 @@ declare const Card: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLEle
39
29
  }) => react.ReactNode);
40
30
  } & react.RefAttributes<HTMLSpanElement>> & {
41
31
  Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
42
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
43
- cardVariant?: ("info" | "light") | undefined;
44
- } & react.RefAttributes<HTMLSpanElement>>;
45
- };
46
- ButtonDetail: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>> & {
47
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
48
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
49
- cardVariant?: ("info" | "light") | undefined;
50
- } & react.RefAttributes<HTMLSpanElement>>;
51
- };
52
- LinkDetail: react.ForwardRefExoticComponent<Pick<react_router_dom.LinkProps<unknown> & react.RefAttributes<HTMLAnchorElement>, "key" | keyof react_router_dom.LinkProps<unknown>> & react.RefAttributes<HTMLAnchorElement>> & {
53
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
54
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
55
- cardVariant?: ("info" | "light") | undefined;
56
- } & react.RefAttributes<HTMLSpanElement>>;
32
+ Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
57
33
  };
58
34
  };
59
35
  };
60
36
  declare const CardList: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLUListElement> & react.RefAttributes<HTMLUListElement>> & {
61
37
  Card: react.ForwardRefExoticComponent<Pick<Omit<react.HTMLAttributes<HTMLElement> & {
62
38
  action?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
63
- avatar?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
64
39
  as?: keyof react.ReactHTML | react.ComponentType<react.HTMLAttributes<HTMLElement> & {
65
40
  ref?: react.Ref<HTMLElement> | undefined;
66
41
  }> | undefined;
67
42
  rowGap?: csstype.GapProperty<string | number> | undefined;
68
- } & react.RefAttributes<HTMLElement>, "as">, "key" | "avatar" | "rowGap" | "action" | keyof react.HTMLAttributes<HTMLElement>> & react.RefAttributes<HTMLElement>> & {
43
+ } & react.RefAttributes<HTMLElement>, "as">, "rowGap" | "action" | keyof react.HTMLAttributes<HTMLElement> | "key"> & react.RefAttributes<HTMLElement>> & {
69
44
  Title: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLHeadingElement> & {
70
45
  level?: number | undefined;
71
46
  } & react.RefAttributes<HTMLHeadingElement>>;
72
- Row: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
73
- SecondaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
74
- TertiaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
47
+ Row: "div";
75
48
  Details: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>> & {
76
49
  Detail: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
77
50
  children: react.ReactNode | ((props: {
@@ -79,21 +52,7 @@ declare const CardList: react.ForwardRefExoticComponent<react.HTMLAttributes<HTM
79
52
  }) => react.ReactNode);
80
53
  } & react.RefAttributes<HTMLSpanElement>> & {
81
54
  Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
82
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
83
- cardVariant?: ("info" | "light") | undefined;
84
- } & react.RefAttributes<HTMLSpanElement>>;
85
- };
86
- ButtonDetail: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>> & {
87
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
88
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
89
- cardVariant?: ("info" | "light") | undefined;
90
- } & react.RefAttributes<HTMLSpanElement>>;
91
- };
92
- LinkDetail: react.ForwardRefExoticComponent<Pick<react_router_dom.LinkProps<unknown> & react.RefAttributes<HTMLAnchorElement>, "key" | keyof react_router_dom.LinkProps<unknown>> & react.RefAttributes<HTMLAnchorElement>> & {
93
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
94
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
95
- cardVariant?: ("info" | "light") | undefined;
96
- } & react.RefAttributes<HTMLSpanElement>>;
55
+ Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
97
56
  };
98
57
  };
99
58
  };
@@ -101,18 +60,15 @@ declare const CardList: react.ForwardRefExoticComponent<react.HTMLAttributes<HTM
101
60
  declare const CardListBox: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLUListElement> & react.RefAttributes<HTMLUListElement>> & {
102
61
  Card: react.ForwardRefExoticComponent<Pick<Omit<react.HTMLAttributes<HTMLElement> & {
103
62
  action?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
104
- avatar?: react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
105
63
  as?: keyof react.ReactHTML | react.ComponentType<react.HTMLAttributes<HTMLElement> & {
106
64
  ref?: react.Ref<HTMLElement> | undefined;
107
65
  }> | undefined;
108
66
  rowGap?: csstype.GapProperty<string | number> | undefined;
109
- } & react.RefAttributes<HTMLElement>, "as">, "key" | "avatar" | "rowGap" | "action" | keyof react.HTMLAttributes<HTMLElement>> & react.RefAttributes<HTMLElement>> & {
67
+ } & react.RefAttributes<HTMLElement>, "as">, "rowGap" | "action" | keyof react.HTMLAttributes<HTMLElement> | "key"> & react.RefAttributes<HTMLElement>> & {
110
68
  Title: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLHeadingElement> & {
111
69
  level?: number | undefined;
112
70
  } & react.RefAttributes<HTMLHeadingElement>>;
113
- Row: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
114
- SecondaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
115
- TertiaryRow: react.ForwardRefExoticComponent<Pick<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>, keyof react.HTMLAttributes<HTMLDivElement> | "key"> & react.RefAttributes<HTMLDivElement>>;
71
+ Row: "div";
116
72
  Details: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>> & {
117
73
  Detail: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
118
74
  children: react.ReactNode | ((props: {
@@ -120,348 +76,10 @@ declare const CardListBox: react.ForwardRefExoticComponent<react.HTMLAttributes<
120
76
  }) => react.ReactNode);
121
77
  } & react.RefAttributes<HTMLSpanElement>> & {
122
78
  Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
123
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
124
- cardVariant?: ("info" | "light") | undefined;
125
- } & react.RefAttributes<HTMLSpanElement>>;
126
- };
127
- ButtonDetail: react.ForwardRefExoticComponent<react.ButtonHTMLAttributes<HTMLButtonElement> & react.RefAttributes<HTMLButtonElement>> & {
128
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
129
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
130
- cardVariant?: ("info" | "light") | undefined;
131
- } & react.RefAttributes<HTMLSpanElement>>;
132
- };
133
- LinkDetail: react.ForwardRefExoticComponent<Pick<react_router_dom.LinkProps<unknown> & react.RefAttributes<HTMLAnchorElement>, "key" | keyof react_router_dom.LinkProps<unknown>> & react.RefAttributes<HTMLAnchorElement>> & {
134
- Label: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
135
- Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & {
136
- cardVariant?: ("info" | "light") | undefined;
137
- } & react.RefAttributes<HTMLSpanElement>>;
79
+ Tag: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLSpanElement> & react.RefAttributes<HTMLSpanElement>>;
138
80
  };
139
81
  };
140
82
  };
141
83
  };
142
- declare const DataPageHeader: react.ForwardRefExoticComponent<({
143
- asChild: true;
144
- children: react.ReactElement<{
145
- className?: string | undefined;
146
- }, string | react.JSXElementConstructor<any>>;
147
- } | Pick<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & {
148
- asChild?: false | undefined;
149
- className?: string | undefined;
150
- }, keyof react.HTMLAttributes<HTMLDivElement> | "key" | "asChild">) & react.RefAttributes<HTMLDivElement>> & {
151
- Settings: react.ForwardRefExoticComponent<({
152
- asChild: true;
153
- children: react.ReactElement<{
154
- className?: string | undefined;
155
- }, string | react.JSXElementConstructor<any>>;
156
- } | Pick<react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement> & {
157
- asChild?: false | undefined;
158
- className?: string | undefined;
159
- }, keyof react.HTMLAttributes<HTMLDivElement> | "key" | "asChild">) & react.RefAttributes<HTMLDivElement>> & {
160
- Setting: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLDivElement> & {
161
- children?: react.ReactNode | ((props: {
162
- formFieldId: string;
163
- }) => react.ReactNode);
164
- } & react.RefAttributes<HTMLSpanElement>> & {
165
- Label: react.ForwardRefExoticComponent<({
166
- asChild: true;
167
- children: react.ReactElement<{
168
- className?: string | undefined;
169
- }, string | react.JSXElementConstructor<any>>;
170
- } | Pick<react.ClassAttributes<HTMLLabelElement> & react.LabelHTMLAttributes<HTMLLabelElement> & {
171
- asChild?: false | undefined;
172
- className?: string | undefined;
173
- }, "key" | "asChild" | keyof react.LabelHTMLAttributes<HTMLLabelElement>>) & react.RefAttributes<HTMLLabelElement>>;
174
- Field: react.ExoticComponent<{
175
- children?: react.ReactNode;
176
- }>;
177
- };
178
- };
179
- CreateButton: react.ForwardRefExoticComponent<({
180
- asChild: true;
181
- children: react.ReactElement<{
182
- className?: string | undefined;
183
- }, string | react.JSXElementConstructor<any>>;
184
- } | Pick<{
185
- variant?: ("primary" | "secondary" | "tertiary" | "signal") | undefined;
186
- isLoading?: boolean | undefined;
187
- testId?: string | undefined;
188
- } & react_router_dom.LinkProps<unknown> & react.RefAttributes<HTMLAnchorElement> & {
189
- asChild?: false | undefined;
190
- className?: string | undefined;
191
- }, "key" | keyof react_router_dom.LinkProps<unknown> | "asChild" | keyof {
192
- variant?: ("primary" | "secondary" | "tertiary" | "signal") | undefined;
193
- isLoading?: boolean | undefined;
194
- testId?: string | undefined;
195
- }>) & react.RefAttributes<HTMLAnchorElement>>;
196
- };
197
- declare const Tabs: react.ForwardRefExoticComponent<Pick<{
198
- children?: react_i18next.ReactI18NextChild | Iterable<react_i18next.ReactI18NextChild>;
199
- className?: string | undefined;
200
- defaultChecked?: boolean | undefined;
201
- defaultValue?: string | undefined;
202
- suppressContentEditableWarning?: boolean | undefined;
203
- suppressHydrationWarning?: boolean | undefined;
204
- accessKey?: string | undefined;
205
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
206
- contextMenu?: string | undefined;
207
- dir?: _radix_ui_react_roving_focus.Direction | undefined;
208
- draggable?: (boolean | "true" | "false") | undefined;
209
- hidden?: boolean | undefined;
210
- id?: string | undefined;
211
- lang?: string | undefined;
212
- placeholder?: string | undefined;
213
- slot?: string | undefined;
214
- spellCheck?: (boolean | "true" | "false") | undefined;
215
- style?: react.CSSProperties | undefined;
216
- tabIndex?: number | undefined;
217
- title?: string | undefined;
218
- translate?: "yes" | "no" | undefined;
219
- radioGroup?: string | undefined;
220
- role?: react.AriaRole | undefined;
221
- about?: string | undefined;
222
- datatype?: string | undefined;
223
- inlist?: any;
224
- prefix?: string | undefined;
225
- property?: string | undefined;
226
- resource?: string | undefined;
227
- typeof?: string | undefined;
228
- vocab?: string | undefined;
229
- autoCapitalize?: string | undefined;
230
- autoCorrect?: string | undefined;
231
- autoSave?: string | undefined;
232
- color?: string | undefined;
233
- itemProp?: string | undefined;
234
- itemScope?: boolean | undefined;
235
- itemType?: string | undefined;
236
- itemID?: string | undefined;
237
- itemRef?: string | undefined;
238
- results?: number | undefined;
239
- security?: string | undefined;
240
- unselectable?: "on" | "off" | undefined;
241
- inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
242
- is?: string | undefined;
243
- 'aria-activedescendant'?: string | undefined;
244
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
245
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
246
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
247
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
248
- 'aria-colcount'?: number | undefined;
249
- 'aria-colindex'?: number | undefined;
250
- 'aria-colspan'?: number | undefined;
251
- 'aria-controls'?: string | undefined;
252
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
253
- 'aria-describedby'?: string | undefined;
254
- 'aria-details'?: string | undefined;
255
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
256
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
257
- 'aria-errormessage'?: string | undefined;
258
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
259
- 'aria-flowto'?: string | undefined;
260
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
261
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
262
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
263
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
264
- 'aria-keyshortcuts'?: string | undefined;
265
- 'aria-label'?: string | undefined;
266
- 'aria-labelledby'?: string | undefined;
267
- 'aria-level'?: number | undefined;
268
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
269
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
270
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
271
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
272
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
273
- 'aria-owns'?: string | undefined;
274
- 'aria-placeholder'?: string | undefined;
275
- 'aria-posinset'?: number | undefined;
276
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
277
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
278
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
279
- 'aria-required'?: (boolean | "true" | "false") | undefined;
280
- 'aria-roledescription'?: string | undefined;
281
- 'aria-rowcount'?: number | undefined;
282
- 'aria-rowindex'?: number | undefined;
283
- 'aria-rowspan'?: number | undefined;
284
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
285
- 'aria-setsize'?: number | undefined;
286
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
287
- 'aria-valuemax'?: number | undefined;
288
- 'aria-valuemin'?: number | undefined;
289
- 'aria-valuenow'?: number | undefined;
290
- 'aria-valuetext'?: string | undefined;
291
- dangerouslySetInnerHTML?: {
292
- __html: string;
293
- } | undefined;
294
- onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
295
- onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
296
- onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
297
- onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
298
- onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
299
- onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
300
- onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
301
- onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
302
- onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
303
- onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
304
- onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
305
- onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
306
- onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
307
- onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
308
- onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
309
- onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
310
- onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
311
- onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
312
- onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
313
- onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
314
- onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
315
- onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
316
- onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
317
- onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
318
- onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
319
- onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
320
- onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
321
- onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
322
- onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
323
- onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
324
- onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
325
- onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
326
- onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
327
- onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
328
- onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
329
- onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
330
- onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
331
- onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
332
- onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
333
- onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
334
- onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
335
- onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
336
- onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
337
- onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
338
- onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
339
- onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
340
- onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
341
- onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
342
- onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
343
- onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
344
- onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
345
- onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
346
- onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
347
- onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
348
- onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
349
- onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
350
- onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
351
- onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
352
- onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
353
- onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
354
- onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
355
- onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
356
- onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
357
- onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
358
- onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
359
- onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
360
- onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
361
- onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
362
- onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
363
- onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
364
- onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
365
- onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
366
- onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
367
- onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
368
- onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
369
- onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
370
- onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
371
- onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
372
- onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
373
- onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
374
- onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
375
- onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
376
- onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
377
- onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
378
- onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
379
- onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
380
- onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
381
- onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
382
- onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
383
- onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
384
- onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
385
- onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
386
- onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
387
- onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
388
- onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
389
- onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
390
- onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
391
- onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
392
- onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
393
- onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
394
- onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
395
- onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
396
- onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
397
- onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
398
- onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
399
- onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
400
- onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
401
- onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
402
- onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
403
- onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
404
- onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
405
- onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
406
- onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
407
- onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
408
- onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
409
- onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
410
- onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
411
- onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
412
- onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
413
- onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
414
- onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
415
- onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
416
- onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
417
- onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
418
- onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
419
- onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
420
- onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
421
- onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
422
- onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
423
- onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
424
- onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
425
- onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
426
- onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
427
- onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
428
- onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
429
- onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
430
- onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
431
- onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
432
- onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
433
- onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
434
- onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
435
- onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
436
- onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
437
- onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
438
- onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
439
- onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
440
- onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
441
- onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
442
- onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
443
- onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
444
- onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
445
- onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
446
- onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
447
- onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
448
- onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
449
- onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
450
- onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
451
- onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
452
- onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
453
- onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
454
- ref?: react.Ref<HTMLDivElement> | undefined;
455
- key?: react.Key | null | undefined;
456
- asChild?: boolean | undefined;
457
- onValueChange?: ((value: string) => void) | undefined;
458
- orientation?: "horizontal" | "vertical" | undefined;
459
- activationMode?: "automatic" | "manual" | undefined;
460
- }, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "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-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" | "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" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "asChild" | "onValueChange" | "orientation" | "activationMode"> & react.RefAttributes<HTMLDivElement>> & {
461
- List: react.ForwardRefExoticComponent<react.HTMLAttributes<HTMLUListElement> & react.RefAttributes<HTMLUListElement>> & {
462
- Trigger: react.ForwardRefExoticComponent<Pick<_radix_ui_react_tabs.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "children" | "className" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "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-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" | "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" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "form" | "key" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "value" | "asChild"> & react.RefAttributes<HTMLButtonElement>>;
463
- };
464
- Content: react.ForwardRefExoticComponent<_radix_ui_react_tabs.TabsContentProps & react.RefAttributes<HTMLDivElement>>;
465
- };
466
84
 
467
- export { Card, CardList, CardListBox, Collapsible, DataPageHeader, Tabs };
85
+ export { Card, CardList, CardListBox, Collapsible };