@shlinkio/shlink-frontend-kit 1.3.1 → 1.4.0
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/index.d.ts +136 -142
- package/dist/index.js +717 -725
- package/package.json +11 -10
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,6 @@ import { ChangeEvent } from 'react';
|
|
|
2
2
|
import { Coords } from '@floating-ui/utils';
|
|
3
3
|
import { Dispatch } from 'react';
|
|
4
4
|
import { FC } from 'react';
|
|
5
|
-
import { ForwardedRef } from 'react';
|
|
6
|
-
import { ForwardRefExoticComponent } from 'react';
|
|
7
5
|
import { HTMLProps } from 'react';
|
|
8
6
|
import { InputHTMLAttributes } from 'react';
|
|
9
7
|
import { JSX } from 'react/jsx-runtime';
|
|
@@ -13,7 +11,7 @@ import { Placement } from '@floating-ui/react';
|
|
|
13
11
|
import { Property } from 'csstype';
|
|
14
12
|
import { PropsWithChildren } from 'react';
|
|
15
13
|
import { ReactNode } from 'react';
|
|
16
|
-
import {
|
|
14
|
+
import { Ref } from 'react';
|
|
17
15
|
import { ReferenceType } from '@floating-ui/react-dom';
|
|
18
16
|
import { ReferenceType as ReferenceType_2 } from '@floating-ui/react';
|
|
19
17
|
import { RefObject } from 'react';
|
|
@@ -48,6 +46,7 @@ export declare const BaseNavBar: FC<NavBarProps>;
|
|
|
48
46
|
|
|
49
47
|
declare type BooleanControlProps = Omit<HTMLProps<HTMLInputElement>, 'type' | 'onChange' | 'value' | 'defaultValue'> & {
|
|
50
48
|
onChange?: (checked: boolean, e: ChangeEvent<HTMLInputElement>) => void;
|
|
49
|
+
ref?: Ref<HTMLInputElement>;
|
|
51
50
|
};
|
|
52
51
|
|
|
53
52
|
export declare const BRAND_COLOR_ALPHA_DM = "rgba(70, 150, 229, 0.4)";
|
|
@@ -62,27 +61,7 @@ export declare const brandColor: () => "#4696e5" | "#2078CF";
|
|
|
62
61
|
|
|
63
62
|
export declare const brandColorAlpha: () => "rgba(70, 150, 229, 0.4)" | "rgba(32, 120, 207, 0.4)";
|
|
64
63
|
|
|
65
|
-
export declare const Button:
|
|
66
|
-
disabled?: boolean;
|
|
67
|
-
className?: string;
|
|
68
|
-
variant?: "primary" | "secondary" | "danger";
|
|
69
|
-
type?: HTMLButtonElement["type"];
|
|
70
|
-
size?: Size;
|
|
71
|
-
inline?: boolean;
|
|
72
|
-
solid?: boolean;
|
|
73
|
-
} & LinkProps & {
|
|
74
|
-
children?: ReactNode | undefined;
|
|
75
|
-
}) | Omit<{
|
|
76
|
-
disabled?: boolean;
|
|
77
|
-
className?: string;
|
|
78
|
-
variant?: "primary" | "secondary" | "danger";
|
|
79
|
-
type?: HTMLButtonElement["type"];
|
|
80
|
-
size?: Size;
|
|
81
|
-
inline?: boolean;
|
|
82
|
-
solid?: boolean;
|
|
83
|
-
} & RegularButtonProps & {
|
|
84
|
-
children?: ReactNode | undefined;
|
|
85
|
-
}, "ref">) & RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
64
|
+
export declare const Button: FC<ButtonProps>;
|
|
86
65
|
|
|
87
66
|
export declare type ButtonProps = PropsWithChildren<{
|
|
88
67
|
disabled?: boolean;
|
|
@@ -92,16 +71,17 @@ export declare type ButtonProps = PropsWithChildren<{
|
|
|
92
71
|
size?: Size;
|
|
93
72
|
inline?: boolean;
|
|
94
73
|
solid?: boolean;
|
|
74
|
+
ref?: Ref<HTMLButtonElement | HTMLAnchorElement>;
|
|
95
75
|
} & (RegularButtonProps | LinkButtonProps_2)>;
|
|
96
76
|
|
|
97
77
|
declare type ButtonProps_2 = Omit<HTMLProps<HTMLButtonElement>, 'role' | 'disabled' | 'aria-disabled' | 'tabIndex' | 'type'>;
|
|
98
78
|
|
|
99
79
|
export declare type Callback = () => unknown;
|
|
100
80
|
|
|
101
|
-
export declare const Card:
|
|
102
|
-
Body:
|
|
103
|
-
Header:
|
|
104
|
-
Footer:
|
|
81
|
+
export declare const Card: FC<CardProps> & {
|
|
82
|
+
Body: FC<CardProps>;
|
|
83
|
+
Header: FC<CardProps>;
|
|
84
|
+
Footer: FC<CardProps>;
|
|
105
85
|
};
|
|
106
86
|
|
|
107
87
|
/**
|
|
@@ -111,7 +91,7 @@ export declare const CardModal: FC<CardModalProps>;
|
|
|
111
91
|
|
|
112
92
|
export declare type CardModalProps = Omit<ModalDialogProps, 'title' | 'size'> & (CoverCardModalProps | RegularCardModalProps);
|
|
113
93
|
|
|
114
|
-
export declare type CardProps =
|
|
94
|
+
export declare type CardProps = HTMLProps<HTMLDivElement>;
|
|
115
95
|
|
|
116
96
|
export declare type CellProps = HTMLProps<HTMLTableCellElement> & {
|
|
117
97
|
/**
|
|
@@ -128,11 +108,11 @@ export declare type CellProps = HTMLProps<HTMLTableCellElement> & {
|
|
|
128
108
|
|
|
129
109
|
export declare const changeThemeInMarkup: (theme: Theme) => void | undefined;
|
|
130
110
|
|
|
131
|
-
export declare const Checkbox:
|
|
111
|
+
export declare const Checkbox: FC<CheckboxProps>;
|
|
132
112
|
|
|
133
113
|
export declare type CheckboxProps = BooleanControlProps;
|
|
134
114
|
|
|
135
|
-
export declare const CloseButton:
|
|
115
|
+
export declare const CloseButton: FC<CloseButtonProps>;
|
|
136
116
|
|
|
137
117
|
export declare type CloseButtonProps = {
|
|
138
118
|
label?: string;
|
|
@@ -140,6 +120,7 @@ export declare type CloseButtonProps = {
|
|
|
140
120
|
className?: string;
|
|
141
121
|
size?: Size;
|
|
142
122
|
solid?: boolean;
|
|
123
|
+
ref?: Ref<HTMLButtonElement>;
|
|
143
124
|
};
|
|
144
125
|
|
|
145
126
|
declare type CommonCardModalProps = {
|
|
@@ -239,12 +220,11 @@ export declare const HIGHLIGHTED_COLOR = "#f77f28";
|
|
|
239
220
|
|
|
240
221
|
export declare const HIGHLIGHTED_COLOR_ALPHA = "rgba(247, 127, 40, 0.4)";
|
|
241
222
|
|
|
242
|
-
export declare const Input:
|
|
243
|
-
borderless?: boolean;
|
|
244
|
-
} & RefAttributes<HTMLInputElement>>;
|
|
223
|
+
export declare const Input: FC<InputProps>;
|
|
245
224
|
|
|
246
225
|
export declare type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'checked' | 'defaultChecked'> & BaseInputProps & {
|
|
247
226
|
borderless?: boolean;
|
|
227
|
+
ref?: Ref<HTMLInputElement>;
|
|
248
228
|
};
|
|
249
229
|
|
|
250
230
|
export declare const isDarkThemeEnabled: () => boolean;
|
|
@@ -267,18 +247,7 @@ export declare const keyForPage: (pageNumber: NumberOrEllipsis, index: number) =
|
|
|
267
247
|
|
|
268
248
|
export declare const Label: FC<LabelProps>;
|
|
269
249
|
|
|
270
|
-
export declare const LabelledInput:
|
|
271
|
-
error?: ReactNode;
|
|
272
|
-
helpText?: ReactNode;
|
|
273
|
-
'data-testid'?: string;
|
|
274
|
-
} & {
|
|
275
|
-
children?: ReactNode | undefined;
|
|
276
|
-
} & {
|
|
277
|
-
label: RequiredReactNode;
|
|
278
|
-
inputClassName?: string;
|
|
279
|
-
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
280
|
-
hiddenRequired?: boolean;
|
|
281
|
-
} & RefAttributes<HTMLInputElement>>;
|
|
250
|
+
export declare const LabelledInput: FC<LabelledInputProps>;
|
|
282
251
|
|
|
283
252
|
export declare type LabelledInputProps = Omit<InputProps, 'className' | 'id' | 'feedback'> & FormControlWithFeedbackProps & {
|
|
284
253
|
label: RequiredReactNode;
|
|
@@ -287,18 +256,7 @@ export declare type LabelledInputProps = Omit<InputProps, 'className' | 'id' | '
|
|
|
287
256
|
hiddenRequired?: boolean;
|
|
288
257
|
};
|
|
289
258
|
|
|
290
|
-
export declare const LabelledRevealablePasswordInput:
|
|
291
|
-
error?: ReactNode;
|
|
292
|
-
helpText?: ReactNode;
|
|
293
|
-
'data-testid'?: string;
|
|
294
|
-
} & {
|
|
295
|
-
children?: ReactNode | undefined;
|
|
296
|
-
} & {
|
|
297
|
-
label: RequiredReactNode;
|
|
298
|
-
inputClassName?: string;
|
|
299
|
-
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
300
|
-
hiddenRequired?: boolean;
|
|
301
|
-
} & RefAttributes<HTMLInputElement>>;
|
|
259
|
+
export declare const LabelledRevealablePasswordInput: FC<LabelledRevealablePasswordInputProps>;
|
|
302
260
|
|
|
303
261
|
export declare type LabelledRevealablePasswordInputProps = Omit<RevealablePasswordInputProps, 'className' | 'id' | 'feedback'> & FormControlWithFeedbackProps & {
|
|
304
262
|
label: RequiredReactNode;
|
|
@@ -307,7 +265,7 @@ export declare type LabelledRevealablePasswordInputProps = Omit<RevealablePasswo
|
|
|
307
265
|
hiddenRequired?: boolean;
|
|
308
266
|
};
|
|
309
267
|
|
|
310
|
-
export declare const LabelledSelect:
|
|
268
|
+
export declare const LabelledSelect: FC<LabelledSelectProps>;
|
|
311
269
|
|
|
312
270
|
export declare type LabelledSelectProps = Omit<SelectProps, 'className' | 'id'> & FormControlWithFeedbackProps & {
|
|
313
271
|
label: RequiredReactNode;
|
|
@@ -320,11 +278,12 @@ export declare type LabelProps = HTMLProps<HTMLLabelElement> & {
|
|
|
320
278
|
required?: boolean;
|
|
321
279
|
};
|
|
322
280
|
|
|
323
|
-
export declare const LinkButton:
|
|
281
|
+
export declare const LinkButton: FC<LinkButtonProps>;
|
|
324
282
|
|
|
325
283
|
export declare type LinkButtonProps = Omit<HTMLProps<HTMLButtonElement>, 'size' | 'type'> & {
|
|
326
284
|
size?: Size;
|
|
327
285
|
type?: HTMLButtonElement['type'];
|
|
286
|
+
ref?: Ref<HTMLButtonElement>;
|
|
328
287
|
};
|
|
329
288
|
|
|
330
289
|
declare type LinkButtonProps_2 = LinkProps;
|
|
@@ -528,9 +487,7 @@ export declare type ResultProps = PropsWithChildren<{
|
|
|
528
487
|
size?: Size;
|
|
529
488
|
}>;
|
|
530
489
|
|
|
531
|
-
export declare const RevealablePasswordInput:
|
|
532
|
-
containerClassName?: string;
|
|
533
|
-
} & RefAttributes<HTMLInputElement>>;
|
|
490
|
+
export declare const RevealablePasswordInput: FC<RevealablePasswordInputProps>;
|
|
534
491
|
|
|
535
492
|
export declare type RevealablePasswordInputProps = Omit<InputProps, 'type'> & {
|
|
536
493
|
containerClassName?: string;
|
|
@@ -549,18 +506,14 @@ export declare const RowDropdown: FC<RowDropdownProps> & {
|
|
|
549
506
|
|
|
550
507
|
export declare type RowDropdownProps = Omit<DropdownProps, 'caretless' | 'buttonContent' | 'buttonVariant'>;
|
|
551
508
|
|
|
552
|
-
export declare const SearchCombobox: <T>(props: SearchComboboxProps<T> & {
|
|
553
|
-
ref?: ForwardedRef<HTMLInputElement>;
|
|
554
|
-
}) => ReturnType<typeof SearchComboboxInner>;
|
|
555
|
-
|
|
556
509
|
/**
|
|
557
510
|
* This component combines a SearchInput with a Listbox, to behave close to an editable combobox with autocomplete, as
|
|
558
511
|
* described in https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/.
|
|
559
512
|
* The main difference is that the input is used only to search in the listbox, and once an item is selected, the input
|
|
560
513
|
* is cleared and the listbox is closed.
|
|
561
514
|
*/
|
|
562
|
-
declare function
|
|
563
|
-
listboxSpan, onFocus, containerClassName, listboxClassName, ...rest }: SearchComboboxProps<Item
|
|
515
|
+
export declare function SearchCombobox<Item>({ searchResults, onSearch, onSelectSearchResult, renderSearchResult, size, // SearchInput defaults its size to 'lg'. Change it to 'md'
|
|
516
|
+
listboxSpan, onFocus, containerClassName, listboxClassName, ref, ...rest }: SearchComboboxProps<Item>): JSX.Element;
|
|
564
517
|
|
|
565
518
|
export declare type SearchComboboxProps<Item> = BaseInputProps_2 & {
|
|
566
519
|
/** If defined, it will display a listbox with the search results */
|
|
@@ -583,20 +536,10 @@ export declare type SearchComboboxProps<Item> = BaseInputProps_2 & {
|
|
|
583
536
|
containerClassName?: string;
|
|
584
537
|
/** Classes to add to the listbox */
|
|
585
538
|
listboxClassName?: string;
|
|
539
|
+
ref?: Ref<HTMLInputElement>;
|
|
586
540
|
};
|
|
587
541
|
|
|
588
|
-
export declare const SearchInput:
|
|
589
|
-
onChange: (searchTerm: string) => void;
|
|
590
|
-
containerClassName?: string;
|
|
591
|
-
inputClassName?: string;
|
|
592
|
-
/** When set to true, it displays a loading indicator in place of the magnifyinf glass icon */
|
|
593
|
-
loading?: boolean;
|
|
594
|
-
/**
|
|
595
|
-
* Whether onChange should be triggered immediately or debounced.
|
|
596
|
-
* Defaults to false.
|
|
597
|
-
*/
|
|
598
|
-
immediate?: boolean;
|
|
599
|
-
} & RefAttributes<HTMLInputElement>>;
|
|
542
|
+
export declare const SearchInput: FC<SearchInputProps>;
|
|
600
543
|
|
|
601
544
|
export declare type SearchInputProps = Omit<InputProps, 'className' | 'onChange' | 'value'> & {
|
|
602
545
|
onChange: (searchTerm: string) => void;
|
|
@@ -613,13 +556,15 @@ export declare type SearchInputProps = Omit<InputProps, 'className' | 'onChange'
|
|
|
613
556
|
|
|
614
557
|
export declare type SectionType = 'head' | 'body' | 'footer';
|
|
615
558
|
|
|
616
|
-
export declare const Select:
|
|
559
|
+
export declare const Select: FC<SelectProps>;
|
|
617
560
|
|
|
618
561
|
declare type SelectElementProps = Omit<HTMLProps<HTMLSelectElement>, 'size' | 'checked' | 'defaultChecked'>;
|
|
619
562
|
|
|
620
|
-
export declare type SelectProps = PropsWithChildren<SelectElementProps & BaseInputProps
|
|
563
|
+
export declare type SelectProps = PropsWithChildren<SelectElementProps & BaseInputProps> & {
|
|
564
|
+
ref?: Ref<HTMLSelectElement>;
|
|
565
|
+
};
|
|
621
566
|
|
|
622
|
-
export declare const SimpleCard:
|
|
567
|
+
export declare const SimpleCard: FC<SimpleCardProps>;
|
|
623
568
|
|
|
624
569
|
export declare type SimpleCardProps = Omit<CardProps, 'title' | 'size'> & {
|
|
625
570
|
bodyClassName?: string;
|
|
@@ -754,7 +699,7 @@ export declare type ToggleResult = {
|
|
|
754
699
|
setToFalse: () => void;
|
|
755
700
|
};
|
|
756
701
|
|
|
757
|
-
export declare const ToggleSwitch:
|
|
702
|
+
export declare const ToggleSwitch: FC<ToggleSwitchProps>;
|
|
758
703
|
|
|
759
704
|
export declare type ToggleSwitchProps = BooleanControlProps;
|
|
760
705
|
|
|
@@ -831,6 +776,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
831
776
|
alignItems?: Property.AlignItems | undefined;
|
|
832
777
|
alignSelf?: Property.AlignSelf | undefined;
|
|
833
778
|
alignTracks?: Property.AlignTracks | undefined;
|
|
779
|
+
alignmentBaseline?: Property.AlignmentBaseline | undefined;
|
|
780
|
+
anchorName?: Property.AnchorName | undefined;
|
|
781
|
+
anchorScope?: Property.AnchorScope | undefined;
|
|
834
782
|
animationComposition?: Property.AnimationComposition | undefined;
|
|
835
783
|
animationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
836
784
|
animationDirection?: Property.AnimationDirection | undefined;
|
|
@@ -839,6 +787,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
839
787
|
animationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
840
788
|
animationName?: Property.AnimationName | undefined;
|
|
841
789
|
animationPlayState?: Property.AnimationPlayState | undefined;
|
|
790
|
+
animationRangeEnd?: Property.AnimationRangeEnd<string | number> | undefined;
|
|
791
|
+
animationRangeStart?: Property.AnimationRangeStart<string | number> | undefined;
|
|
842
792
|
animationTimeline?: Property.AnimationTimeline | undefined;
|
|
843
793
|
animationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
844
794
|
appearance?: Property.Appearance | undefined;
|
|
@@ -855,17 +805,14 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
855
805
|
backgroundPositionY?: Property.BackgroundPositionY<string | number> | undefined;
|
|
856
806
|
backgroundRepeat?: Property.BackgroundRepeat | undefined;
|
|
857
807
|
backgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
858
|
-
|
|
808
|
+
baselineShift?: Property.BaselineShift<string | number> | undefined;
|
|
859
809
|
blockSize?: Property.BlockSize<string | number> | undefined;
|
|
860
|
-
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
861
810
|
borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
|
|
862
811
|
borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
|
|
863
812
|
borderBlockEndWidth?: Property.BorderBlockEndWidth<string | number> | undefined;
|
|
864
813
|
borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
|
|
865
814
|
borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
|
|
866
815
|
borderBlockStartWidth?: Property.BorderBlockStartWidth<string | number> | undefined;
|
|
867
|
-
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
868
|
-
borderBlockWidth?: Property.BorderBlockWidth<string | number> | undefined;
|
|
869
816
|
borderBottomColor?: Property.BorderBottomColor | undefined;
|
|
870
817
|
borderBottomLeftRadius?: Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
871
818
|
borderBottomRightRadius?: Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -879,15 +826,12 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
879
826
|
borderImageSlice?: Property.BorderImageSlice | undefined;
|
|
880
827
|
borderImageSource?: Property.BorderImageSource | undefined;
|
|
881
828
|
borderImageWidth?: Property.BorderImageWidth<string | number> | undefined;
|
|
882
|
-
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
883
829
|
borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
|
|
884
830
|
borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
|
|
885
831
|
borderInlineEndWidth?: Property.BorderInlineEndWidth<string | number> | undefined;
|
|
886
832
|
borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
|
|
887
833
|
borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
888
834
|
borderInlineStartWidth?: Property.BorderInlineStartWidth<string | number> | undefined;
|
|
889
|
-
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
890
|
-
borderInlineWidth?: Property.BorderInlineWidth<string | number> | undefined;
|
|
891
835
|
borderLeftColor?: Property.BorderLeftColor | undefined;
|
|
892
836
|
borderLeftStyle?: Property.BorderLeftStyle | undefined;
|
|
893
837
|
borderLeftWidth?: Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -914,8 +858,10 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
914
858
|
caretShape?: Property.CaretShape | undefined;
|
|
915
859
|
clear?: Property.Clear | undefined;
|
|
916
860
|
clipPath?: Property.ClipPath | undefined;
|
|
861
|
+
clipRule?: Property.ClipRule | undefined;
|
|
917
862
|
color?: Property.Color | undefined;
|
|
918
863
|
colorAdjust?: Property.PrintColorAdjust | undefined;
|
|
864
|
+
colorInterpolationFilters?: Property.ColorInterpolationFilters | undefined;
|
|
919
865
|
colorScheme?: Property.ColorScheme | undefined;
|
|
920
866
|
columnCount?: Property.ColumnCount | undefined;
|
|
921
867
|
columnFill?: Property.ColumnFill | undefined;
|
|
@@ -938,9 +884,17 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
938
884
|
counterReset?: Property.CounterReset | undefined;
|
|
939
885
|
counterSet?: Property.CounterSet | undefined;
|
|
940
886
|
cursor?: Property.Cursor | undefined;
|
|
887
|
+
cx?: Property.Cx<string | number> | undefined;
|
|
888
|
+
cy?: Property.Cy<string | number> | undefined;
|
|
889
|
+
d?: Property.D | undefined;
|
|
941
890
|
direction?: Property.Direction | undefined;
|
|
942
891
|
display?: Property.Display | undefined;
|
|
892
|
+
dominantBaseline?: Property.DominantBaseline | undefined;
|
|
943
893
|
emptyCells?: Property.EmptyCells | undefined;
|
|
894
|
+
fieldSizing?: Property.FieldSizing | undefined;
|
|
895
|
+
fill?: Property.Fill | undefined;
|
|
896
|
+
fillOpacity?: Property.FillOpacity | undefined;
|
|
897
|
+
fillRule?: Property.FillRule | undefined;
|
|
944
898
|
filter?: Property.Filter | undefined;
|
|
945
899
|
flexBasis?: Property.FlexBasis<string | number> | undefined;
|
|
946
900
|
flexDirection?: Property.FlexDirection | undefined;
|
|
@@ -948,6 +902,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
948
902
|
flexShrink?: Property.FlexShrink | undefined;
|
|
949
903
|
flexWrap?: Property.FlexWrap | undefined;
|
|
950
904
|
float?: Property.Float | undefined;
|
|
905
|
+
floodColor?: Property.FloodColor | undefined;
|
|
906
|
+
floodOpacity?: Property.FloodOpacity | undefined;
|
|
951
907
|
fontFamily?: Property.FontFamily | undefined;
|
|
952
908
|
fontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
953
909
|
fontKerning?: Property.FontKerning | undefined;
|
|
@@ -957,9 +913,12 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
957
913
|
fontSize?: Property.FontSize<string | number> | undefined;
|
|
958
914
|
fontSizeAdjust?: Property.FontSizeAdjust | undefined;
|
|
959
915
|
fontSmooth?: Property.FontSmooth<string | number> | undefined;
|
|
960
|
-
fontStretch?: Property.FontStretch | undefined;
|
|
961
916
|
fontStyle?: Property.FontStyle | undefined;
|
|
962
917
|
fontSynthesis?: Property.FontSynthesis | undefined;
|
|
918
|
+
fontSynthesisPosition?: Property.FontSynthesisPosition | undefined;
|
|
919
|
+
fontSynthesisSmallCaps?: Property.FontSynthesisSmallCaps | undefined;
|
|
920
|
+
fontSynthesisStyle?: Property.FontSynthesisStyle | undefined;
|
|
921
|
+
fontSynthesisWeight?: Property.FontSynthesisWeight | undefined;
|
|
963
922
|
fontVariant?: Property.FontVariant | undefined;
|
|
964
923
|
fontVariantAlternates?: Property.FontVariantAlternates | undefined;
|
|
965
924
|
fontVariantCaps?: Property.FontVariantCaps | undefined;
|
|
@@ -970,6 +929,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
970
929
|
fontVariantPosition?: Property.FontVariantPosition | undefined;
|
|
971
930
|
fontVariationSettings?: Property.FontVariationSettings | undefined;
|
|
972
931
|
fontWeight?: Property.FontWeight | undefined;
|
|
932
|
+
fontWidth?: Property.FontWidth | undefined;
|
|
973
933
|
forcedColorAdjust?: Property.ForcedColorAdjust | undefined;
|
|
974
934
|
gridAutoColumns?: Property.GridAutoColumns<string | number> | undefined;
|
|
975
935
|
gridAutoFlow?: Property.GridAutoFlow | undefined;
|
|
@@ -990,12 +950,13 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
990
950
|
imageRendering?: Property.ImageRendering | undefined;
|
|
991
951
|
imageResolution?: Property.ImageResolution | undefined;
|
|
992
952
|
initialLetter?: Property.InitialLetter | undefined;
|
|
953
|
+
initialLetterAlign?: Property.InitialLetterAlign | undefined;
|
|
993
954
|
inlineSize?: Property.InlineSize<string | number> | undefined;
|
|
994
|
-
inputSecurity?: Property.InputSecurity | undefined;
|
|
995
955
|
insetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
996
956
|
insetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
997
957
|
insetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
998
958
|
insetInlineStart?: Property.InsetInlineStart<string | number> | undefined;
|
|
959
|
+
interpolateSize?: Property.InterpolateSize | undefined;
|
|
999
960
|
isolation?: Property.Isolation | undefined;
|
|
1000
961
|
justifyContent?: Property.JustifyContent | undefined;
|
|
1001
962
|
justifyItems?: Property.JustifyItems | undefined;
|
|
@@ -1003,6 +964,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1003
964
|
justifyTracks?: Property.JustifyTracks | undefined;
|
|
1004
965
|
left?: Property.Left<string | number> | undefined;
|
|
1005
966
|
letterSpacing?: Property.LetterSpacing<string | number> | undefined;
|
|
967
|
+
lightingColor?: Property.LightingColor | undefined;
|
|
1006
968
|
lineBreak?: Property.LineBreak | undefined;
|
|
1007
969
|
lineHeight?: Property.LineHeight<string | number> | undefined;
|
|
1008
970
|
lineHeightStep?: Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1018,6 +980,10 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1018
980
|
marginRight?: Property.MarginRight<string | number> | undefined;
|
|
1019
981
|
marginTop?: Property.MarginTop<string | number> | undefined;
|
|
1020
982
|
marginTrim?: Property.MarginTrim | undefined;
|
|
983
|
+
marker?: Property.Marker | undefined;
|
|
984
|
+
markerEnd?: Property.MarkerEnd | undefined;
|
|
985
|
+
markerMid?: Property.MarkerMid | undefined;
|
|
986
|
+
markerStart?: Property.MarkerStart | undefined;
|
|
1021
987
|
maskBorderMode?: Property.MaskBorderMode | undefined;
|
|
1022
988
|
maskBorderOutset?: Property.MaskBorderOutset<string | number> | undefined;
|
|
1023
989
|
maskBorderRepeat?: Property.MaskBorderRepeat | undefined;
|
|
@@ -1033,6 +999,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1033
999
|
maskRepeat?: Property.MaskRepeat | undefined;
|
|
1034
1000
|
maskSize?: Property.MaskSize<string | number> | undefined;
|
|
1035
1001
|
maskType?: Property.MaskType | undefined;
|
|
1002
|
+
masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
|
|
1036
1003
|
mathDepth?: Property.MathDepth | undefined;
|
|
1037
1004
|
mathShift?: Property.MathShift | undefined;
|
|
1038
1005
|
mathStyle?: Property.MathStyle | undefined;
|
|
@@ -1051,6 +1018,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1051
1018
|
motionRotation?: Property.OffsetRotate | undefined;
|
|
1052
1019
|
objectFit?: Property.ObjectFit | undefined;
|
|
1053
1020
|
objectPosition?: Property.ObjectPosition<string | number> | undefined;
|
|
1021
|
+
objectViewBox?: Property.ObjectViewBox | undefined;
|
|
1054
1022
|
offsetAnchor?: Property.OffsetAnchor<string | number> | undefined;
|
|
1055
1023
|
offsetDistance?: Property.OffsetDistance<string | number> | undefined;
|
|
1056
1024
|
offsetPath?: Property.OffsetPath | undefined;
|
|
@@ -1072,6 +1040,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1072
1040
|
overflowWrap?: Property.OverflowWrap | undefined;
|
|
1073
1041
|
overflowX?: Property.OverflowX | undefined;
|
|
1074
1042
|
overflowY?: Property.OverflowY | undefined;
|
|
1043
|
+
overlay?: Property.Overlay | undefined;
|
|
1075
1044
|
overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined;
|
|
1076
1045
|
overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined;
|
|
1077
1046
|
overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined;
|
|
@@ -1085,25 +1054,32 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1085
1054
|
paddingRight?: Property.PaddingRight<string | number> | undefined;
|
|
1086
1055
|
paddingTop?: Property.PaddingTop<string | number> | undefined;
|
|
1087
1056
|
page?: Property.Page | undefined;
|
|
1088
|
-
pageBreakAfter?: Property.PageBreakAfter | undefined;
|
|
1089
|
-
pageBreakBefore?: Property.PageBreakBefore | undefined;
|
|
1090
|
-
pageBreakInside?: Property.PageBreakInside | undefined;
|
|
1091
1057
|
paintOrder?: Property.PaintOrder | undefined;
|
|
1092
1058
|
perspective?: Property.Perspective<string | number> | undefined;
|
|
1093
1059
|
perspectiveOrigin?: Property.PerspectiveOrigin<string | number> | undefined;
|
|
1094
1060
|
pointerEvents?: Property.PointerEvents | undefined;
|
|
1095
1061
|
position?: Property.Position | undefined;
|
|
1062
|
+
positionAnchor?: Property.PositionAnchor | undefined;
|
|
1063
|
+
positionArea?: Property.PositionArea | undefined;
|
|
1064
|
+
positionTryFallbacks?: Property.PositionTryFallbacks | undefined;
|
|
1065
|
+
positionTryOrder?: Property.PositionTryOrder | undefined;
|
|
1066
|
+
positionVisibility?: Property.PositionVisibility | undefined;
|
|
1096
1067
|
printColorAdjust?: Property.PrintColorAdjust | undefined;
|
|
1097
1068
|
quotes?: Property.Quotes | undefined;
|
|
1069
|
+
r?: Property.R<string | number> | undefined;
|
|
1098
1070
|
resize?: Property.Resize | undefined;
|
|
1099
1071
|
right?: Property.Right<string | number> | undefined;
|
|
1100
1072
|
rotate?: Property.Rotate | undefined;
|
|
1101
1073
|
rowGap?: Property.RowGap<string | number> | undefined;
|
|
1102
1074
|
rubyAlign?: Property.RubyAlign | undefined;
|
|
1103
1075
|
rubyMerge?: Property.RubyMerge | undefined;
|
|
1076
|
+
rubyOverhang?: Property.RubyOverhang | undefined;
|
|
1104
1077
|
rubyPosition?: Property.RubyPosition | undefined;
|
|
1078
|
+
rx?: Property.Rx<string | number> | undefined;
|
|
1079
|
+
ry?: Property.Ry<string | number> | undefined;
|
|
1105
1080
|
scale?: Property.Scale | undefined;
|
|
1106
1081
|
scrollBehavior?: Property.ScrollBehavior | undefined;
|
|
1082
|
+
scrollInitialTarget?: Property.ScrollInitialTarget | undefined;
|
|
1107
1083
|
scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1108
1084
|
scrollMarginBlockStart?: Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1109
1085
|
scrollMarginBottom?: Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1135,10 +1111,28 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1135
1111
|
shapeImageThreshold?: Property.ShapeImageThreshold | undefined;
|
|
1136
1112
|
shapeMargin?: Property.ShapeMargin<string | number> | undefined;
|
|
1137
1113
|
shapeOutside?: Property.ShapeOutside | undefined;
|
|
1114
|
+
shapeRendering?: Property.ShapeRendering | undefined;
|
|
1115
|
+
speakAs?: Property.SpeakAs | undefined;
|
|
1116
|
+
stopColor?: Property.StopColor | undefined;
|
|
1117
|
+
stopOpacity?: Property.StopOpacity | undefined;
|
|
1118
|
+
stroke?: Property.Stroke | undefined;
|
|
1119
|
+
strokeColor?: Property.StrokeColor | undefined;
|
|
1120
|
+
strokeDasharray?: Property.StrokeDasharray<string | number> | undefined;
|
|
1121
|
+
strokeDashoffset?: Property.StrokeDashoffset<string | number> | undefined;
|
|
1122
|
+
strokeLinecap?: Property.StrokeLinecap | undefined;
|
|
1123
|
+
strokeLinejoin?: Property.StrokeLinejoin | undefined;
|
|
1124
|
+
strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
|
|
1125
|
+
strokeOpacity?: Property.StrokeOpacity | undefined;
|
|
1126
|
+
strokeWidth?: Property.StrokeWidth<string | number> | undefined;
|
|
1138
1127
|
tabSize?: Property.TabSize<string | number> | undefined;
|
|
1139
1128
|
tableLayout?: Property.TableLayout | undefined;
|
|
1140
1129
|
textAlign?: Property.TextAlign | undefined;
|
|
1141
1130
|
textAlignLast?: Property.TextAlignLast | undefined;
|
|
1131
|
+
textAnchor?: Property.TextAnchor | undefined;
|
|
1132
|
+
textAutospace?: Property.TextAutospace | undefined;
|
|
1133
|
+
textBox?: Property.TextBox | undefined;
|
|
1134
|
+
textBoxEdge?: Property.TextBoxEdge | undefined;
|
|
1135
|
+
textBoxTrim?: Property.TextBoxTrim | undefined;
|
|
1142
1136
|
textCombineUpright?: Property.TextCombineUpright | undefined;
|
|
1143
1137
|
textDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1144
1138
|
textDecorationLine?: Property.TextDecorationLine | undefined;
|
|
@@ -1156,15 +1150,20 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1156
1150
|
textRendering?: Property.TextRendering | undefined;
|
|
1157
1151
|
textShadow?: Property.TextShadow | undefined;
|
|
1158
1152
|
textSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1153
|
+
textSpacingTrim?: Property.TextSpacingTrim | undefined;
|
|
1159
1154
|
textTransform?: Property.TextTransform | undefined;
|
|
1160
1155
|
textUnderlineOffset?: Property.TextUnderlineOffset<string | number> | undefined;
|
|
1161
1156
|
textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
|
|
1157
|
+
textWrapMode?: Property.TextWrapMode | undefined;
|
|
1158
|
+
textWrapStyle?: Property.TextWrapStyle | undefined;
|
|
1159
|
+
timelineScope?: Property.TimelineScope | undefined;
|
|
1162
1160
|
top?: Property.Top<string | number> | undefined;
|
|
1163
1161
|
touchAction?: Property.TouchAction | undefined;
|
|
1164
1162
|
transform?: Property.Transform | undefined;
|
|
1165
1163
|
transformBox?: Property.TransformBox | undefined;
|
|
1166
1164
|
transformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1167
1165
|
transformStyle?: Property.TransformStyle | undefined;
|
|
1166
|
+
transitionBehavior?: Property.TransitionBehavior | undefined;
|
|
1168
1167
|
transitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1169
1168
|
transitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1170
1169
|
transitionProperty?: Property.TransitionProperty | undefined;
|
|
@@ -1172,10 +1171,16 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1172
1171
|
translate?: Property.Translate<string | number> | undefined;
|
|
1173
1172
|
unicodeBidi?: Property.UnicodeBidi | undefined;
|
|
1174
1173
|
userSelect?: Property.UserSelect | undefined;
|
|
1174
|
+
vectorEffect?: Property.VectorEffect | undefined;
|
|
1175
1175
|
verticalAlign?: Property.VerticalAlign<string | number> | undefined;
|
|
1176
|
+
viewTimelineAxis?: Property.ViewTimelineAxis | undefined;
|
|
1177
|
+
viewTimelineInset?: Property.ViewTimelineInset<string | number> | undefined;
|
|
1178
|
+
viewTimelineName?: Property.ViewTimelineName | undefined;
|
|
1179
|
+
viewTransitionClass?: Property.ViewTransitionClass | undefined;
|
|
1176
1180
|
viewTransitionName?: Property.ViewTransitionName | undefined;
|
|
1177
1181
|
visibility?: Property.Visibility | undefined;
|
|
1178
1182
|
whiteSpace?: Property.WhiteSpace | undefined;
|
|
1183
|
+
whiteSpaceCollapse?: Property.WhiteSpaceCollapse | undefined;
|
|
1179
1184
|
widows?: Property.Widows | undefined;
|
|
1180
1185
|
width?: Property.Width<string | number> | undefined;
|
|
1181
1186
|
willChange?: Property.WillChange | undefined;
|
|
@@ -1183,22 +1188,31 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1183
1188
|
wordSpacing?: Property.WordSpacing<string | number> | undefined;
|
|
1184
1189
|
wordWrap?: Property.WordWrap | undefined;
|
|
1185
1190
|
writingMode?: Property.WritingMode | undefined;
|
|
1191
|
+
x?: Property.X<string | number> | undefined;
|
|
1192
|
+
y?: Property.Y<string | number> | undefined;
|
|
1186
1193
|
zIndex?: Property.ZIndex | undefined;
|
|
1187
1194
|
zoom?: Property.Zoom | undefined;
|
|
1188
1195
|
all?: Property.All | undefined;
|
|
1189
1196
|
animation?: Property.Animation<string & {}> | undefined;
|
|
1197
|
+
animationRange?: Property.AnimationRange<string | number> | undefined;
|
|
1190
1198
|
background?: Property.Background<string | number> | undefined;
|
|
1191
1199
|
backgroundPosition?: Property.BackgroundPosition<string | number> | undefined;
|
|
1192
1200
|
border?: Property.Border<string | number> | undefined;
|
|
1193
1201
|
borderBlock?: Property.BorderBlock<string | number> | undefined;
|
|
1202
|
+
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
1194
1203
|
borderBlockEnd?: Property.BorderBlockEnd<string | number> | undefined;
|
|
1195
1204
|
borderBlockStart?: Property.BorderBlockStart<string | number> | undefined;
|
|
1205
|
+
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
1206
|
+
borderBlockWidth?: Property.BorderBlockWidth<string | number> | undefined;
|
|
1196
1207
|
borderBottom?: Property.BorderBottom<string | number> | undefined;
|
|
1197
1208
|
borderColor?: Property.BorderColor | undefined;
|
|
1198
1209
|
borderImage?: Property.BorderImage | undefined;
|
|
1199
1210
|
borderInline?: Property.BorderInline<string | number> | undefined;
|
|
1211
|
+
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
1200
1212
|
borderInlineEnd?: Property.BorderInlineEnd<string | number> | undefined;
|
|
1201
1213
|
borderInlineStart?: Property.BorderInlineStart<string | number> | undefined;
|
|
1214
|
+
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
1215
|
+
borderInlineWidth?: Property.BorderInlineWidth<string | number> | undefined;
|
|
1202
1216
|
borderLeft?: Property.BorderLeft<string | number> | undefined;
|
|
1203
1217
|
borderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
1204
1218
|
borderRight?: Property.BorderRight<string | number> | undefined;
|
|
@@ -1240,6 +1254,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1240
1254
|
placeContent?: Property.PlaceContent | undefined;
|
|
1241
1255
|
placeItems?: Property.PlaceItems | undefined;
|
|
1242
1256
|
placeSelf?: Property.PlaceSelf | undefined;
|
|
1257
|
+
positionTry?: Property.PositionTry | undefined;
|
|
1243
1258
|
scrollMargin?: Property.ScrollMargin<string | number> | undefined;
|
|
1244
1259
|
scrollMarginBlock?: Property.ScrollMarginBlock<string | number> | undefined;
|
|
1245
1260
|
scrollMarginInline?: Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1250,7 +1265,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1250
1265
|
scrollTimeline?: Property.ScrollTimeline | undefined;
|
|
1251
1266
|
textDecoration?: Property.TextDecoration<string | number> | undefined;
|
|
1252
1267
|
textEmphasis?: Property.TextEmphasis | undefined;
|
|
1268
|
+
textWrap?: Property.TextWrap | undefined;
|
|
1253
1269
|
transition?: Property.Transition<string & {}> | undefined;
|
|
1270
|
+
viewTimeline?: Property.ViewTimeline | undefined;
|
|
1254
1271
|
MozAnimationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
1255
1272
|
MozAnimationDirection?: Property.AnimationDirection | undefined;
|
|
1256
1273
|
MozAnimationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1272,8 +1289,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1272
1289
|
MozBorderStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
1273
1290
|
MozBorderTopColors?: Property.MozBorderTopColors | undefined;
|
|
1274
1291
|
MozBoxSizing?: Property.BoxSizing | undefined;
|
|
1275
|
-
MozColumnCount?: Property.ColumnCount | undefined;
|
|
1276
|
-
MozColumnFill?: Property.ColumnFill | undefined;
|
|
1277
1292
|
MozColumnRuleColor?: Property.ColumnRuleColor | undefined;
|
|
1278
1293
|
MozColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
|
|
1279
1294
|
MozColumnRuleWidth?: Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1282,11 +1297,14 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1282
1297
|
MozFontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
1283
1298
|
MozFontLanguageOverride?: Property.FontLanguageOverride | undefined;
|
|
1284
1299
|
MozHyphens?: Property.Hyphens | undefined;
|
|
1285
|
-
MozImageRegion?: Property.MozImageRegion | undefined;
|
|
1286
1300
|
MozMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1287
1301
|
MozMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1288
1302
|
MozOrient?: Property.MozOrient | undefined;
|
|
1289
1303
|
MozOsxFontSmoothing?: Property.FontSmooth<string | number> | undefined;
|
|
1304
|
+
MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1305
|
+
MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1306
|
+
MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1307
|
+
MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1290
1308
|
MozPaddingEnd?: Property.PaddingInlineEnd<string | number> | undefined;
|
|
1291
1309
|
MozPaddingStart?: Property.PaddingInlineStart<string | number> | undefined;
|
|
1292
1310
|
MozPerspective?: Property.Perspective<string | number> | undefined;
|
|
@@ -1295,13 +1313,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1295
1313
|
MozTabSize?: Property.TabSize<string | number> | undefined;
|
|
1296
1314
|
MozTextBlink?: Property.MozTextBlink | undefined;
|
|
1297
1315
|
MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1316
|
+
MozTransform?: Property.Transform | undefined;
|
|
1298
1317
|
MozTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1299
1318
|
MozTransformStyle?: Property.TransformStyle | undefined;
|
|
1300
|
-
MozTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1301
|
-
MozTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1302
|
-
MozTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1303
|
-
MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1304
|
-
MozUserFocus?: Property.MozUserFocus | undefined;
|
|
1305
1319
|
MozUserModify?: Property.MozUserModify | undefined;
|
|
1306
1320
|
MozUserSelect?: Property.UserSelect | undefined;
|
|
1307
1321
|
MozWindowDragging?: Property.MozWindowDragging | undefined;
|
|
@@ -1420,6 +1434,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1420
1434
|
WebkitJustifyContent?: Property.JustifyContent | undefined;
|
|
1421
1435
|
WebkitLineBreak?: Property.LineBreak | undefined;
|
|
1422
1436
|
WebkitLineClamp?: Property.WebkitLineClamp | undefined;
|
|
1437
|
+
WebkitLogicalHeight?: Property.BlockSize<string | number> | undefined;
|
|
1438
|
+
WebkitLogicalWidth?: Property.InlineSize<string | number> | undefined;
|
|
1423
1439
|
WebkitMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1424
1440
|
WebkitMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1425
1441
|
WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined;
|
|
@@ -1474,12 +1490,13 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1474
1490
|
WebkitTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1475
1491
|
WebkitTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1476
1492
|
WebkitUserModify?: Property.WebkitUserModify | undefined;
|
|
1477
|
-
WebkitUserSelect?: Property.
|
|
1493
|
+
WebkitUserSelect?: Property.WebkitUserSelect | undefined;
|
|
1478
1494
|
WebkitWritingMode?: Property.WritingMode | undefined;
|
|
1479
1495
|
MozAnimation?: Property.Animation<string & {}> | undefined;
|
|
1480
1496
|
MozBorderImage?: Property.BorderImage | undefined;
|
|
1481
1497
|
MozColumnRule?: Property.ColumnRule<string | number> | undefined;
|
|
1482
1498
|
MozColumns?: Property.Columns<string | number> | undefined;
|
|
1499
|
+
MozOutlineRadius?: Property.MozOutlineRadius<string | number> | undefined;
|
|
1483
1500
|
MozTransition?: Property.Transition<string & {}> | undefined;
|
|
1484
1501
|
msContentZoomLimit?: Property.MsContentZoomLimit | undefined;
|
|
1485
1502
|
msContentZoomSnap?: Property.MsContentZoomSnap | undefined;
|
|
@@ -1501,7 +1518,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1501
1518
|
WebkitTextEmphasis?: Property.TextEmphasis | undefined;
|
|
1502
1519
|
WebkitTextStroke?: Property.WebkitTextStroke<string | number> | undefined;
|
|
1503
1520
|
WebkitTransition?: Property.Transition<string & {}> | undefined;
|
|
1504
|
-
azimuth?: Property.Azimuth | undefined;
|
|
1505
1521
|
boxAlign?: Property.BoxAlign | undefined;
|
|
1506
1522
|
boxDirection?: Property.BoxDirection | undefined;
|
|
1507
1523
|
boxFlex?: Property.BoxFlex | undefined;
|
|
@@ -1511,16 +1527,22 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1511
1527
|
boxOrient?: Property.BoxOrient | undefined;
|
|
1512
1528
|
boxPack?: Property.BoxPack | undefined;
|
|
1513
1529
|
clip?: Property.Clip | undefined;
|
|
1530
|
+
fontStretch?: Property.FontStretch | undefined;
|
|
1514
1531
|
gridColumnGap?: Property.GridColumnGap<string | number> | undefined;
|
|
1515
1532
|
gridGap?: Property.GridGap<string | number> | undefined;
|
|
1516
1533
|
gridRowGap?: Property.GridRowGap<string | number> | undefined;
|
|
1517
1534
|
imeMode?: Property.ImeMode | undefined;
|
|
1535
|
+
insetArea?: Property.PositionArea | undefined;
|
|
1518
1536
|
offsetBlock?: Property.InsetBlock<string | number> | undefined;
|
|
1519
1537
|
offsetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
1520
1538
|
offsetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
1521
1539
|
offsetInline?: Property.InsetInline<string | number> | undefined;
|
|
1522
1540
|
offsetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
1523
1541
|
offsetInlineStart?: Property.InsetInlineStart<string | number> | undefined;
|
|
1542
|
+
pageBreakAfter?: Property.PageBreakAfter | undefined;
|
|
1543
|
+
pageBreakBefore?: Property.PageBreakBefore | undefined;
|
|
1544
|
+
pageBreakInside?: Property.PageBreakInside | undefined;
|
|
1545
|
+
positionTryOptions?: Property.PositionTryFallbacks | undefined;
|
|
1524
1546
|
scrollSnapCoordinate?: Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1525
1547
|
scrollSnapDestination?: Property.ScrollSnapDestination<string | number> | undefined;
|
|
1526
1548
|
scrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
@@ -1539,7 +1561,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1539
1561
|
KhtmlOpacity?: Property.Opacity | undefined;
|
|
1540
1562
|
KhtmlUserSelect?: Property.UserSelect | undefined;
|
|
1541
1563
|
MozBackgroundClip?: Property.BackgroundClip | undefined;
|
|
1542
|
-
MozBackgroundInlinePolicy?: Property.BoxDecorationBreak | undefined;
|
|
1543
1564
|
MozBackgroundOrigin?: Property.BackgroundOrigin | undefined;
|
|
1544
1565
|
MozBackgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
1545
1566
|
MozBorderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
@@ -1554,22 +1575,24 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1554
1575
|
MozBoxOrient?: Property.BoxOrient | undefined;
|
|
1555
1576
|
MozBoxPack?: Property.BoxPack | undefined;
|
|
1556
1577
|
MozBoxShadow?: Property.BoxShadow | undefined;
|
|
1578
|
+
MozColumnCount?: Property.ColumnCount | undefined;
|
|
1579
|
+
MozColumnFill?: Property.ColumnFill | undefined;
|
|
1557
1580
|
MozFloatEdge?: Property.MozFloatEdge | undefined;
|
|
1558
1581
|
MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined;
|
|
1559
1582
|
MozOpacity?: Property.Opacity | undefined;
|
|
1560
1583
|
MozOutline?: Property.Outline<string | number> | undefined;
|
|
1561
1584
|
MozOutlineColor?: Property.OutlineColor | undefined;
|
|
1562
|
-
MozOutlineRadius?: Property.MozOutlineRadius<string | number> | undefined;
|
|
1563
|
-
MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1564
|
-
MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1565
|
-
MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1566
|
-
MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1567
1585
|
MozOutlineStyle?: Property.OutlineStyle | undefined;
|
|
1568
1586
|
MozOutlineWidth?: Property.OutlineWidth<string | number> | undefined;
|
|
1569
1587
|
MozTextAlignLast?: Property.TextAlignLast | undefined;
|
|
1570
1588
|
MozTextDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1571
1589
|
MozTextDecorationLine?: Property.TextDecorationLine | undefined;
|
|
1572
1590
|
MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
|
|
1591
|
+
MozTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1592
|
+
MozTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1593
|
+
MozTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1594
|
+
MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1595
|
+
MozUserFocus?: Property.MozUserFocus | undefined;
|
|
1573
1596
|
MozUserInput?: Property.MozUserInput | undefined;
|
|
1574
1597
|
msImeMode?: Property.ImeMode | undefined;
|
|
1575
1598
|
OAnimation?: Property.Animation<string & {}> | undefined;
|
|
@@ -1602,38 +1625,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1602
1625
|
WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1603
1626
|
WebkitBoxOrient?: Property.BoxOrient | undefined;
|
|
1604
1627
|
WebkitBoxPack?: Property.BoxPack | undefined;
|
|
1605
|
-
WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
1606
|
-
WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
1607
|
-
alignmentBaseline?: Property.AlignmentBaseline | undefined;
|
|
1608
|
-
baselineShift?: Property.BaselineShift<string | number> | undefined;
|
|
1609
|
-
clipRule?: Property.ClipRule | undefined;
|
|
1610
1628
|
colorInterpolation?: Property.ColorInterpolation | undefined;
|
|
1611
1629
|
colorRendering?: Property.ColorRendering | undefined;
|
|
1612
|
-
dominantBaseline?: Property.DominantBaseline | undefined;
|
|
1613
|
-
fill?: Property.Fill | undefined;
|
|
1614
|
-
fillOpacity?: Property.FillOpacity | undefined;
|
|
1615
|
-
fillRule?: Property.FillRule | undefined;
|
|
1616
|
-
floodColor?: Property.FloodColor | undefined;
|
|
1617
|
-
floodOpacity?: Property.FloodOpacity | undefined;
|
|
1618
1630
|
glyphOrientationVertical?: Property.GlyphOrientationVertical | undefined;
|
|
1619
|
-
lightingColor?: Property.LightingColor | undefined;
|
|
1620
|
-
marker?: Property.Marker | undefined;
|
|
1621
|
-
markerEnd?: Property.MarkerEnd | undefined;
|
|
1622
|
-
markerMid?: Property.MarkerMid | undefined;
|
|
1623
|
-
markerStart?: Property.MarkerStart | undefined;
|
|
1624
|
-
shapeRendering?: Property.ShapeRendering | undefined;
|
|
1625
|
-
stopColor?: Property.StopColor | undefined;
|
|
1626
|
-
stopOpacity?: Property.StopOpacity | undefined;
|
|
1627
|
-
stroke?: Property.Stroke | undefined;
|
|
1628
|
-
strokeDasharray?: Property.StrokeDasharray<string | number> | undefined;
|
|
1629
|
-
strokeDashoffset?: Property.StrokeDashoffset<string | number> | undefined;
|
|
1630
|
-
strokeLinecap?: Property.StrokeLinecap | undefined;
|
|
1631
|
-
strokeLinejoin?: Property.StrokeLinejoin | undefined;
|
|
1632
|
-
strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
|
|
1633
|
-
strokeOpacity?: Property.StrokeOpacity | undefined;
|
|
1634
|
-
strokeWidth?: Property.StrokeWidth<string | number> | undefined;
|
|
1635
|
-
textAnchor?: Property.TextAnchor | undefined;
|
|
1636
|
-
vectorEffect?: Property.VectorEffect | undefined;
|
|
1637
1631
|
};
|
|
1638
1632
|
arrowPos: (Partial<Coords> & {
|
|
1639
1633
|
centerOffset: number;
|