@shlinkio/shlink-frontend-kit 1.3.0 → 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 +138 -143
- package/dist/index.js +718 -726
- 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;
|
|
@@ -715,7 +660,8 @@ export declare type TagsSearchResult = {
|
|
|
715
660
|
* A Map with the list of tags that match the search result, with the tag used both as key and value.
|
|
716
661
|
* Returned as a Map for convenience to use with SearchCombobox.
|
|
717
662
|
*
|
|
718
|
-
* When
|
|
663
|
+
* When the search term is empty, `undefined` is returned, so that it is possible to differentiate a search producing
|
|
664
|
+
* no results from not currently performing a search at all.
|
|
719
665
|
*
|
|
720
666
|
* @see {SearchCombobox}
|
|
721
667
|
*/
|
|
@@ -753,7 +699,7 @@ export declare type ToggleResult = {
|
|
|
753
699
|
setToFalse: () => void;
|
|
754
700
|
};
|
|
755
701
|
|
|
756
|
-
export declare const ToggleSwitch:
|
|
702
|
+
export declare const ToggleSwitch: FC<ToggleSwitchProps>;
|
|
757
703
|
|
|
758
704
|
export declare type ToggleSwitchProps = BooleanControlProps;
|
|
759
705
|
|
|
@@ -830,6 +776,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
830
776
|
alignItems?: Property.AlignItems | undefined;
|
|
831
777
|
alignSelf?: Property.AlignSelf | undefined;
|
|
832
778
|
alignTracks?: Property.AlignTracks | undefined;
|
|
779
|
+
alignmentBaseline?: Property.AlignmentBaseline | undefined;
|
|
780
|
+
anchorName?: Property.AnchorName | undefined;
|
|
781
|
+
anchorScope?: Property.AnchorScope | undefined;
|
|
833
782
|
animationComposition?: Property.AnimationComposition | undefined;
|
|
834
783
|
animationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
835
784
|
animationDirection?: Property.AnimationDirection | undefined;
|
|
@@ -838,6 +787,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
838
787
|
animationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
839
788
|
animationName?: Property.AnimationName | undefined;
|
|
840
789
|
animationPlayState?: Property.AnimationPlayState | undefined;
|
|
790
|
+
animationRangeEnd?: Property.AnimationRangeEnd<string | number> | undefined;
|
|
791
|
+
animationRangeStart?: Property.AnimationRangeStart<string | number> | undefined;
|
|
841
792
|
animationTimeline?: Property.AnimationTimeline | undefined;
|
|
842
793
|
animationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
843
794
|
appearance?: Property.Appearance | undefined;
|
|
@@ -854,17 +805,14 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
854
805
|
backgroundPositionY?: Property.BackgroundPositionY<string | number> | undefined;
|
|
855
806
|
backgroundRepeat?: Property.BackgroundRepeat | undefined;
|
|
856
807
|
backgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
857
|
-
|
|
808
|
+
baselineShift?: Property.BaselineShift<string | number> | undefined;
|
|
858
809
|
blockSize?: Property.BlockSize<string | number> | undefined;
|
|
859
|
-
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
860
810
|
borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
|
|
861
811
|
borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
|
|
862
812
|
borderBlockEndWidth?: Property.BorderBlockEndWidth<string | number> | undefined;
|
|
863
813
|
borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
|
|
864
814
|
borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
|
|
865
815
|
borderBlockStartWidth?: Property.BorderBlockStartWidth<string | number> | undefined;
|
|
866
|
-
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
867
|
-
borderBlockWidth?: Property.BorderBlockWidth<string | number> | undefined;
|
|
868
816
|
borderBottomColor?: Property.BorderBottomColor | undefined;
|
|
869
817
|
borderBottomLeftRadius?: Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
870
818
|
borderBottomRightRadius?: Property.BorderBottomRightRadius<string | number> | undefined;
|
|
@@ -878,15 +826,12 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
878
826
|
borderImageSlice?: Property.BorderImageSlice | undefined;
|
|
879
827
|
borderImageSource?: Property.BorderImageSource | undefined;
|
|
880
828
|
borderImageWidth?: Property.BorderImageWidth<string | number> | undefined;
|
|
881
|
-
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
882
829
|
borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
|
|
883
830
|
borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
|
|
884
831
|
borderInlineEndWidth?: Property.BorderInlineEndWidth<string | number> | undefined;
|
|
885
832
|
borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
|
|
886
833
|
borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
887
834
|
borderInlineStartWidth?: Property.BorderInlineStartWidth<string | number> | undefined;
|
|
888
|
-
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
889
|
-
borderInlineWidth?: Property.BorderInlineWidth<string | number> | undefined;
|
|
890
835
|
borderLeftColor?: Property.BorderLeftColor | undefined;
|
|
891
836
|
borderLeftStyle?: Property.BorderLeftStyle | undefined;
|
|
892
837
|
borderLeftWidth?: Property.BorderLeftWidth<string | number> | undefined;
|
|
@@ -913,8 +858,10 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
913
858
|
caretShape?: Property.CaretShape | undefined;
|
|
914
859
|
clear?: Property.Clear | undefined;
|
|
915
860
|
clipPath?: Property.ClipPath | undefined;
|
|
861
|
+
clipRule?: Property.ClipRule | undefined;
|
|
916
862
|
color?: Property.Color | undefined;
|
|
917
863
|
colorAdjust?: Property.PrintColorAdjust | undefined;
|
|
864
|
+
colorInterpolationFilters?: Property.ColorInterpolationFilters | undefined;
|
|
918
865
|
colorScheme?: Property.ColorScheme | undefined;
|
|
919
866
|
columnCount?: Property.ColumnCount | undefined;
|
|
920
867
|
columnFill?: Property.ColumnFill | undefined;
|
|
@@ -937,9 +884,17 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
937
884
|
counterReset?: Property.CounterReset | undefined;
|
|
938
885
|
counterSet?: Property.CounterSet | undefined;
|
|
939
886
|
cursor?: Property.Cursor | undefined;
|
|
887
|
+
cx?: Property.Cx<string | number> | undefined;
|
|
888
|
+
cy?: Property.Cy<string | number> | undefined;
|
|
889
|
+
d?: Property.D | undefined;
|
|
940
890
|
direction?: Property.Direction | undefined;
|
|
941
891
|
display?: Property.Display | undefined;
|
|
892
|
+
dominantBaseline?: Property.DominantBaseline | undefined;
|
|
942
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;
|
|
943
898
|
filter?: Property.Filter | undefined;
|
|
944
899
|
flexBasis?: Property.FlexBasis<string | number> | undefined;
|
|
945
900
|
flexDirection?: Property.FlexDirection | undefined;
|
|
@@ -947,6 +902,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
947
902
|
flexShrink?: Property.FlexShrink | undefined;
|
|
948
903
|
flexWrap?: Property.FlexWrap | undefined;
|
|
949
904
|
float?: Property.Float | undefined;
|
|
905
|
+
floodColor?: Property.FloodColor | undefined;
|
|
906
|
+
floodOpacity?: Property.FloodOpacity | undefined;
|
|
950
907
|
fontFamily?: Property.FontFamily | undefined;
|
|
951
908
|
fontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
952
909
|
fontKerning?: Property.FontKerning | undefined;
|
|
@@ -956,9 +913,12 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
956
913
|
fontSize?: Property.FontSize<string | number> | undefined;
|
|
957
914
|
fontSizeAdjust?: Property.FontSizeAdjust | undefined;
|
|
958
915
|
fontSmooth?: Property.FontSmooth<string | number> | undefined;
|
|
959
|
-
fontStretch?: Property.FontStretch | undefined;
|
|
960
916
|
fontStyle?: Property.FontStyle | undefined;
|
|
961
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;
|
|
962
922
|
fontVariant?: Property.FontVariant | undefined;
|
|
963
923
|
fontVariantAlternates?: Property.FontVariantAlternates | undefined;
|
|
964
924
|
fontVariantCaps?: Property.FontVariantCaps | undefined;
|
|
@@ -969,6 +929,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
969
929
|
fontVariantPosition?: Property.FontVariantPosition | undefined;
|
|
970
930
|
fontVariationSettings?: Property.FontVariationSettings | undefined;
|
|
971
931
|
fontWeight?: Property.FontWeight | undefined;
|
|
932
|
+
fontWidth?: Property.FontWidth | undefined;
|
|
972
933
|
forcedColorAdjust?: Property.ForcedColorAdjust | undefined;
|
|
973
934
|
gridAutoColumns?: Property.GridAutoColumns<string | number> | undefined;
|
|
974
935
|
gridAutoFlow?: Property.GridAutoFlow | undefined;
|
|
@@ -989,12 +950,13 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
989
950
|
imageRendering?: Property.ImageRendering | undefined;
|
|
990
951
|
imageResolution?: Property.ImageResolution | undefined;
|
|
991
952
|
initialLetter?: Property.InitialLetter | undefined;
|
|
953
|
+
initialLetterAlign?: Property.InitialLetterAlign | undefined;
|
|
992
954
|
inlineSize?: Property.InlineSize<string | number> | undefined;
|
|
993
|
-
inputSecurity?: Property.InputSecurity | undefined;
|
|
994
955
|
insetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
995
956
|
insetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
996
957
|
insetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
997
958
|
insetInlineStart?: Property.InsetInlineStart<string | number> | undefined;
|
|
959
|
+
interpolateSize?: Property.InterpolateSize | undefined;
|
|
998
960
|
isolation?: Property.Isolation | undefined;
|
|
999
961
|
justifyContent?: Property.JustifyContent | undefined;
|
|
1000
962
|
justifyItems?: Property.JustifyItems | undefined;
|
|
@@ -1002,6 +964,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1002
964
|
justifyTracks?: Property.JustifyTracks | undefined;
|
|
1003
965
|
left?: Property.Left<string | number> | undefined;
|
|
1004
966
|
letterSpacing?: Property.LetterSpacing<string | number> | undefined;
|
|
967
|
+
lightingColor?: Property.LightingColor | undefined;
|
|
1005
968
|
lineBreak?: Property.LineBreak | undefined;
|
|
1006
969
|
lineHeight?: Property.LineHeight<string | number> | undefined;
|
|
1007
970
|
lineHeightStep?: Property.LineHeightStep<string | number> | undefined;
|
|
@@ -1017,6 +980,10 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1017
980
|
marginRight?: Property.MarginRight<string | number> | undefined;
|
|
1018
981
|
marginTop?: Property.MarginTop<string | number> | undefined;
|
|
1019
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;
|
|
1020
987
|
maskBorderMode?: Property.MaskBorderMode | undefined;
|
|
1021
988
|
maskBorderOutset?: Property.MaskBorderOutset<string | number> | undefined;
|
|
1022
989
|
maskBorderRepeat?: Property.MaskBorderRepeat | undefined;
|
|
@@ -1032,6 +999,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1032
999
|
maskRepeat?: Property.MaskRepeat | undefined;
|
|
1033
1000
|
maskSize?: Property.MaskSize<string | number> | undefined;
|
|
1034
1001
|
maskType?: Property.MaskType | undefined;
|
|
1002
|
+
masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
|
|
1035
1003
|
mathDepth?: Property.MathDepth | undefined;
|
|
1036
1004
|
mathShift?: Property.MathShift | undefined;
|
|
1037
1005
|
mathStyle?: Property.MathStyle | undefined;
|
|
@@ -1050,6 +1018,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1050
1018
|
motionRotation?: Property.OffsetRotate | undefined;
|
|
1051
1019
|
objectFit?: Property.ObjectFit | undefined;
|
|
1052
1020
|
objectPosition?: Property.ObjectPosition<string | number> | undefined;
|
|
1021
|
+
objectViewBox?: Property.ObjectViewBox | undefined;
|
|
1053
1022
|
offsetAnchor?: Property.OffsetAnchor<string | number> | undefined;
|
|
1054
1023
|
offsetDistance?: Property.OffsetDistance<string | number> | undefined;
|
|
1055
1024
|
offsetPath?: Property.OffsetPath | undefined;
|
|
@@ -1071,6 +1040,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1071
1040
|
overflowWrap?: Property.OverflowWrap | undefined;
|
|
1072
1041
|
overflowX?: Property.OverflowX | undefined;
|
|
1073
1042
|
overflowY?: Property.OverflowY | undefined;
|
|
1043
|
+
overlay?: Property.Overlay | undefined;
|
|
1074
1044
|
overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined;
|
|
1075
1045
|
overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined;
|
|
1076
1046
|
overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined;
|
|
@@ -1084,25 +1054,32 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1084
1054
|
paddingRight?: Property.PaddingRight<string | number> | undefined;
|
|
1085
1055
|
paddingTop?: Property.PaddingTop<string | number> | undefined;
|
|
1086
1056
|
page?: Property.Page | undefined;
|
|
1087
|
-
pageBreakAfter?: Property.PageBreakAfter | undefined;
|
|
1088
|
-
pageBreakBefore?: Property.PageBreakBefore | undefined;
|
|
1089
|
-
pageBreakInside?: Property.PageBreakInside | undefined;
|
|
1090
1057
|
paintOrder?: Property.PaintOrder | undefined;
|
|
1091
1058
|
perspective?: Property.Perspective<string | number> | undefined;
|
|
1092
1059
|
perspectiveOrigin?: Property.PerspectiveOrigin<string | number> | undefined;
|
|
1093
1060
|
pointerEvents?: Property.PointerEvents | undefined;
|
|
1094
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;
|
|
1095
1067
|
printColorAdjust?: Property.PrintColorAdjust | undefined;
|
|
1096
1068
|
quotes?: Property.Quotes | undefined;
|
|
1069
|
+
r?: Property.R<string | number> | undefined;
|
|
1097
1070
|
resize?: Property.Resize | undefined;
|
|
1098
1071
|
right?: Property.Right<string | number> | undefined;
|
|
1099
1072
|
rotate?: Property.Rotate | undefined;
|
|
1100
1073
|
rowGap?: Property.RowGap<string | number> | undefined;
|
|
1101
1074
|
rubyAlign?: Property.RubyAlign | undefined;
|
|
1102
1075
|
rubyMerge?: Property.RubyMerge | undefined;
|
|
1076
|
+
rubyOverhang?: Property.RubyOverhang | undefined;
|
|
1103
1077
|
rubyPosition?: Property.RubyPosition | undefined;
|
|
1078
|
+
rx?: Property.Rx<string | number> | undefined;
|
|
1079
|
+
ry?: Property.Ry<string | number> | undefined;
|
|
1104
1080
|
scale?: Property.Scale | undefined;
|
|
1105
1081
|
scrollBehavior?: Property.ScrollBehavior | undefined;
|
|
1082
|
+
scrollInitialTarget?: Property.ScrollInitialTarget | undefined;
|
|
1106
1083
|
scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1107
1084
|
scrollMarginBlockStart?: Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1108
1085
|
scrollMarginBottom?: Property.ScrollMarginBottom<string | number> | undefined;
|
|
@@ -1134,10 +1111,28 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1134
1111
|
shapeImageThreshold?: Property.ShapeImageThreshold | undefined;
|
|
1135
1112
|
shapeMargin?: Property.ShapeMargin<string | number> | undefined;
|
|
1136
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;
|
|
1137
1127
|
tabSize?: Property.TabSize<string | number> | undefined;
|
|
1138
1128
|
tableLayout?: Property.TableLayout | undefined;
|
|
1139
1129
|
textAlign?: Property.TextAlign | undefined;
|
|
1140
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;
|
|
1141
1136
|
textCombineUpright?: Property.TextCombineUpright | undefined;
|
|
1142
1137
|
textDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1143
1138
|
textDecorationLine?: Property.TextDecorationLine | undefined;
|
|
@@ -1155,15 +1150,20 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1155
1150
|
textRendering?: Property.TextRendering | undefined;
|
|
1156
1151
|
textShadow?: Property.TextShadow | undefined;
|
|
1157
1152
|
textSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1153
|
+
textSpacingTrim?: Property.TextSpacingTrim | undefined;
|
|
1158
1154
|
textTransform?: Property.TextTransform | undefined;
|
|
1159
1155
|
textUnderlineOffset?: Property.TextUnderlineOffset<string | number> | undefined;
|
|
1160
1156
|
textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
|
|
1157
|
+
textWrapMode?: Property.TextWrapMode | undefined;
|
|
1158
|
+
textWrapStyle?: Property.TextWrapStyle | undefined;
|
|
1159
|
+
timelineScope?: Property.TimelineScope | undefined;
|
|
1161
1160
|
top?: Property.Top<string | number> | undefined;
|
|
1162
1161
|
touchAction?: Property.TouchAction | undefined;
|
|
1163
1162
|
transform?: Property.Transform | undefined;
|
|
1164
1163
|
transformBox?: Property.TransformBox | undefined;
|
|
1165
1164
|
transformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1166
1165
|
transformStyle?: Property.TransformStyle | undefined;
|
|
1166
|
+
transitionBehavior?: Property.TransitionBehavior | undefined;
|
|
1167
1167
|
transitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1168
1168
|
transitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1169
1169
|
transitionProperty?: Property.TransitionProperty | undefined;
|
|
@@ -1171,10 +1171,16 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1171
1171
|
translate?: Property.Translate<string | number> | undefined;
|
|
1172
1172
|
unicodeBidi?: Property.UnicodeBidi | undefined;
|
|
1173
1173
|
userSelect?: Property.UserSelect | undefined;
|
|
1174
|
+
vectorEffect?: Property.VectorEffect | undefined;
|
|
1174
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;
|
|
1175
1180
|
viewTransitionName?: Property.ViewTransitionName | undefined;
|
|
1176
1181
|
visibility?: Property.Visibility | undefined;
|
|
1177
1182
|
whiteSpace?: Property.WhiteSpace | undefined;
|
|
1183
|
+
whiteSpaceCollapse?: Property.WhiteSpaceCollapse | undefined;
|
|
1178
1184
|
widows?: Property.Widows | undefined;
|
|
1179
1185
|
width?: Property.Width<string | number> | undefined;
|
|
1180
1186
|
willChange?: Property.WillChange | undefined;
|
|
@@ -1182,22 +1188,31 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1182
1188
|
wordSpacing?: Property.WordSpacing<string | number> | undefined;
|
|
1183
1189
|
wordWrap?: Property.WordWrap | undefined;
|
|
1184
1190
|
writingMode?: Property.WritingMode | undefined;
|
|
1191
|
+
x?: Property.X<string | number> | undefined;
|
|
1192
|
+
y?: Property.Y<string | number> | undefined;
|
|
1185
1193
|
zIndex?: Property.ZIndex | undefined;
|
|
1186
1194
|
zoom?: Property.Zoom | undefined;
|
|
1187
1195
|
all?: Property.All | undefined;
|
|
1188
1196
|
animation?: Property.Animation<string & {}> | undefined;
|
|
1197
|
+
animationRange?: Property.AnimationRange<string | number> | undefined;
|
|
1189
1198
|
background?: Property.Background<string | number> | undefined;
|
|
1190
1199
|
backgroundPosition?: Property.BackgroundPosition<string | number> | undefined;
|
|
1191
1200
|
border?: Property.Border<string | number> | undefined;
|
|
1192
1201
|
borderBlock?: Property.BorderBlock<string | number> | undefined;
|
|
1202
|
+
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
1193
1203
|
borderBlockEnd?: Property.BorderBlockEnd<string | number> | undefined;
|
|
1194
1204
|
borderBlockStart?: Property.BorderBlockStart<string | number> | undefined;
|
|
1205
|
+
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
1206
|
+
borderBlockWidth?: Property.BorderBlockWidth<string | number> | undefined;
|
|
1195
1207
|
borderBottom?: Property.BorderBottom<string | number> | undefined;
|
|
1196
1208
|
borderColor?: Property.BorderColor | undefined;
|
|
1197
1209
|
borderImage?: Property.BorderImage | undefined;
|
|
1198
1210
|
borderInline?: Property.BorderInline<string | number> | undefined;
|
|
1211
|
+
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
1199
1212
|
borderInlineEnd?: Property.BorderInlineEnd<string | number> | undefined;
|
|
1200
1213
|
borderInlineStart?: Property.BorderInlineStart<string | number> | undefined;
|
|
1214
|
+
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
1215
|
+
borderInlineWidth?: Property.BorderInlineWidth<string | number> | undefined;
|
|
1201
1216
|
borderLeft?: Property.BorderLeft<string | number> | undefined;
|
|
1202
1217
|
borderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
1203
1218
|
borderRight?: Property.BorderRight<string | number> | undefined;
|
|
@@ -1239,6 +1254,7 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1239
1254
|
placeContent?: Property.PlaceContent | undefined;
|
|
1240
1255
|
placeItems?: Property.PlaceItems | undefined;
|
|
1241
1256
|
placeSelf?: Property.PlaceSelf | undefined;
|
|
1257
|
+
positionTry?: Property.PositionTry | undefined;
|
|
1242
1258
|
scrollMargin?: Property.ScrollMargin<string | number> | undefined;
|
|
1243
1259
|
scrollMarginBlock?: Property.ScrollMarginBlock<string | number> | undefined;
|
|
1244
1260
|
scrollMarginInline?: Property.ScrollMarginInline<string | number> | undefined;
|
|
@@ -1249,7 +1265,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1249
1265
|
scrollTimeline?: Property.ScrollTimeline | undefined;
|
|
1250
1266
|
textDecoration?: Property.TextDecoration<string | number> | undefined;
|
|
1251
1267
|
textEmphasis?: Property.TextEmphasis | undefined;
|
|
1268
|
+
textWrap?: Property.TextWrap | undefined;
|
|
1252
1269
|
transition?: Property.Transition<string & {}> | undefined;
|
|
1270
|
+
viewTimeline?: Property.ViewTimeline | undefined;
|
|
1253
1271
|
MozAnimationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
1254
1272
|
MozAnimationDirection?: Property.AnimationDirection | undefined;
|
|
1255
1273
|
MozAnimationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -1271,8 +1289,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1271
1289
|
MozBorderStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
1272
1290
|
MozBorderTopColors?: Property.MozBorderTopColors | undefined;
|
|
1273
1291
|
MozBoxSizing?: Property.BoxSizing | undefined;
|
|
1274
|
-
MozColumnCount?: Property.ColumnCount | undefined;
|
|
1275
|
-
MozColumnFill?: Property.ColumnFill | undefined;
|
|
1276
1292
|
MozColumnRuleColor?: Property.ColumnRuleColor | undefined;
|
|
1277
1293
|
MozColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
|
|
1278
1294
|
MozColumnRuleWidth?: Property.ColumnRuleWidth<string | number> | undefined;
|
|
@@ -1281,11 +1297,14 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1281
1297
|
MozFontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
1282
1298
|
MozFontLanguageOverride?: Property.FontLanguageOverride | undefined;
|
|
1283
1299
|
MozHyphens?: Property.Hyphens | undefined;
|
|
1284
|
-
MozImageRegion?: Property.MozImageRegion | undefined;
|
|
1285
1300
|
MozMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1286
1301
|
MozMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1287
1302
|
MozOrient?: Property.MozOrient | undefined;
|
|
1288
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;
|
|
1289
1308
|
MozPaddingEnd?: Property.PaddingInlineEnd<string | number> | undefined;
|
|
1290
1309
|
MozPaddingStart?: Property.PaddingInlineStart<string | number> | undefined;
|
|
1291
1310
|
MozPerspective?: Property.Perspective<string | number> | undefined;
|
|
@@ -1294,13 +1313,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1294
1313
|
MozTabSize?: Property.TabSize<string | number> | undefined;
|
|
1295
1314
|
MozTextBlink?: Property.MozTextBlink | undefined;
|
|
1296
1315
|
MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1316
|
+
MozTransform?: Property.Transform | undefined;
|
|
1297
1317
|
MozTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1298
1318
|
MozTransformStyle?: Property.TransformStyle | undefined;
|
|
1299
|
-
MozTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1300
|
-
MozTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1301
|
-
MozTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1302
|
-
MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1303
|
-
MozUserFocus?: Property.MozUserFocus | undefined;
|
|
1304
1319
|
MozUserModify?: Property.MozUserModify | undefined;
|
|
1305
1320
|
MozUserSelect?: Property.UserSelect | undefined;
|
|
1306
1321
|
MozWindowDragging?: Property.MozWindowDragging | undefined;
|
|
@@ -1419,6 +1434,8 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1419
1434
|
WebkitJustifyContent?: Property.JustifyContent | undefined;
|
|
1420
1435
|
WebkitLineBreak?: Property.LineBreak | undefined;
|
|
1421
1436
|
WebkitLineClamp?: Property.WebkitLineClamp | undefined;
|
|
1437
|
+
WebkitLogicalHeight?: Property.BlockSize<string | number> | undefined;
|
|
1438
|
+
WebkitLogicalWidth?: Property.InlineSize<string | number> | undefined;
|
|
1422
1439
|
WebkitMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1423
1440
|
WebkitMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1424
1441
|
WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined;
|
|
@@ -1473,12 +1490,13 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1473
1490
|
WebkitTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1474
1491
|
WebkitTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1475
1492
|
WebkitUserModify?: Property.WebkitUserModify | undefined;
|
|
1476
|
-
WebkitUserSelect?: Property.
|
|
1493
|
+
WebkitUserSelect?: Property.WebkitUserSelect | undefined;
|
|
1477
1494
|
WebkitWritingMode?: Property.WritingMode | undefined;
|
|
1478
1495
|
MozAnimation?: Property.Animation<string & {}> | undefined;
|
|
1479
1496
|
MozBorderImage?: Property.BorderImage | undefined;
|
|
1480
1497
|
MozColumnRule?: Property.ColumnRule<string | number> | undefined;
|
|
1481
1498
|
MozColumns?: Property.Columns<string | number> | undefined;
|
|
1499
|
+
MozOutlineRadius?: Property.MozOutlineRadius<string | number> | undefined;
|
|
1482
1500
|
MozTransition?: Property.Transition<string & {}> | undefined;
|
|
1483
1501
|
msContentZoomLimit?: Property.MsContentZoomLimit | undefined;
|
|
1484
1502
|
msContentZoomSnap?: Property.MsContentZoomSnap | undefined;
|
|
@@ -1500,7 +1518,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1500
1518
|
WebkitTextEmphasis?: Property.TextEmphasis | undefined;
|
|
1501
1519
|
WebkitTextStroke?: Property.WebkitTextStroke<string | number> | undefined;
|
|
1502
1520
|
WebkitTransition?: Property.Transition<string & {}> | undefined;
|
|
1503
|
-
azimuth?: Property.Azimuth | undefined;
|
|
1504
1521
|
boxAlign?: Property.BoxAlign | undefined;
|
|
1505
1522
|
boxDirection?: Property.BoxDirection | undefined;
|
|
1506
1523
|
boxFlex?: Property.BoxFlex | undefined;
|
|
@@ -1510,16 +1527,22 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1510
1527
|
boxOrient?: Property.BoxOrient | undefined;
|
|
1511
1528
|
boxPack?: Property.BoxPack | undefined;
|
|
1512
1529
|
clip?: Property.Clip | undefined;
|
|
1530
|
+
fontStretch?: Property.FontStretch | undefined;
|
|
1513
1531
|
gridColumnGap?: Property.GridColumnGap<string | number> | undefined;
|
|
1514
1532
|
gridGap?: Property.GridGap<string | number> | undefined;
|
|
1515
1533
|
gridRowGap?: Property.GridRowGap<string | number> | undefined;
|
|
1516
1534
|
imeMode?: Property.ImeMode | undefined;
|
|
1535
|
+
insetArea?: Property.PositionArea | undefined;
|
|
1517
1536
|
offsetBlock?: Property.InsetBlock<string | number> | undefined;
|
|
1518
1537
|
offsetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
1519
1538
|
offsetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
1520
1539
|
offsetInline?: Property.InsetInline<string | number> | undefined;
|
|
1521
1540
|
offsetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
1522
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;
|
|
1523
1546
|
scrollSnapCoordinate?: Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1524
1547
|
scrollSnapDestination?: Property.ScrollSnapDestination<string | number> | undefined;
|
|
1525
1548
|
scrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
@@ -1538,7 +1561,6 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1538
1561
|
KhtmlOpacity?: Property.Opacity | undefined;
|
|
1539
1562
|
KhtmlUserSelect?: Property.UserSelect | undefined;
|
|
1540
1563
|
MozBackgroundClip?: Property.BackgroundClip | undefined;
|
|
1541
|
-
MozBackgroundInlinePolicy?: Property.BoxDecorationBreak | undefined;
|
|
1542
1564
|
MozBackgroundOrigin?: Property.BackgroundOrigin | undefined;
|
|
1543
1565
|
MozBackgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
1544
1566
|
MozBorderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
@@ -1553,22 +1575,24 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1553
1575
|
MozBoxOrient?: Property.BoxOrient | undefined;
|
|
1554
1576
|
MozBoxPack?: Property.BoxPack | undefined;
|
|
1555
1577
|
MozBoxShadow?: Property.BoxShadow | undefined;
|
|
1578
|
+
MozColumnCount?: Property.ColumnCount | undefined;
|
|
1579
|
+
MozColumnFill?: Property.ColumnFill | undefined;
|
|
1556
1580
|
MozFloatEdge?: Property.MozFloatEdge | undefined;
|
|
1557
1581
|
MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined;
|
|
1558
1582
|
MozOpacity?: Property.Opacity | undefined;
|
|
1559
1583
|
MozOutline?: Property.Outline<string | number> | undefined;
|
|
1560
1584
|
MozOutlineColor?: Property.OutlineColor | undefined;
|
|
1561
|
-
MozOutlineRadius?: Property.MozOutlineRadius<string | number> | undefined;
|
|
1562
|
-
MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1563
|
-
MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1564
|
-
MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1565
|
-
MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1566
1585
|
MozOutlineStyle?: Property.OutlineStyle | undefined;
|
|
1567
1586
|
MozOutlineWidth?: Property.OutlineWidth<string | number> | undefined;
|
|
1568
1587
|
MozTextAlignLast?: Property.TextAlignLast | undefined;
|
|
1569
1588
|
MozTextDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1570
1589
|
MozTextDecorationLine?: Property.TextDecorationLine | undefined;
|
|
1571
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;
|
|
1572
1596
|
MozUserInput?: Property.MozUserInput | undefined;
|
|
1573
1597
|
msImeMode?: Property.ImeMode | undefined;
|
|
1574
1598
|
OAnimation?: Property.Animation<string & {}> | undefined;
|
|
@@ -1601,38 +1625,9 @@ export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
|
1601
1625
|
WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1602
1626
|
WebkitBoxOrient?: Property.BoxOrient | undefined;
|
|
1603
1627
|
WebkitBoxPack?: Property.BoxPack | undefined;
|
|
1604
|
-
WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
1605
|
-
WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
1606
|
-
alignmentBaseline?: Property.AlignmentBaseline | undefined;
|
|
1607
|
-
baselineShift?: Property.BaselineShift<string | number> | undefined;
|
|
1608
|
-
clipRule?: Property.ClipRule | undefined;
|
|
1609
1628
|
colorInterpolation?: Property.ColorInterpolation | undefined;
|
|
1610
1629
|
colorRendering?: Property.ColorRendering | undefined;
|
|
1611
|
-
dominantBaseline?: Property.DominantBaseline | undefined;
|
|
1612
|
-
fill?: Property.Fill | undefined;
|
|
1613
|
-
fillOpacity?: Property.FillOpacity | undefined;
|
|
1614
|
-
fillRule?: Property.FillRule | undefined;
|
|
1615
|
-
floodColor?: Property.FloodColor | undefined;
|
|
1616
|
-
floodOpacity?: Property.FloodOpacity | undefined;
|
|
1617
1630
|
glyphOrientationVertical?: Property.GlyphOrientationVertical | undefined;
|
|
1618
|
-
lightingColor?: Property.LightingColor | undefined;
|
|
1619
|
-
marker?: Property.Marker | undefined;
|
|
1620
|
-
markerEnd?: Property.MarkerEnd | undefined;
|
|
1621
|
-
markerMid?: Property.MarkerMid | undefined;
|
|
1622
|
-
markerStart?: Property.MarkerStart | undefined;
|
|
1623
|
-
shapeRendering?: Property.ShapeRendering | undefined;
|
|
1624
|
-
stopColor?: Property.StopColor | undefined;
|
|
1625
|
-
stopOpacity?: Property.StopOpacity | undefined;
|
|
1626
|
-
stroke?: Property.Stroke | undefined;
|
|
1627
|
-
strokeDasharray?: Property.StrokeDasharray<string | number> | undefined;
|
|
1628
|
-
strokeDashoffset?: Property.StrokeDashoffset<string | number> | undefined;
|
|
1629
|
-
strokeLinecap?: Property.StrokeLinecap | undefined;
|
|
1630
|
-
strokeLinejoin?: Property.StrokeLinejoin | undefined;
|
|
1631
|
-
strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
|
|
1632
|
-
strokeOpacity?: Property.StrokeOpacity | undefined;
|
|
1633
|
-
strokeWidth?: Property.StrokeWidth<string | number> | undefined;
|
|
1634
|
-
textAnchor?: Property.TextAnchor | undefined;
|
|
1635
|
-
vectorEffect?: Property.VectorEffect | undefined;
|
|
1636
1631
|
};
|
|
1637
1632
|
arrowPos: (Partial<Coords> & {
|
|
1638
1633
|
centerOffset: number;
|