@particle-network/ui-react 0.4.0-beta.19 → 0.4.0-beta.20

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,7 +1,4 @@
1
1
  declare const ExtendedDivider: import("react").ForwardRefExoticComponent<Omit<{
2
- slot?: any;
3
- style?: import("react").CSSProperties | undefined;
4
- title?: string | undefined;
5
2
  ref?: import("react").Ref<HTMLElement> | undefined;
6
3
  children?: any;
7
4
  defaultChecked?: any;
@@ -21,8 +18,11 @@ declare const ExtendedDivider: import("react").ForwardRefExoticComponent<Omit<{
21
18
  id?: string | undefined;
22
19
  lang?: string | undefined;
23
20
  nonce?: string | undefined;
21
+ slot?: any;
24
22
  spellCheck?: (boolean | "true" | "false") | undefined;
23
+ style?: import("react").CSSProperties | undefined;
25
24
  tabIndex?: number | undefined;
25
+ title?: string | undefined;
26
26
  translate?: "yes" | "no" | undefined;
27
27
  radioGroup?: string | undefined;
28
28
  role?: import("react").AriaRole | undefined;
@@ -67,7 +67,7 @@ declare const ExtendedDivider: import("react").ForwardRefExoticComponent<Omit<{
67
67
  "aria-colindextext"?: string | undefined;
68
68
  "aria-colspan"?: number | undefined;
69
69
  "aria-controls"?: string | undefined;
70
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
70
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
71
71
  "aria-describedby"?: string | undefined;
72
72
  "aria-description"?: string | undefined;
73
73
  "aria-details"?: string | undefined;
@@ -77,7 +77,7 @@ declare const ExtendedDivider: import("react").ForwardRefExoticComponent<Omit<{
77
77
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
78
78
  "aria-flowto"?: string | undefined;
79
79
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
80
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
80
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
81
81
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
82
82
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
83
83
  "aria-keyshortcuts"?: string | undefined;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { type IconProps } from '@/icons';
2
+ import { type IconProps } from '../../icons';
3
3
  import { type VStackProps } from '../layout';
4
4
  export interface UXEmptyProps extends VStackProps {
5
5
  iconProps?: IconProps;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { type UXTooltipProps } from '@/components';
2
+ import { type UXTooltipProps } from '..';
3
3
  export type UXHintProps = UXTooltipProps & {
4
4
  triggerType?: 'hover' | 'click';
5
5
  buttonClassName?: string;
@@ -2,11 +2,6 @@ import React from 'react';
2
2
  import ExtendedInput from './input.extend';
3
3
  export type UXInputProps = React.ComponentPropsWithRef<typeof ExtendedInput>;
4
4
  export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
5
- form?: string | undefined;
6
- label?: React.ReactNode;
7
- slot?: any;
8
- style?: React.CSSProperties | undefined;
9
- title?: string | undefined;
10
5
  fullWidth?: boolean | undefined;
11
6
  ref?: React.Ref<HTMLInputElement> | undefined;
12
7
  children?: React.ReactNode;
@@ -27,8 +22,11 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
27
22
  id?: string | undefined;
28
23
  lang?: string | undefined;
29
24
  nonce?: string | undefined;
25
+ slot?: any;
30
26
  spellCheck?: "true" | "false" | undefined;
27
+ style?: React.CSSProperties | undefined;
31
28
  tabIndex?: number | undefined;
29
+ title?: string | undefined;
32
30
  translate?: "yes" | "no" | undefined;
33
31
  radioGroup?: string | undefined;
34
32
  role?: React.AriaRole | undefined;
@@ -45,7 +43,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
45
43
  vocab?: string | undefined;
46
44
  autoCorrect?: string | undefined;
47
45
  autoSave?: string | undefined;
48
- color?: "success" | "default" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | undefined;
46
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | undefined;
49
47
  itemProp?: string | undefined;
50
48
  itemScope?: boolean | undefined;
51
49
  itemType?: string | undefined;
@@ -74,7 +72,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
74
72
  "aria-colindextext"?: string | undefined;
75
73
  "aria-colspan"?: number | undefined;
76
74
  "aria-controls"?: string | undefined;
77
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
75
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
78
76
  "aria-describedby"?: string | undefined;
79
77
  "aria-description"?: string | undefined;
80
78
  "aria-details"?: string | undefined;
@@ -84,7 +82,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
84
82
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
85
83
  "aria-flowto"?: string | undefined;
86
84
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
87
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
85
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
88
86
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
89
87
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
90
88
  "aria-keyshortcuts"?: string | undefined;
@@ -286,6 +284,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
286
284
  onTransitionRunCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
287
285
  onTransitionStart?: React.TransitionEventHandler<HTMLInputElement> | undefined;
288
286
  onTransitionStartCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
287
+ form?: string | undefined;
289
288
  list?: string | undefined;
290
289
  step?: string | number | undefined;
291
290
  size?: "sm" | "md" | "lg" | undefined;
@@ -302,7 +301,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
302
301
  type?: string | undefined;
303
302
  key?: React.Key | null | undefined;
304
303
  isClearable?: boolean | undefined;
305
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "input" | "label" | "description" | "errorMessage" | "clearButton" | "mainWrapper" | "inputWrapper" | "innerWrapper" | "helperWrapper"> | undefined;
304
+ classNames?: import("@heroui/theme").SlotsToClasses<"description" | "errorMessage" | "label" | "base" | "input" | "clearButton" | "mainWrapper" | "inputWrapper" | "innerWrapper" | "helperWrapper"> | undefined;
306
305
  isDisabled?: boolean | undefined;
307
306
  isReadOnly?: boolean | undefined;
308
307
  isRequired?: boolean | undefined;
@@ -314,6 +313,7 @@ export declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
314
313
  errorMessage?: React.ReactNode | ((v: import("@react-types/shared").ValidationResult) => React.ReactNode);
315
314
  onFocusChange?: ((isFocused: boolean) => void) | undefined;
316
315
  placeholder?: string | undefined;
316
+ label?: React.ReactNode;
317
317
  excludeFromTabOrder?: boolean | undefined;
318
318
  autoComplete?: string | undefined;
319
319
  maxLength?: number | undefined;
@@ -1,9 +1,4 @@
1
1
  declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
2
- form?: string | undefined;
3
- label?: import("react").ReactNode;
4
- slot?: any;
5
- style?: import("react").CSSProperties | undefined;
6
- title?: string | undefined;
7
2
  fullWidth?: boolean | undefined;
8
3
  ref?: import("react").Ref<HTMLInputElement> | undefined;
9
4
  children?: import("react").ReactNode;
@@ -24,8 +19,11 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
24
19
  id?: string | undefined;
25
20
  lang?: string | undefined;
26
21
  nonce?: string | undefined;
22
+ slot?: any;
27
23
  spellCheck?: "true" | "false" | undefined;
24
+ style?: import("react").CSSProperties | undefined;
28
25
  tabIndex?: number | undefined;
26
+ title?: string | undefined;
29
27
  translate?: "yes" | "no" | undefined;
30
28
  radioGroup?: string | undefined;
31
29
  role?: import("react").AriaRole | undefined;
@@ -42,7 +40,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
42
40
  vocab?: string | undefined;
43
41
  autoCorrect?: string | undefined;
44
42
  autoSave?: string | undefined;
45
- color?: "success" | "default" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | undefined;
43
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | undefined;
46
44
  itemProp?: string | undefined;
47
45
  itemScope?: boolean | undefined;
48
46
  itemType?: string | undefined;
@@ -71,7 +69,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
71
69
  "aria-colindextext"?: string | undefined;
72
70
  "aria-colspan"?: number | undefined;
73
71
  "aria-controls"?: string | undefined;
74
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
72
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
75
73
  "aria-describedby"?: string | undefined;
76
74
  "aria-description"?: string | undefined;
77
75
  "aria-details"?: string | undefined;
@@ -81,7 +79,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
81
79
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
82
80
  "aria-flowto"?: string | undefined;
83
81
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
84
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
82
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
85
83
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
86
84
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
87
85
  "aria-keyshortcuts"?: string | undefined;
@@ -283,6 +281,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
283
281
  onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
284
282
  onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
285
283
  onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
284
+ form?: string | undefined;
286
285
  list?: string | undefined;
287
286
  step?: string | number | undefined;
288
287
  size?: "sm" | "md" | "lg" | undefined;
@@ -299,7 +298,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
299
298
  type?: string | undefined;
300
299
  key?: import("react").Key | null | undefined;
301
300
  isClearable?: boolean | undefined;
302
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "input" | "label" | "description" | "errorMessage" | "clearButton" | "mainWrapper" | "inputWrapper" | "innerWrapper" | "helperWrapper"> | undefined;
301
+ classNames?: import("@heroui/theme").SlotsToClasses<"description" | "errorMessage" | "label" | "base" | "input" | "clearButton" | "mainWrapper" | "inputWrapper" | "innerWrapper" | "helperWrapper"> | undefined;
303
302
  isDisabled?: boolean | undefined;
304
303
  isReadOnly?: boolean | undefined;
305
304
  isRequired?: boolean | undefined;
@@ -311,6 +310,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
311
310
  errorMessage?: import("react").ReactNode | ((v: import("@react-types/shared").ValidationResult) => import("react").ReactNode);
312
311
  onFocusChange?: ((isFocused: boolean) => void) | undefined;
313
312
  placeholder?: string | undefined;
313
+ label?: import("react").ReactNode;
314
314
  excludeFromTabOrder?: boolean | undefined;
315
315
  autoComplete?: string | undefined;
316
316
  maxLength?: number | undefined;
@@ -2,10 +2,6 @@ import React from 'react';
2
2
  import ExtendedSwitch from './switch.extend';
3
3
  export type UXSwitchProps = React.ComponentPropsWithRef<typeof ExtendedSwitch>;
4
4
  export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
5
- form?: string | undefined;
6
- slot?: any;
7
- style?: React.CSSProperties | undefined;
8
- title?: string | undefined;
9
5
  ref?: React.Ref<HTMLInputElement> | undefined;
10
6
  children?: React.ReactNode;
11
7
  defaultChecked?: any;
@@ -25,8 +21,11 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
25
21
  id?: string | undefined;
26
22
  lang?: string | undefined;
27
23
  nonce?: string | undefined;
24
+ slot?: any;
28
25
  spellCheck?: (boolean | "true" | "false") | undefined;
26
+ style?: React.CSSProperties | undefined;
29
27
  tabIndex?: number | undefined;
28
+ title?: string | undefined;
30
29
  translate?: "yes" | "no" | undefined;
31
30
  radioGroup?: string | undefined;
32
31
  role?: React.AriaRole | undefined;
@@ -43,7 +42,7 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
43
42
  vocab?: string | undefined;
44
43
  autoCorrect?: string | undefined;
45
44
  autoSave?: string | undefined;
46
- color?: "success" | "default" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | "contrast" | undefined;
45
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | "contrast" | undefined;
47
46
  itemProp?: string | undefined;
48
47
  itemScope?: boolean | undefined;
49
48
  itemType?: string | undefined;
@@ -72,7 +71,7 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
72
71
  "aria-colindextext"?: string | undefined;
73
72
  "aria-colspan"?: number | undefined;
74
73
  "aria-controls"?: string | undefined;
75
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
74
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
76
75
  "aria-describedby"?: string | undefined;
77
76
  "aria-description"?: string | undefined;
78
77
  "aria-details"?: string | undefined;
@@ -82,7 +81,7 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
82
81
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
83
82
  "aria-flowto"?: string | undefined;
84
83
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
85
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
84
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
86
85
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
87
86
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
88
87
  "aria-keyshortcuts"?: string | undefined;
@@ -284,6 +283,7 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
284
283
  onTransitionRunCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
285
284
  onTransitionStart?: React.TransitionEventHandler<HTMLInputElement> | undefined;
286
285
  onTransitionStartCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
286
+ form?: string | undefined;
287
287
  list?: string | undefined;
288
288
  step?: string | number | undefined;
289
289
  size?: "sm" | "md" | "lg" | undefined;
@@ -297,7 +297,7 @@ export declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
297
297
  name?: string | undefined;
298
298
  type?: React.HTMLInputTypeAttribute | undefined;
299
299
  key?: React.Key | null | undefined;
300
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "label" | "startContent" | "endContent" | "wrapper" | "hiddenInput" | "thumb" | "thumbIcon"> | undefined;
300
+ classNames?: import("@heroui/theme").SlotsToClasses<"label" | "base" | "startContent" | "endContent" | "wrapper" | "hiddenInput" | "thumb" | "thumbIcon"> | undefined;
301
301
  isDisabled?: boolean | undefined;
302
302
  isReadOnly?: boolean | undefined;
303
303
  onFocusChange?: ((isFocused: boolean) => void) | undefined;
@@ -1,8 +1,4 @@
1
1
  declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
2
- form?: string | undefined;
3
- slot?: any;
4
- style?: import("react").CSSProperties | undefined;
5
- title?: string | undefined;
6
2
  ref?: import("react").Ref<HTMLInputElement> | undefined;
7
3
  children?: import("react").ReactNode;
8
4
  defaultChecked?: any;
@@ -22,8 +18,11 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
22
18
  id?: string | undefined;
23
19
  lang?: string | undefined;
24
20
  nonce?: string | undefined;
21
+ slot?: any;
25
22
  spellCheck?: (boolean | "true" | "false") | undefined;
23
+ style?: import("react").CSSProperties | undefined;
26
24
  tabIndex?: number | undefined;
25
+ title?: string | undefined;
27
26
  translate?: "yes" | "no" | undefined;
28
27
  radioGroup?: string | undefined;
29
28
  role?: import("react").AriaRole | undefined;
@@ -40,7 +39,7 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
40
39
  vocab?: string | undefined;
41
40
  autoCorrect?: string | undefined;
42
41
  autoSave?: string | undefined;
43
- color?: "success" | "default" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | "contrast" | undefined;
42
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | "bullish" | "bearish" | "contrast" | undefined;
44
43
  itemProp?: string | undefined;
45
44
  itemScope?: boolean | undefined;
46
45
  itemType?: string | undefined;
@@ -69,7 +68,7 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
69
68
  "aria-colindextext"?: string | undefined;
70
69
  "aria-colspan"?: number | undefined;
71
70
  "aria-controls"?: string | undefined;
72
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
71
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
73
72
  "aria-describedby"?: string | undefined;
74
73
  "aria-description"?: string | undefined;
75
74
  "aria-details"?: string | undefined;
@@ -79,7 +78,7 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
79
78
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
80
79
  "aria-flowto"?: string | undefined;
81
80
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
82
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
81
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
83
82
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
84
83
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
85
84
  "aria-keyshortcuts"?: string | undefined;
@@ -281,6 +280,7 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
281
280
  onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
282
281
  onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
283
282
  onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
283
+ form?: string | undefined;
284
284
  list?: string | undefined;
285
285
  step?: string | number | undefined;
286
286
  size?: "sm" | "md" | "lg" | undefined;
@@ -294,7 +294,7 @@ declare const ExtendedSwitch: import("react").ForwardRefExoticComponent<Omit<{
294
294
  name?: string | undefined;
295
295
  type?: import("react").HTMLInputTypeAttribute | undefined;
296
296
  key?: import("react").Key | null | undefined;
297
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "label" | "startContent" | "endContent" | "wrapper" | "hiddenInput" | "thumb" | "thumbIcon"> | undefined;
297
+ classNames?: import("@heroui/theme").SlotsToClasses<"label" | "base" | "startContent" | "endContent" | "wrapper" | "hiddenInput" | "thumb" | "thumbIcon"> | undefined;
298
298
  isDisabled?: boolean | undefined;
299
299
  isReadOnly?: boolean | undefined;
300
300
  onFocusChange?: ((isFocused: boolean) => void) | undefined;
@@ -2,30 +2,17 @@ import React from 'react';
2
2
  import ExtendedTable from './table.extend';
3
3
  export type UXTableProps = React.ComponentPropsWithRef<typeof ExtendedTable>;
4
4
  export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRenderFunction<"table", Omit<{
5
- className?: string | undefined;
6
- size?: "md" | "lg" | undefined;
7
- color?: "default" | "success" | "primary" | "secondary" | "warning" | "danger" | undefined;
8
- radius?: "none" | "sm" | "md" | "lg" | undefined;
9
- disableAnimation?: boolean | undefined;
10
- shadow?: "none" | "sm" | "md" | "lg" | undefined;
11
- "aria-label"?: string | undefined;
12
- "aria-labelledby"?: string | undefined;
13
- "aria-describedby"?: string | undefined;
14
- "aria-details"?: string | undefined;
15
- slot?: any;
16
- style?: React.CSSProperties | undefined;
17
- summary?: string | undefined;
18
- title?: string | undefined;
5
+ fullWidth?: boolean | undefined;
19
6
  ref?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
7
+ children?: ((string | number | bigint | boolean | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | React.ReactPortal | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null) & [React.ReactElement<import("@react-types/table").TableHeaderProps<object>, string | React.JSXElementConstructor<any>>, React.ReactElement<import("@react-types/table").TableBodyProps<object>, string | React.JSXElementConstructor<any>>]) | undefined;
20
8
  defaultChecked?: any;
21
9
  defaultValue?: any;
22
- as?: import("@heroui/system-rsc").As<any> | undefined;
23
- key?: React.Key | null | undefined;
24
10
  suppressContentEditableWarning?: boolean | undefined;
25
11
  suppressHydrationWarning?: boolean | undefined;
26
12
  accessKey?: string | undefined;
27
13
  autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
28
14
  autoFocus?: boolean | undefined;
15
+ className?: string | undefined;
29
16
  contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
30
17
  contextMenu?: string | undefined;
31
18
  dir?: string | undefined;
@@ -35,8 +22,11 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
35
22
  id?: string | undefined;
36
23
  lang?: string | undefined;
37
24
  nonce?: string | undefined;
25
+ slot?: any;
38
26
  spellCheck?: (boolean | "true" | "false") | undefined;
27
+ style?: React.CSSProperties | undefined;
39
28
  tabIndex?: number | undefined;
29
+ title?: string | undefined;
40
30
  translate?: "yes" | "no" | undefined;
41
31
  radioGroup?: string | undefined;
42
32
  role?: React.AriaRole | undefined;
@@ -53,6 +43,7 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
53
43
  vocab?: string | undefined;
54
44
  autoCorrect?: string | undefined;
55
45
  autoSave?: string | undefined;
46
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | undefined;
56
47
  itemProp?: string | undefined;
57
48
  itemScope?: boolean | undefined;
58
49
  itemType?: string | undefined;
@@ -65,7 +56,7 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
65
56
  popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
66
57
  popoverTarget?: string | undefined;
67
58
  inert?: boolean | undefined;
68
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
59
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
69
60
  is?: string | undefined;
70
61
  exportparts?: string | undefined;
71
62
  part?: string | undefined;
@@ -81,24 +72,28 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
81
72
  "aria-colindextext"?: string | undefined;
82
73
  "aria-colspan"?: number | undefined;
83
74
  "aria-controls"?: string | undefined;
84
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
75
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
76
+ "aria-describedby"?: string | undefined;
85
77
  "aria-description"?: string | undefined;
78
+ "aria-details"?: string | undefined;
86
79
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
87
80
  "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
88
81
  "aria-errormessage"?: string | undefined;
89
82
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
90
83
  "aria-flowto"?: string | undefined;
91
84
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
92
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
85
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
93
86
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
94
87
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
95
88
  "aria-keyshortcuts"?: string | undefined;
89
+ "aria-label"?: string | undefined;
90
+ "aria-labelledby"?: string | undefined;
96
91
  "aria-level"?: number | undefined;
97
92
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
98
93
  "aria-modal"?: (boolean | "true" | "false") | undefined;
99
94
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
100
95
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
101
- "aria-orientation"?: "horizontal" | "vertical" | undefined;
96
+ "aria-orientation"?: "vertical" | "horizontal" | undefined;
102
97
  "aria-owns"?: string | undefined;
103
98
  "aria-placeholder"?: string | undefined;
104
99
  "aria-posinset"?: number | undefined;
@@ -118,7 +113,6 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
118
113
  "aria-valuemin"?: number | undefined;
119
114
  "aria-valuenow"?: number | undefined;
120
115
  "aria-valuetext"?: string | undefined;
121
- children?: ((string | number | bigint | boolean | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | React.ReactPortal | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | null) & [React.ReactElement<import("@react-types/table").TableHeaderProps<object>, string | React.JSXElementConstructor<any>>, React.ReactElement<import("@react-types/table").TableBodyProps<object>, string | React.JSXElementConstructor<any>>]) | undefined;
122
116
  dangerouslySetInnerHTML?: {
123
117
  __html: string | TrustedHTML;
124
118
  } | undefined;
@@ -290,22 +284,28 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
290
284
  onTransitionRunCapture?: React.TransitionEventHandler<HTMLTableElement> | undefined;
291
285
  onTransitionStart?: React.TransitionEventHandler<HTMLTableElement> | undefined;
292
286
  onTransitionStartCapture?: React.TransitionEventHandler<HTMLTableElement> | undefined;
293
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "table" | "tbody" | "td" | "tfoot" | "th" | "thead" | "tr" | "wrapper" | "sortIcon" | "emptyWrapper" | "loadingWrapper"> | undefined;
294
- align?: "center" | "start" | "end" | undefined;
295
- fullWidth?: boolean | undefined;
296
- layout?: "auto" | "fixed" | undefined;
287
+ align?: "start" | "end" | "center" | undefined;
288
+ size?: "md" | "lg" | undefined;
297
289
  width?: string | number | undefined;
298
- baseRef?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
299
- scrollRef?: import("@react-types/shared").RefObject<HTMLElement | null> | undefined;
290
+ radius?: "sm" | "md" | "lg" | "none" | undefined;
291
+ layout?: "auto" | "fixed" | undefined;
300
292
  border?: number | undefined;
293
+ key?: React.Key | null | undefined;
294
+ classNames?: import("@heroui/theme").SlotsToClasses<"table" | "base" | "tbody" | "td" | "tfoot" | "th" | "thead" | "tr" | "wrapper" | "sortIcon" | "emptyWrapper" | "loadingWrapper"> | undefined;
295
+ disableAnimation?: boolean | undefined;
296
+ summary?: string | undefined;
297
+ as?: import("@heroui/system-rsc").As<any> | undefined;
298
+ baseRef?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
301
299
  disallowEmptySelection?: boolean | undefined;
302
300
  onSelectionChange?: ((keys: import("@react-types/shared").Selection) => void) | undefined;
303
301
  disabledKeys?: Iterable<import("@react-types/shared").Key> | undefined;
302
+ scrollRef?: import("@react-types/shared").RefObject<HTMLElement | null> | undefined;
304
303
  isVirtualized?: boolean | undefined;
304
+ shadow?: "sm" | "md" | "lg" | "none" | undefined;
305
305
  topContent?: React.ReactNode;
306
306
  bottomContent?: React.ReactNode;
307
307
  keyboardDelegate?: import("@react-types/shared").KeyboardDelegate | undefined;
308
- selectionBehavior?: "toggle" | "replace" | undefined;
308
+ selectionBehavior?: "replace" | "toggle" | undefined;
309
309
  shouldSelectOnPressUp?: boolean | undefined;
310
310
  escapeKeyBehavior?: "none" | "clearSelection" | undefined;
311
311
  selectionMode?: import("@react-types/shared").SelectionMode | undefined;
@@ -324,7 +324,7 @@ export declare const UXTable: import("@heroui/system-rsc").InternalForwardRefRen
324
324
  isMultiSelectable?: boolean | undefined;
325
325
  layoutDelegate?: import("@react-types/shared").LayoutDelegate | undefined;
326
326
  disallowTypeAhead?: boolean | undefined;
327
- focusMode?: "cell" | "row" | undefined;
327
+ focusMode?: "row" | "cell" | undefined;
328
328
  getRowText?: ((key: import("@react-types/shared").Key) => string) | undefined;
329
329
  onRowAction?: (((key: React.Key) => void) & ((key: import("@react-types/shared").Key) => void)) | undefined;
330
330
  onCellAction?: (((key: React.Key) => void) & ((key: import("@react-types/shared").Key) => void)) | undefined;
@@ -1,28 +1,15 @@
1
1
  declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
2
- className?: string | undefined;
3
- size?: "md" | "lg" | undefined;
4
- color?: "default" | "success" | "primary" | "secondary" | "warning" | "danger" | undefined;
5
- radius?: "none" | "sm" | "md" | "lg" | undefined;
6
- disableAnimation?: boolean | undefined;
7
- shadow?: "none" | "sm" | "md" | "lg" | undefined;
8
- "aria-label"?: string | undefined;
9
- "aria-labelledby"?: string | undefined;
10
- "aria-describedby"?: string | undefined;
11
- "aria-details"?: string | undefined;
12
- slot?: any;
13
- style?: import("react").CSSProperties | undefined;
14
- summary?: string | undefined;
15
- title?: string | undefined;
2
+ fullWidth?: boolean | undefined;
16
3
  ref?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
4
+ children?: ((string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | null) & [import("react").ReactElement<import("@react-types/table").TableHeaderProps<object>, string | import("react").JSXElementConstructor<any>>, import("react").ReactElement<import("@react-types/table").TableBodyProps<object>, string | import("react").JSXElementConstructor<any>>]) | undefined;
17
5
  defaultChecked?: any;
18
6
  defaultValue?: any;
19
- as?: import("@heroui/system-rsc").As<any> | undefined;
20
- key?: import("react").Key | null | undefined;
21
7
  suppressContentEditableWarning?: boolean | undefined;
22
8
  suppressHydrationWarning?: boolean | undefined;
23
9
  accessKey?: string | undefined;
24
10
  autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
25
11
  autoFocus?: boolean | undefined;
12
+ className?: string | undefined;
26
13
  contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
27
14
  contextMenu?: string | undefined;
28
15
  dir?: string | undefined;
@@ -32,8 +19,11 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
32
19
  id?: string | undefined;
33
20
  lang?: string | undefined;
34
21
  nonce?: string | undefined;
22
+ slot?: any;
35
23
  spellCheck?: (boolean | "true" | "false") | undefined;
24
+ style?: import("react").CSSProperties | undefined;
36
25
  tabIndex?: number | undefined;
26
+ title?: string | undefined;
37
27
  translate?: "yes" | "no" | undefined;
38
28
  radioGroup?: string | undefined;
39
29
  role?: import("react").AriaRole | undefined;
@@ -50,6 +40,7 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
50
40
  vocab?: string | undefined;
51
41
  autoCorrect?: string | undefined;
52
42
  autoSave?: string | undefined;
43
+ color?: "default" | "success" | "secondary" | "primary" | "danger" | "warning" | undefined;
53
44
  itemProp?: string | undefined;
54
45
  itemScope?: boolean | undefined;
55
46
  itemType?: string | undefined;
@@ -62,7 +53,7 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
62
53
  popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
63
54
  popoverTarget?: string | undefined;
64
55
  inert?: boolean | undefined;
65
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
56
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
66
57
  is?: string | undefined;
67
58
  exportparts?: string | undefined;
68
59
  part?: string | undefined;
@@ -78,24 +69,28 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
78
69
  "aria-colindextext"?: string | undefined;
79
70
  "aria-colspan"?: number | undefined;
80
71
  "aria-controls"?: string | undefined;
81
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
72
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
73
+ "aria-describedby"?: string | undefined;
82
74
  "aria-description"?: string | undefined;
75
+ "aria-details"?: string | undefined;
83
76
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
84
77
  "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
85
78
  "aria-errormessage"?: string | undefined;
86
79
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
87
80
  "aria-flowto"?: string | undefined;
88
81
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
89
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
82
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
90
83
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
91
84
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
92
85
  "aria-keyshortcuts"?: string | undefined;
86
+ "aria-label"?: string | undefined;
87
+ "aria-labelledby"?: string | undefined;
93
88
  "aria-level"?: number | undefined;
94
89
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
95
90
  "aria-modal"?: (boolean | "true" | "false") | undefined;
96
91
  "aria-multiline"?: (boolean | "true" | "false") | undefined;
97
92
  "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
98
- "aria-orientation"?: "horizontal" | "vertical" | undefined;
93
+ "aria-orientation"?: "vertical" | "horizontal" | undefined;
99
94
  "aria-owns"?: string | undefined;
100
95
  "aria-placeholder"?: string | undefined;
101
96
  "aria-posinset"?: number | undefined;
@@ -115,7 +110,6 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
115
110
  "aria-valuemin"?: number | undefined;
116
111
  "aria-valuenow"?: number | undefined;
117
112
  "aria-valuetext"?: string | undefined;
118
- children?: ((string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | null) & [import("react").ReactElement<import("@react-types/table").TableHeaderProps<object>, string | import("react").JSXElementConstructor<any>>, import("react").ReactElement<import("@react-types/table").TableBodyProps<object>, string | import("react").JSXElementConstructor<any>>]) | undefined;
119
113
  dangerouslySetInnerHTML?: {
120
114
  __html: string | TrustedHTML;
121
115
  } | undefined;
@@ -287,22 +281,28 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
287
281
  onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLTableElement> | undefined;
288
282
  onTransitionStart?: import("react").TransitionEventHandler<HTMLTableElement> | undefined;
289
283
  onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLTableElement> | undefined;
290
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "table" | "tbody" | "td" | "tfoot" | "th" | "thead" | "tr" | "wrapper" | "sortIcon" | "emptyWrapper" | "loadingWrapper"> | undefined;
291
- align?: "center" | "start" | "end" | undefined;
292
- fullWidth?: boolean | undefined;
293
- layout?: "auto" | "fixed" | undefined;
284
+ align?: "start" | "end" | "center" | undefined;
285
+ size?: "md" | "lg" | undefined;
294
286
  width?: string | number | undefined;
295
- baseRef?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
296
- scrollRef?: import("@react-types/shared").RefObject<HTMLElement | null> | undefined;
287
+ radius?: "sm" | "md" | "lg" | "none" | undefined;
288
+ layout?: "auto" | "fixed" | undefined;
297
289
  border?: number | undefined;
290
+ key?: import("react").Key | null | undefined;
291
+ classNames?: import("@heroui/theme").SlotsToClasses<"table" | "base" | "tbody" | "td" | "tfoot" | "th" | "thead" | "tr" | "wrapper" | "sortIcon" | "emptyWrapper" | "loadingWrapper"> | undefined;
292
+ disableAnimation?: boolean | undefined;
293
+ summary?: string | undefined;
294
+ as?: import("@heroui/system-rsc").As<any> | undefined;
295
+ baseRef?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
298
296
  disallowEmptySelection?: boolean | undefined;
299
297
  onSelectionChange?: ((keys: import("@react-types/shared").Selection) => void) | undefined;
300
298
  disabledKeys?: Iterable<import("@react-types/shared").Key> | undefined;
299
+ scrollRef?: import("@react-types/shared").RefObject<HTMLElement | null> | undefined;
301
300
  isVirtualized?: boolean | undefined;
301
+ shadow?: "sm" | "md" | "lg" | "none" | undefined;
302
302
  topContent?: import("react").ReactNode;
303
303
  bottomContent?: import("react").ReactNode;
304
304
  keyboardDelegate?: import("@react-types/shared").KeyboardDelegate | undefined;
305
- selectionBehavior?: "toggle" | "replace" | undefined;
305
+ selectionBehavior?: "replace" | "toggle" | undefined;
306
306
  shouldSelectOnPressUp?: boolean | undefined;
307
307
  escapeKeyBehavior?: "none" | "clearSelection" | undefined;
308
308
  selectionMode?: import("@react-types/shared").SelectionMode | undefined;
@@ -321,7 +321,7 @@ declare const ExtendedTable: import("react").ForwardRefExoticComponent<Omit<{
321
321
  isMultiSelectable?: boolean | undefined;
322
322
  layoutDelegate?: import("@react-types/shared").LayoutDelegate | undefined;
323
323
  disallowTypeAhead?: boolean | undefined;
324
- focusMode?: "cell" | "row" | undefined;
324
+ focusMode?: "row" | "cell" | undefined;
325
325
  getRowText?: ((key: import("@react-types/shared").Key) => string) | undefined;
326
326
  onRowAction?: (((key: import("react").Key) => void) & ((key: import("@react-types/shared").Key) => void)) | undefined;
327
327
  onCellAction?: (((key: import("react").Key) => void) & ((key: import("@react-types/shared").Key) => void)) | undefined;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import ExtendedTabs from './tabs.extend';
3
3
  export type UXTabsProps = React.ComponentPropsWithRef<typeof ExtendedTabs>;
4
- export declare const UXTabs: React.ForwardRefExoticComponent<Omit<Omit<import("@heroui/tabs").TabsProps, "variant" | "color"> & {
4
+ export declare const UXTabs: React.ForwardRefExoticComponent<Omit<Omit<import("@heroui/tabs").TabsProps, "color" | "variant"> & {
5
5
  variant?: "solid" | "light" | "text" | "switch";
6
6
  color?: "default" | "primary" | "success" | "warning" | "danger" | "bullish" | "bearish";
7
7
  }, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1,7 +1,4 @@
1
1
  declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
2
- slot?: any;
3
- style?: import("react").CSSProperties | undefined;
4
- title?: string | undefined;
5
2
  ref?: import("@heroui/react-utils").ReactRef<HTMLElement | null> | undefined;
6
3
  children?: import("react").ReactNode;
7
4
  defaultChecked?: any;
@@ -21,8 +18,11 @@ declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
21
18
  id?: string | undefined;
22
19
  lang?: string | undefined;
23
20
  nonce?: string | undefined;
21
+ slot?: any;
24
22
  spellCheck?: (boolean | "true" | "false") | undefined;
23
+ style?: import("react").CSSProperties | undefined;
25
24
  tabIndex?: number | undefined;
25
+ title?: string | undefined;
26
26
  translate?: "yes" | "no" | undefined;
27
27
  radioGroup?: string | undefined;
28
28
  role?: import("react").AriaRole | undefined;
@@ -39,7 +39,7 @@ declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
39
39
  vocab?: string | undefined;
40
40
  autoCorrect?: string | undefined;
41
41
  autoSave?: string | undefined;
42
- color?: "success" | "default" | "foreground" | "secondary" | "primary" | "danger" | "warning" | undefined;
42
+ color?: "default" | "success" | "foreground" | "secondary" | "primary" | "danger" | "warning" | undefined;
43
43
  itemProp?: string | undefined;
44
44
  itemScope?: boolean | undefined;
45
45
  itemType?: string | undefined;
@@ -68,7 +68,7 @@ declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
68
68
  "aria-colindextext"?: string | undefined;
69
69
  "aria-colspan"?: number | undefined;
70
70
  "aria-controls"?: string | undefined;
71
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
71
+ "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
72
72
  "aria-describedby"?: string | undefined;
73
73
  "aria-description"?: string | undefined;
74
74
  "aria-details"?: string | undefined;
@@ -78,7 +78,7 @@ declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
78
78
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
79
79
  "aria-flowto"?: string | undefined;
80
80
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
81
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
81
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
82
82
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
83
83
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
84
84
  "aria-keyshortcuts"?: string | undefined;
@@ -284,7 +284,7 @@ declare const ExtendedTooltip: import("react").ForwardRefExoticComponent<Omit<{
284
284
  radius?: "sm" | "md" | "lg" | "none" | "full" | undefined;
285
285
  offset?: number | undefined;
286
286
  key?: import("react").Key | null | undefined;
287
- classNames?: import("@heroui/theme").SlotsToClasses<"base" | "content" | "arrow"> | undefined;
287
+ classNames?: import("@heroui/theme").SlotsToClasses<"content" | "base" | "arrow"> | undefined;
288
288
  isDisabled?: boolean | undefined;
289
289
  disableAnimation?: boolean | undefined;
290
290
  as?: import("@heroui/system-rsc").As<any> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-network/ui-react",
3
- "version": "0.4.0-beta.19",
3
+ "version": "0.4.0-beta.20",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -49,8 +49,8 @@
49
49
  "ahooks": "^3.9.4",
50
50
  "copy-to-clipboard": "^3.3.3",
51
51
  "zustand": "^5.0.8",
52
- "@particle-network/icons": "0.4.0-beta.11",
53
- "@particle-network/ui-shared": "0.3.0-beta.4"
52
+ "@particle-network/icons": "0.4.0-beta.12",
53
+ "@particle-network/ui-shared": "0.3.0-beta.5"
54
54
  },
55
55
  "scripts": {
56
56
  "build": "rslib build",