@shlinkio/shlink-frontend-kit 0.9.12 → 1.0.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/README.md +3 -3
- package/dist/index.d.ts +1403 -114
- package/dist/index.js +1647 -242
- package/dist/tailwind.preset.css +49 -92
- package/package.json +2 -9
- package/dist/base.scss +0 -27
- package/dist/index.css +0 -1
- package/dist/ordering-pAYMfJPl.js +0 -108
- package/dist/tailwind.d.ts +0 -1454
- package/dist/tailwind.js +0 -1549
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
import { CardProps } from 'reactstrap';
|
|
2
1
|
import { ChangeEvent } from 'react';
|
|
2
|
+
import { Coords } from '@floating-ui/utils';
|
|
3
3
|
import { Dispatch } from 'react';
|
|
4
|
-
import { DropdownToggleProps } from 'reactstrap/types/lib/DropdownToggle';
|
|
5
4
|
import { FC } from 'react';
|
|
5
|
+
import { ForwardedRef } from 'react';
|
|
6
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
7
|
+
import { HTMLProps } from 'react';
|
|
8
|
+
import { InputHTMLAttributes } from 'react';
|
|
6
9
|
import { JSX } from 'react/jsx-runtime';
|
|
10
|
+
import { LinkProps } from 'react-router';
|
|
11
|
+
import { Placement } from '@floating-ui/react';
|
|
12
|
+
import { Property } from 'csstype';
|
|
7
13
|
import { PropsWithChildren } from 'react';
|
|
8
14
|
import { ReactNode } from 'react';
|
|
15
|
+
import { RefAttributes } from 'react';
|
|
16
|
+
import { ReferenceType } from '@floating-ui/react-dom';
|
|
17
|
+
import { ReferenceType as ReferenceType_2 } from '@floating-ui/react';
|
|
9
18
|
import { RefObject } from 'react';
|
|
10
19
|
import { SetStateAction } from 'react';
|
|
11
20
|
|
|
21
|
+
declare type AnchorProps = Omit<LinkProps, 'role' | 'aria-disabled' | 'tabIndex'>;
|
|
22
|
+
|
|
12
23
|
export declare type ArrowKeyNavigationOptions = {
|
|
13
24
|
/** Query selector for focusable elements that need to be included in the loop */
|
|
14
25
|
elementsSelector: string;
|
|
@@ -20,47 +31,205 @@ export declare type ArrowKeyNavigationOptions = {
|
|
|
20
31
|
horizontal?: boolean;
|
|
21
32
|
};
|
|
22
33
|
|
|
23
|
-
declare type
|
|
24
|
-
|
|
34
|
+
export declare type BaseInputProps = {
|
|
35
|
+
size?: Size;
|
|
36
|
+
feedback?: 'error';
|
|
37
|
+
/**
|
|
38
|
+
* Whether the input should have an opinionated style or not. Defaults to 'default'.
|
|
39
|
+
* An unstyled input can be useful to wrap or customize.
|
|
40
|
+
*/
|
|
41
|
+
variant?: 'default' | 'unstyled';
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
declare type BaseInputProps_2 = Omit<SearchInputProps, 'role' | 'aria-autocomplete' | 'aria-expanded' | 'aria-controls' | 'aria-activedescendant' | 'onChange' | 'autoComplete' | 'autoCorrect'>;
|
|
45
|
+
|
|
46
|
+
export declare const BaseNavBar: FC<NavBarProps>;
|
|
47
|
+
|
|
48
|
+
declare type BooleanControlProps = Omit<HTMLProps<HTMLInputElement>, 'type' | 'onChange' | 'value' | 'defaultValue'> & {
|
|
25
49
|
onChange?: (checked: boolean, e: ChangeEvent<HTMLInputElement>) => void;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export declare const BRAND_COLOR_ALPHA_DM = "rgba(70, 150, 229, 0.4)";
|
|
53
|
+
|
|
54
|
+
export declare const BRAND_COLOR_ALPHA_LM = "rgba(32, 120, 207, 0.4)";
|
|
55
|
+
|
|
56
|
+
export declare const BRAND_COLOR_DM = "#4696e5";
|
|
57
|
+
|
|
58
|
+
export declare const BRAND_COLOR_LM = "#2078CF";
|
|
59
|
+
|
|
60
|
+
export declare const brandColor: () => "#4696e5" | "#2078CF";
|
|
61
|
+
|
|
62
|
+
export declare const brandColorAlpha: () => "rgba(70, 150, 229, 0.4)" | "rgba(32, 120, 207, 0.4)";
|
|
63
|
+
|
|
64
|
+
export declare const Button: ForwardRefExoticComponent<(({
|
|
65
|
+
disabled?: boolean;
|
|
66
|
+
className?: string;
|
|
67
|
+
variant?: "primary" | "secondary" | "danger";
|
|
68
|
+
type?: HTMLButtonElement["type"];
|
|
69
|
+
size?: Size;
|
|
70
|
+
inline?: boolean;
|
|
71
|
+
solid?: boolean;
|
|
72
|
+
} & LinkProps & {
|
|
73
|
+
children?: ReactNode | undefined;
|
|
74
|
+
}) | Omit<{
|
|
75
|
+
disabled?: boolean;
|
|
76
|
+
className?: string;
|
|
77
|
+
variant?: "primary" | "secondary" | "danger";
|
|
78
|
+
type?: HTMLButtonElement["type"];
|
|
79
|
+
size?: Size;
|
|
80
|
+
inline?: boolean;
|
|
81
|
+
solid?: boolean;
|
|
82
|
+
} & RegularButtonProps & {
|
|
83
|
+
children?: ReactNode | undefined;
|
|
84
|
+
}, "ref">) & RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
85
|
+
|
|
86
|
+
export declare type ButtonProps = PropsWithChildren<{
|
|
87
|
+
disabled?: boolean;
|
|
26
88
|
className?: string;
|
|
89
|
+
variant?: 'primary' | 'secondary' | 'danger';
|
|
90
|
+
type?: HTMLButtonElement['type'];
|
|
91
|
+
size?: Size;
|
|
27
92
|
inline?: boolean;
|
|
28
|
-
|
|
93
|
+
solid?: boolean;
|
|
94
|
+
} & (RegularButtonProps | LinkButtonProps_2)>;
|
|
95
|
+
|
|
96
|
+
declare type ButtonProps_2 = Omit<HTMLProps<HTMLButtonElement>, 'role' | 'disabled' | 'aria-disabled' | 'tabIndex'>;
|
|
29
97
|
|
|
30
98
|
export declare type Callback = () => unknown;
|
|
31
99
|
|
|
32
|
-
export declare const
|
|
100
|
+
export declare const Card: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement>> & {
|
|
101
|
+
Body: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement>>;
|
|
102
|
+
Header: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement>>;
|
|
103
|
+
Footer: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement>>;
|
|
104
|
+
};
|
|
33
105
|
|
|
34
|
-
/**
|
|
35
|
-
|
|
106
|
+
/**
|
|
107
|
+
* A ModalDialog that renders a Card as its content
|
|
108
|
+
*/
|
|
109
|
+
export declare const CardModal: FC<CardModalProps>;
|
|
36
110
|
|
|
37
|
-
export declare
|
|
111
|
+
export declare type CardModalProps = Omit<ModalDialogProps, 'title' | 'size'> & (CoverCardModalProps | RegularCardModalProps);
|
|
38
112
|
|
|
39
|
-
|
|
40
|
-
export declare function determineOrder<Fields extends string = string>(currentField?: Fields, newField?: Fields, currentOrderDir?: OrderDir): Order<Fields>;
|
|
113
|
+
export declare type CardProps = Omit<HTMLProps<HTMLDivElement>, 'ref'>;
|
|
41
114
|
|
|
42
|
-
export declare
|
|
115
|
+
export declare type CellProps = HTMLProps<HTMLTableCellElement> & {
|
|
116
|
+
/**
|
|
117
|
+
* The name of the column to be displayed in small resolutions when the table is responsive, where the cells collapse.
|
|
118
|
+
* It is ignored for non-responsive tables.
|
|
119
|
+
*/
|
|
120
|
+
columnName?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Whether to use a th or td tag. If not provided, it is inferred based on the section, using td when inside tbody,
|
|
123
|
+
* and th when inside thead or tfoot
|
|
124
|
+
*/
|
|
125
|
+
type?: 'td' | 'th';
|
|
126
|
+
};
|
|
43
127
|
|
|
44
|
-
|
|
45
|
-
|
|
128
|
+
export declare const changeThemeInMarkup: (theme: Theme) => void | undefined;
|
|
129
|
+
|
|
130
|
+
export declare const Checkbox: ForwardRefExoticComponent<Omit<BooleanControlProps, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
131
|
+
|
|
132
|
+
export declare type CheckboxProps = BooleanControlProps;
|
|
46
133
|
|
|
47
|
-
|
|
48
|
-
export declare const DropdownBtn: FC<DropdownBtnProps>;
|
|
134
|
+
export declare const CloseButton: ForwardRefExoticComponent<CloseButtonProps & RefAttributes<HTMLButtonElement>>;
|
|
49
135
|
|
|
50
|
-
export declare type
|
|
51
|
-
minWidth?: number;
|
|
52
|
-
/** Accessible label for screen readers. Defaults to "Options" */
|
|
136
|
+
export declare type CloseButtonProps = {
|
|
53
137
|
label?: string;
|
|
138
|
+
onClick?: HTMLProps<HTMLButtonElement>['onClick'];
|
|
139
|
+
className?: string;
|
|
140
|
+
size?: Size;
|
|
141
|
+
solid?: boolean;
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
declare type CommonCardModalProps = {
|
|
145
|
+
/** Modal header title */
|
|
146
|
+
title: RequiredReactNode;
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
export declare const CopyToClipboardButton: FC<CopyToClipboardButtonProps>;
|
|
150
|
+
|
|
151
|
+
export declare type CopyToClipboardButtonProps = Omit<HTMLProps<HTMLButtonElement>, 'type' | 'onClick' | 'size'> & {
|
|
152
|
+
/** Text to be copied when the button is clicked */
|
|
153
|
+
text: string;
|
|
154
|
+
/** Size of the button. Defaults to `lg` */
|
|
155
|
+
size?: Size;
|
|
156
|
+
/** Test seam */
|
|
157
|
+
initialCopied?: boolean;
|
|
158
|
+
/** Test seam */
|
|
159
|
+
navigator_?: typeof globalThis.navigator;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
declare type CoverCardModalProps = CommonCardModalProps & {
|
|
163
|
+
/**
|
|
164
|
+
* Cover dialogs have a body that span the whole dialog, and no buttons.
|
|
165
|
+
* The header overlaps the body with semi-transparent background.
|
|
166
|
+
*/
|
|
167
|
+
variant: 'cover';
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
export declare const Details: FC<DetailsProps>;
|
|
171
|
+
|
|
172
|
+
export declare type DetailsProps = Omit<HTMLProps<HTMLDetailsElement>, 'ref'> & {
|
|
173
|
+
summary: ReactNode;
|
|
174
|
+
summaryClasses?: string;
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Generate an Order object for the new order field, based on previous order field and direction.
|
|
179
|
+
*/
|
|
180
|
+
export declare function determineOrder<Fields extends string = string>(orderDirChange: OrderDirChange<Fields>): Order<Fields>;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Generate an Order dir for the new order field, based on previous order field and direction.
|
|
184
|
+
*/
|
|
185
|
+
export declare function determineOrderDir<Fields extends string = string>(orderDirChange: OrderDirChange<Fields>): OrderDir;
|
|
186
|
+
|
|
187
|
+
export declare const Dropdown: FC<DropdownProps> & {
|
|
188
|
+
Item: FC<MenuItemProps>;
|
|
189
|
+
Separator: FC;
|
|
190
|
+
Title: FC<{
|
|
191
|
+
children?: ReactNode | undefined;
|
|
192
|
+
}>;
|
|
193
|
+
Misc: FC<HTMLProps<HTMLDivElement>>;
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
export declare type DropdownProps = PropsWithChildren<{
|
|
197
|
+
buttonContent: RequiredReactNode;
|
|
198
|
+
buttonSize?: Size;
|
|
199
|
+
buttonClassName?: string;
|
|
200
|
+
buttonVariant?: 'button' | 'link' | 'text';
|
|
201
|
+
buttonDisabled?: boolean;
|
|
202
|
+
/** Set as the button's `aria-label` attribute */
|
|
203
|
+
buttonLabel?: string;
|
|
204
|
+
/** Classes to be set on the containing wrapper element */
|
|
205
|
+
containerClassName?: string;
|
|
206
|
+
/** Classes to be set on the menu element */
|
|
207
|
+
menuClassName?: string;
|
|
208
|
+
/**
|
|
209
|
+
* Whether the menu should align with the right or the left side of the toggle button in case it is bigger.
|
|
210
|
+
* Defaults to 'left'.
|
|
211
|
+
*/
|
|
212
|
+
menuAlignment?: 'left' | 'right';
|
|
213
|
+
/** Distance between toggle button and menu when open, in pixels. Defaults to 3 */
|
|
214
|
+
menuOffset?: number;
|
|
215
|
+
/** Whether to hide the caret or not. Defaults to false */
|
|
216
|
+
caretless?: boolean;
|
|
54
217
|
}>;
|
|
55
218
|
|
|
56
|
-
export declare
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
219
|
+
export declare const ELLIPSIS = "...";
|
|
220
|
+
|
|
221
|
+
declare type Ellipsis = typeof ELLIPSIS;
|
|
222
|
+
|
|
223
|
+
export declare type ExitAction = 'confirm' | 'cancel';
|
|
224
|
+
|
|
225
|
+
export declare const formatNumber: (number: number | string) => string;
|
|
226
|
+
|
|
227
|
+
declare type FormControlWithFeedbackProps = PropsWithChildren<{
|
|
228
|
+
/** An error message to display under the input. Will cause the input to be set with `error` feedback. */
|
|
229
|
+
error?: ReactNode;
|
|
230
|
+
/** Informative help to be display under the input */
|
|
231
|
+
helpText?: ReactNode;
|
|
232
|
+
'data-testid'?: string;
|
|
64
233
|
}>;
|
|
65
234
|
|
|
66
235
|
export declare const getSystemPreferredTheme: (_matchMedia?: ((query: string) => MediaQueryList) & typeof matchMedia) => Theme;
|
|
@@ -69,18 +238,13 @@ export declare const HIGHLIGHTED_COLOR = "#f77f28";
|
|
|
69
238
|
|
|
70
239
|
export declare const HIGHLIGHTED_COLOR_ALPHA = "rgba(247, 127, 40, 0.4)";
|
|
71
240
|
|
|
72
|
-
|
|
73
|
-
|
|
241
|
+
export declare const Input: ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "checked" | "size" | "defaultChecked"> & BaseInputProps & {
|
|
242
|
+
borderless?: boolean;
|
|
243
|
+
} & RefAttributes<HTMLInputElement>>;
|
|
74
244
|
|
|
75
|
-
export declare type
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
type?: HTMLInputElement['type'];
|
|
79
|
-
required?: boolean;
|
|
80
|
-
placeholder?: string;
|
|
81
|
-
className?: string;
|
|
82
|
-
labelClassName?: string;
|
|
83
|
-
}>;
|
|
245
|
+
export declare type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'checked' | 'defaultChecked'> & BaseInputProps & {
|
|
246
|
+
borderless?: boolean;
|
|
247
|
+
};
|
|
84
248
|
|
|
85
249
|
export declare const isDarkThemeEnabled: () => boolean;
|
|
86
250
|
|
|
@@ -94,49 +258,173 @@ export declare const isDarkThemeEnabled: () => boolean;
|
|
|
94
258
|
*/
|
|
95
259
|
export declare function isLightColor(colorHex: string): boolean;
|
|
96
260
|
|
|
97
|
-
|
|
98
|
-
|
|
261
|
+
declare type ItemProps = {
|
|
262
|
+
active?: boolean;
|
|
263
|
+
};
|
|
99
264
|
|
|
100
|
-
declare
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
265
|
+
export declare const keyForPage: (pageNumber: NumberOrEllipsis, index: number) => string;
|
|
266
|
+
|
|
267
|
+
export declare const Label: FC<LabelProps>;
|
|
268
|
+
|
|
269
|
+
export declare const LabelledInput: ForwardRefExoticComponent<Omit<InputProps, "className" | "id" | "feedback"> & {
|
|
270
|
+
error?: ReactNode;
|
|
271
|
+
helpText?: ReactNode;
|
|
272
|
+
'data-testid'?: string;
|
|
273
|
+
} & {
|
|
274
|
+
children?: ReactNode | undefined;
|
|
275
|
+
} & {
|
|
276
|
+
label: RequiredReactNode;
|
|
277
|
+
inputClassName?: string;
|
|
278
|
+
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
279
|
+
hiddenRequired?: boolean;
|
|
280
|
+
} & RefAttributes<HTMLInputElement>>;
|
|
281
|
+
|
|
282
|
+
export declare type LabelledInputProps = Omit<InputProps, 'className' | 'id' | 'feedback'> & FormControlWithFeedbackProps & {
|
|
283
|
+
label: RequiredReactNode;
|
|
284
|
+
inputClassName?: string;
|
|
285
|
+
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
286
|
+
hiddenRequired?: boolean;
|
|
287
|
+
};
|
|
107
288
|
|
|
108
|
-
export declare const
|
|
289
|
+
export declare const LabelledRevealablePasswordInput: ForwardRefExoticComponent<Omit<RevealablePasswordInputProps, "className" | "id" | "feedback"> & {
|
|
290
|
+
error?: ReactNode;
|
|
291
|
+
helpText?: ReactNode;
|
|
292
|
+
'data-testid'?: string;
|
|
293
|
+
} & {
|
|
294
|
+
children?: ReactNode | undefined;
|
|
295
|
+
} & {
|
|
296
|
+
label: RequiredReactNode;
|
|
297
|
+
inputClassName?: string;
|
|
298
|
+
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
299
|
+
hiddenRequired?: boolean;
|
|
300
|
+
} & RefAttributes<HTMLInputElement>>;
|
|
301
|
+
|
|
302
|
+
export declare type LabelledRevealablePasswordInputProps = Omit<RevealablePasswordInputProps, 'className' | 'id' | 'feedback'> & FormControlWithFeedbackProps & {
|
|
303
|
+
label: RequiredReactNode;
|
|
304
|
+
inputClassName?: string;
|
|
305
|
+
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
306
|
+
hiddenRequired?: boolean;
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
export declare const LabelledSelect: ForwardRefExoticComponent<Omit<LabelledSelectProps, "ref"> & RefAttributes<HTMLSelectElement>>;
|
|
310
|
+
|
|
311
|
+
export declare type LabelledSelectProps = Omit<SelectProps, 'className' | 'id'> & FormControlWithFeedbackProps & {
|
|
312
|
+
label: RequiredReactNode;
|
|
313
|
+
selectClassName?: string;
|
|
314
|
+
/** Alternative to `required`. Causes the input to be required, without displaying an asterisk */
|
|
315
|
+
hiddenRequired?: boolean;
|
|
316
|
+
};
|
|
109
317
|
|
|
110
|
-
export declare
|
|
318
|
+
export declare type LabelProps = HTMLProps<HTMLLabelElement> & {
|
|
319
|
+
required?: boolean;
|
|
320
|
+
};
|
|
111
321
|
|
|
112
|
-
|
|
322
|
+
export declare const LinkButton: ForwardRefExoticComponent<Omit<LinkButtonProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
323
|
+
|
|
324
|
+
export declare type LinkButtonProps = Omit<HTMLProps<HTMLButtonElement>, 'size' | 'type'> & {
|
|
325
|
+
size?: Size;
|
|
326
|
+
type?: HTMLButtonElement['type'];
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
declare type LinkButtonProps_2 = LinkProps;
|
|
330
|
+
|
|
331
|
+
export declare function Listbox<Item>({ id, items, onSelectItem, onActiveItemChange, renderItem, className, noItemsMessage, anchor, 'aria-label': label, ...rest }: ListboxProps<Item>): JSX.Element;
|
|
332
|
+
|
|
333
|
+
export declare type ListboxProps<Item> = Omit<CardProps, 'id' | 'role' | 'aria-orientation'> & {
|
|
334
|
+
/** Map of items in the listbox, with a key representing them uniquely */
|
|
335
|
+
items: Map<string, Item>;
|
|
336
|
+
/** Invoked when the active item is selected via click or `Enter` */
|
|
337
|
+
onSelectItem: (item: Item) => void;
|
|
338
|
+
/** Invoked when the active item changes via vertical arrows or hover */
|
|
339
|
+
onActiveItemChange?: (key: string, item: Item) => void;
|
|
340
|
+
/** To customize the shape of an item */
|
|
341
|
+
renderItem: (item: Item) => ReactNode;
|
|
342
|
+
/** Used to link with the element controlling this listbox */
|
|
343
|
+
id: string;
|
|
344
|
+
/**
|
|
345
|
+
* Allows to optionally anchor this listbox to another element.
|
|
346
|
+
* If provided, it will attach arrow key and Enter press listeners to interact with the listbox.
|
|
347
|
+
*/
|
|
348
|
+
anchor?: RefObject<HTMLElement | null>;
|
|
349
|
+
/**
|
|
350
|
+
* Message to display when the list of items is empty.
|
|
351
|
+
* Defaults to 'No items'.
|
|
352
|
+
*/
|
|
353
|
+
noItemsMessage?: string;
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
export declare const Menu: FC<MenuProps> & {
|
|
357
|
+
Item: FC<MenuItemProps>;
|
|
358
|
+
Separator: FC;
|
|
359
|
+
Title: FC<{
|
|
360
|
+
children?: ReactNode | undefined;
|
|
361
|
+
}>;
|
|
362
|
+
Misc: FC<HTMLProps<HTMLDivElement>>;
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
export declare type MenuItemProps = (ButtonProps_2 | AnchorProps) & {
|
|
366
|
+
selected?: boolean;
|
|
367
|
+
disabled?: boolean;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
export declare type MenuProps = Omit<CardProps, 'role'> & {
|
|
371
|
+
/**
|
|
372
|
+
* Selector to determine elements that should be part of the focus sequence.
|
|
373
|
+
* Defaults to '[role="menuitem"]:not([disabled]):not([aria-disabled])'
|
|
374
|
+
*/
|
|
375
|
+
focusableElementsSelector?: string;
|
|
376
|
+
/**
|
|
377
|
+
* Whether first focusable item should be focused or not.
|
|
378
|
+
* Defaults to false.
|
|
379
|
+
*/
|
|
380
|
+
focusFirstItem?: boolean;
|
|
381
|
+
};
|
|
382
|
+
|
|
383
|
+
/**
|
|
384
|
+
* Component used to display a card with general information, about current page status, loading, etc.
|
|
385
|
+
*/
|
|
113
386
|
export declare const Message: FC<MessageProps>;
|
|
114
387
|
|
|
115
388
|
export declare type MessageProps = PropsWithChildren<{
|
|
116
389
|
className?: string;
|
|
117
390
|
loading?: boolean;
|
|
118
|
-
|
|
119
|
-
type?: MessageType;
|
|
391
|
+
variant?: 'default' | 'error';
|
|
120
392
|
}>;
|
|
121
393
|
|
|
122
|
-
declare
|
|
394
|
+
export declare const ModalDialog: FC<ModalDialogProps>;
|
|
123
395
|
|
|
124
|
-
|
|
125
|
-
|
|
396
|
+
export declare type ModalDialogProps = HTMLProps<HTMLDialogElement> & {
|
|
397
|
+
/** Whether the dialog is open or not */
|
|
398
|
+
open: boolean;
|
|
399
|
+
/** Invoked when the dialog is closed for any reason */
|
|
400
|
+
onClose: () => void;
|
|
401
|
+
};
|
|
126
402
|
|
|
127
|
-
declare
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
403
|
+
export declare const NavBar: FC<NavBarProps> & {
|
|
404
|
+
MenuItem: FC<LinkProps & ItemProps>;
|
|
405
|
+
Dropdown: FC<Omit<DropdownProps, "menuAlignment" | "buttonVariant" | "menuOffset"> & ItemProps>;
|
|
406
|
+
};
|
|
131
407
|
|
|
132
|
-
|
|
133
|
-
|
|
408
|
+
export declare type NavBarProps = HTMLProps<HTMLElement> & {
|
|
409
|
+
brand: RequiredReactNode;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
export declare const NavPills: FC<NavPillsProps> & {
|
|
413
|
+
Pill: FC<LinkProps>;
|
|
414
|
+
};
|
|
134
415
|
|
|
135
|
-
declare type NavPillsProps = PropsWithChildren<{
|
|
416
|
+
export declare type NavPillsProps = PropsWithChildren<{
|
|
136
417
|
fill?: boolean;
|
|
137
418
|
className?: string;
|
|
138
419
|
}>;
|
|
139
420
|
|
|
421
|
+
declare type NoTitleProps = {
|
|
422
|
+
title?: never;
|
|
423
|
+
titleSize?: never;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
export declare type NumberOrEllipsis = number | Ellipsis;
|
|
427
|
+
|
|
140
428
|
export declare type Order<Fields> = {
|
|
141
429
|
field?: Fields;
|
|
142
430
|
dir?: OrderDir;
|
|
@@ -150,74 +438,184 @@ export declare type OrderDirChange<Fields extends string = string> = {
|
|
|
150
438
|
currentOrderDir?: OrderDir;
|
|
151
439
|
};
|
|
152
440
|
|
|
153
|
-
|
|
154
|
-
export declare function OrderingDropdown<T extends string = string>({ items, order, onChange, isButton, right, prefixed }: OrderingDropdownProps<T>): JSX.Element;
|
|
441
|
+
export declare function OrderingDropdown<T extends string = string>({ items, order, onChange, prefixed, buttonVariant, ...rest }: OrderingDropdownProps<T>): JSX.Element;
|
|
155
442
|
|
|
156
|
-
export declare type OrderingDropdownProps<T extends string = string> = {
|
|
443
|
+
export declare type OrderingDropdownProps<T extends string = string> = Omit<DropdownProps, 'buttonContent'> & {
|
|
157
444
|
items: Record<T, string>;
|
|
158
445
|
order: Order<T>;
|
|
159
|
-
onChange: (
|
|
160
|
-
isButton?: boolean;
|
|
161
|
-
right?: boolean;
|
|
446
|
+
onChange: (newOrder: Order<T>) => void;
|
|
162
447
|
prefixed?: boolean;
|
|
163
448
|
};
|
|
164
449
|
|
|
165
|
-
export declare type OrderSetter<T> = {
|
|
166
|
-
(order: Order<T>): void;
|
|
167
|
-
/** @deprecated Pass the order object as the only argument */
|
|
168
|
-
(orderField?: T, orderDir?: OrderDir): void;
|
|
169
|
-
};
|
|
170
|
-
|
|
171
450
|
/**
|
|
172
451
|
* Convert provided order object to string, with the pattern `${order.field}-${order.di}`.
|
|
173
452
|
* @return - A `string` if the `dir` prop is set, `undefined` otherwise.
|
|
174
453
|
*/
|
|
175
454
|
export declare const orderToString: <T>(order: Order<T>) => string | undefined;
|
|
176
455
|
|
|
456
|
+
export declare const pageIsEllipsis: (pageNumber: NumberOrEllipsis) => pageNumber is Ellipsis;
|
|
457
|
+
|
|
458
|
+
export declare const Paginator: FC<PaginatorProps>;
|
|
459
|
+
|
|
460
|
+
export declare type PaginatorProps = {
|
|
461
|
+
pagesCount: number;
|
|
462
|
+
currentPage: number;
|
|
463
|
+
} & ({
|
|
464
|
+
onPageChange: (currentPage: number) => void;
|
|
465
|
+
} | {
|
|
466
|
+
urlForPage: (pageNumber: number) => string;
|
|
467
|
+
});
|
|
468
|
+
|
|
177
469
|
/**
|
|
178
470
|
* Parses provided query string into an object.
|
|
179
471
|
* Parameters ending with "[]" will be considered arrays and returned as a single prop with all values.
|
|
180
472
|
*/
|
|
181
473
|
export declare const parseQueryString: <T>(search: string) => T;
|
|
182
474
|
|
|
475
|
+
export declare type PillProps = LinkProps;
|
|
476
|
+
|
|
477
|
+
export declare const prettifyPageNumber: (pageNumber: NumberOrEllipsis) => string;
|
|
478
|
+
|
|
183
479
|
export declare const PRIMARY_DARK_COLOR = "#161b22";
|
|
184
480
|
|
|
185
481
|
export declare const PRIMARY_LIGHT_COLOR = "white";
|
|
186
482
|
|
|
187
|
-
|
|
483
|
+
export declare const progressivePagination: (currentPage: number, pageCount: number) => NumberOrEllipsis[];
|
|
484
|
+
|
|
485
|
+
declare type RegularButtonProps = Omit<HTMLProps<HTMLButtonElement>, 'size' | 'type'>;
|
|
486
|
+
|
|
487
|
+
declare type RegularCardModalProps = CommonCardModalProps & {
|
|
488
|
+
/** Danger dialogs use danger variants in title and confirm button */
|
|
489
|
+
variant?: 'default' | 'danger';
|
|
490
|
+
/** Determines the horizontal size of the dialog */
|
|
491
|
+
size?: Size | 'xl';
|
|
492
|
+
/** Value to display in confirm button. Defaults to 'Confirm' */
|
|
493
|
+
confirmText?: ReactNode;
|
|
494
|
+
/** Value to display in cancel button. Defaults to 'Cancel' */
|
|
495
|
+
cancelText?: ReactNode;
|
|
496
|
+
/** Whether the confirm button is disabled or not */
|
|
497
|
+
confirmDisabled?: boolean;
|
|
498
|
+
/**
|
|
499
|
+
* A footer with confirm and cancel buttons will be rendered if provided.
|
|
500
|
+
* Invoked when the confirm button is actioned.
|
|
501
|
+
*/
|
|
502
|
+
onConfirm?: () => void;
|
|
503
|
+
/** Invoked after finishing the close transition */
|
|
504
|
+
onClosed?: (exitAction: ExitAction) => void;
|
|
505
|
+
};
|
|
506
|
+
|
|
507
|
+
export declare type RequiredReactNode = Exclude<ReactNode, undefined | null>;
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* Component used to display the result of an operation, which can be a success, failure or warning.
|
|
511
|
+
*/
|
|
188
512
|
export declare const Result: FC<ResultProps>;
|
|
189
513
|
|
|
190
514
|
export declare type ResultProps = PropsWithChildren<{
|
|
191
|
-
|
|
515
|
+
variant: 'success' | 'error' | 'warning';
|
|
192
516
|
className?: string;
|
|
193
|
-
|
|
517
|
+
size?: Size;
|
|
194
518
|
}>;
|
|
195
519
|
|
|
196
|
-
export declare
|
|
520
|
+
export declare const RevealablePasswordInput: ForwardRefExoticComponent<Omit<InputProps, "type"> & {
|
|
521
|
+
containerClassName?: string;
|
|
522
|
+
} & RefAttributes<HTMLInputElement>>;
|
|
197
523
|
|
|
198
|
-
|
|
199
|
-
|
|
524
|
+
export declare type RevealablePasswordInputProps = Omit<InputProps, 'type'> & {
|
|
525
|
+
containerClassName?: string;
|
|
526
|
+
};
|
|
200
527
|
|
|
201
|
-
|
|
202
|
-
export declare const SearchField: ({ onChange, className, large, noBorder, initialValue, setTimeout_ }: SearchFieldProps) => JSX.Element;
|
|
528
|
+
export declare const roundTen: (number: number) => number;
|
|
203
529
|
|
|
204
|
-
declare
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
530
|
+
export declare const RowDropdown: FC<RowDropdownProps> & {
|
|
531
|
+
Item: FC<MenuItemProps>;
|
|
532
|
+
Separator: FC;
|
|
533
|
+
Title: FC<{
|
|
534
|
+
children?: ReactNode | undefined;
|
|
535
|
+
}>;
|
|
536
|
+
Misc: FC<HTMLProps<HTMLDivElement>>;
|
|
211
537
|
};
|
|
212
538
|
|
|
213
|
-
|
|
214
|
-
export declare const SimpleCard: ({ title, children, bodyClassName, ...rest }: SimpleCardProps) => JSX.Element;
|
|
539
|
+
export declare type RowDropdownProps = Omit<DropdownProps, 'caretless' | 'buttonContent' | 'buttonVariant'>;
|
|
215
540
|
|
|
216
|
-
export declare
|
|
217
|
-
|
|
218
|
-
|
|
541
|
+
export declare const SearchCombobox: <T>(props: SearchComboboxProps<T> & {
|
|
542
|
+
ref?: ForwardedRef<HTMLInputElement>;
|
|
543
|
+
}) => ReturnType<typeof SearchComboboxInner>;
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* This component combines a SearchInput with a Listbox, to behave close to an editable combobox with autocomplete, as
|
|
547
|
+
* described in https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/.
|
|
548
|
+
* The main difference is that the input is used only to search in the listbox, and once an item is selected, the input
|
|
549
|
+
* is cleared and the listbox is closed.
|
|
550
|
+
*/
|
|
551
|
+
declare function SearchComboboxInner<Item>({ searchResults, onSearch, onSelectSearchResult, renderSearchResult, size, // SearchInput defaults its size to 'lg'. Change it to 'md'
|
|
552
|
+
listboxSpan, onFocus, containerClassName, listboxClassName, ...rest }: SearchComboboxProps<Item>, ref: ForwardedRef<HTMLInputElement>): JSX.Element;
|
|
553
|
+
|
|
554
|
+
export declare type SearchComboboxProps<Item> = BaseInputProps_2 & {
|
|
555
|
+
/** If defined, it will display a listbox with the search results */
|
|
556
|
+
searchResults?: Map<string, Item>;
|
|
557
|
+
/** Invoked when the search input value changes */
|
|
558
|
+
onSearch: (searchTerm: string) => void;
|
|
559
|
+
/** Invoked when the active search result is selected */
|
|
560
|
+
onSelectSearchResult: (item: Item) => void;
|
|
561
|
+
/** To customize the look and feel of a search result */
|
|
562
|
+
renderSearchResult: (item: Item) => ReactNode;
|
|
563
|
+
/**
|
|
564
|
+
* Determines how the listbox should span when visible.
|
|
565
|
+
* - `full`: Be always as big as the input, regardless its content.
|
|
566
|
+
* - `auto`: Take only the needed space to display its content, up to the width of the input.
|
|
567
|
+
*
|
|
568
|
+
* Defaults to `full`.
|
|
569
|
+
*/
|
|
570
|
+
listboxSpan?: 'full' | 'auto';
|
|
571
|
+
/** Classes to add to the wrapping container */
|
|
572
|
+
containerClassName?: string;
|
|
573
|
+
/** Classes to add to the listbox */
|
|
574
|
+
listboxClassName?: string;
|
|
575
|
+
};
|
|
576
|
+
|
|
577
|
+
export declare const SearchInput: ForwardRefExoticComponent<Omit<InputProps, "value" | "className" | "onChange"> & {
|
|
578
|
+
onChange: (searchTerm: string) => void;
|
|
579
|
+
containerClassName?: string;
|
|
580
|
+
inputClassName?: string;
|
|
581
|
+
/** When set to true, it displays a loading indicator in place of the magnifyinf glass icon */
|
|
582
|
+
loading?: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* Whether onChange should be triggered immediately or debounced.
|
|
585
|
+
* Defaults to false.
|
|
586
|
+
*/
|
|
587
|
+
immediate?: boolean;
|
|
588
|
+
} & RefAttributes<HTMLInputElement>>;
|
|
589
|
+
|
|
590
|
+
export declare type SearchInputProps = Omit<InputProps, 'className' | 'onChange' | 'value'> & {
|
|
591
|
+
onChange: (searchTerm: string) => void;
|
|
592
|
+
containerClassName?: string;
|
|
593
|
+
inputClassName?: string;
|
|
594
|
+
/** When set to true, it displays a loading indicator in place of the magnifyinf glass icon */
|
|
595
|
+
loading?: boolean;
|
|
596
|
+
/**
|
|
597
|
+
* Whether onChange should be triggered immediately or debounced.
|
|
598
|
+
* Defaults to false.
|
|
599
|
+
*/
|
|
600
|
+
immediate?: boolean;
|
|
219
601
|
};
|
|
220
602
|
|
|
603
|
+
export declare type SectionType = 'head' | 'body' | 'footer';
|
|
604
|
+
|
|
605
|
+
export declare const Select: ForwardRefExoticComponent<Omit<SelectProps, "ref"> & RefAttributes<HTMLSelectElement>>;
|
|
606
|
+
|
|
607
|
+
declare type SelectElementProps = Omit<HTMLProps<HTMLSelectElement>, 'size' | 'checked' | 'defaultChecked'>;
|
|
608
|
+
|
|
609
|
+
export declare type SelectProps = PropsWithChildren<SelectElementProps & BaseInputProps>;
|
|
610
|
+
|
|
611
|
+
export declare const SimpleCard: ForwardRefExoticComponent<SimpleCardProps & RefAttributes<HTMLDivElement>>;
|
|
612
|
+
|
|
613
|
+
export declare type SimpleCardProps = Omit<CardProps, 'title' | 'size'> & {
|
|
614
|
+
bodyClassName?: string;
|
|
615
|
+
} & (TitleProps | NoTitleProps);
|
|
616
|
+
|
|
617
|
+
export declare type Size = 'sm' | 'md' | 'lg';
|
|
618
|
+
|
|
221
619
|
export declare const sortList: <List>(list: List[], { field, dir }: Order<keyof List>) => List[];
|
|
222
620
|
|
|
223
621
|
/**
|
|
@@ -230,6 +628,61 @@ export declare const stringifyQueryParams: (params: Record<string, unknown | unk
|
|
|
230
628
|
|
|
231
629
|
export declare const stringToOrder: <T>(order: string) => Order<T>;
|
|
232
630
|
|
|
631
|
+
export declare const Table: FC<TableProps> & {
|
|
632
|
+
Row: FC<HTMLProps<HTMLTableRowElement>>;
|
|
633
|
+
Cell: FC<CellProps>;
|
|
634
|
+
};
|
|
635
|
+
|
|
636
|
+
export declare type TableElementProps = PropsWithChildren & {
|
|
637
|
+
className?: string;
|
|
638
|
+
};
|
|
639
|
+
|
|
640
|
+
export declare type TableProps = Omit<HTMLProps<HTMLTableElement>, 'size'> & {
|
|
641
|
+
header: ReactNode;
|
|
642
|
+
footer?: ReactNode;
|
|
643
|
+
/**
|
|
644
|
+
* By default, the table rows will collapse under large resolutions, and the headers will be hidden.
|
|
645
|
+
* Set `responsive={false}` to avoid this behavior.
|
|
646
|
+
*/
|
|
647
|
+
responsive?: boolean;
|
|
648
|
+
/** Determines the padding in every cell. Defaults to md */
|
|
649
|
+
size?: Size;
|
|
650
|
+
};
|
|
651
|
+
|
|
652
|
+
export declare type TagItemProps = {
|
|
653
|
+
name: string;
|
|
654
|
+
color: string;
|
|
655
|
+
};
|
|
656
|
+
|
|
657
|
+
export declare const TagsAutocomplete: FC<TagsAutocompleteProps>;
|
|
658
|
+
|
|
659
|
+
export declare type TagsAutocompleteProps = {
|
|
660
|
+
/** Full list of tags from which to build the suggestions */
|
|
661
|
+
tags: string[];
|
|
662
|
+
/** Tags currently selected */
|
|
663
|
+
selectedTags?: string[];
|
|
664
|
+
/** Invoked when tags are added or removed */
|
|
665
|
+
onTagsChange?: (tags: string[]) => void;
|
|
666
|
+
/** Invoked to determine what is the color of a tag */
|
|
667
|
+
getColorForTag?: (tag: string) => string;
|
|
668
|
+
/** Search input placeholder */
|
|
669
|
+
placeholder?: string;
|
|
670
|
+
/** Classes to be added to the wrapping container */
|
|
671
|
+
containerClassName?: string;
|
|
672
|
+
/**
|
|
673
|
+
* Whether to allow adding new arbitrary tags, or only select from the list of tags.
|
|
674
|
+
* Defaults to false.
|
|
675
|
+
*/
|
|
676
|
+
immutable?: boolean;
|
|
677
|
+
/**
|
|
678
|
+
* How to filter the list of tags when searching:
|
|
679
|
+
* - `startsWith`: those that start with the search term
|
|
680
|
+
* - `includes`: those that include the search term
|
|
681
|
+
* Defaults to `startsWith`.
|
|
682
|
+
*/
|
|
683
|
+
searchMode?: 'startsWith' | 'includes';
|
|
684
|
+
} & Pick<SearchComboboxProps<string>, 'placeholder' | 'size' | 'disabled' | 'aria-label'>;
|
|
685
|
+
|
|
233
686
|
export declare type Theme = 'dark' | 'light';
|
|
234
687
|
|
|
235
688
|
export declare type TimeoutToggle = typeof useTimeoutToggle;
|
|
@@ -247,20 +700,38 @@ export declare type TimeoutToggleOptions = {
|
|
|
247
700
|
delay?: number;
|
|
248
701
|
};
|
|
249
702
|
|
|
250
|
-
|
|
703
|
+
declare type TitleProps = {
|
|
704
|
+
title: ReactNode;
|
|
705
|
+
titleSize?: Size;
|
|
706
|
+
};
|
|
251
707
|
|
|
252
|
-
export declare type
|
|
708
|
+
export declare type ToggleResult = {
|
|
253
709
|
flag: boolean;
|
|
254
710
|
toggle: () => void;
|
|
255
711
|
setToTrue: () => void;
|
|
256
712
|
setToFalse: () => void;
|
|
257
713
|
};
|
|
258
714
|
|
|
259
|
-
|
|
260
|
-
export declare type ToggleResultTuple = [boolean, () => void, () => void, () => void];
|
|
715
|
+
export declare const ToggleSwitch: ForwardRefExoticComponent<Omit<BooleanControlProps, "ref"> & RefAttributes<HTMLInputElement>>;
|
|
261
716
|
|
|
262
|
-
|
|
263
|
-
|
|
717
|
+
export declare type ToggleSwitchProps = BooleanControlProps;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* Renders a tooltip component with the content returned by useTooltip()
|
|
721
|
+
*
|
|
722
|
+
* ```
|
|
723
|
+
* const { anchor, tooltip } = useTooltip('bottom');
|
|
724
|
+
* return (
|
|
725
|
+
* <>
|
|
726
|
+
* <button {...anchor}>Hover me</button>
|
|
727
|
+
* <Tooltip {...tooltip}>This is a tooltip</Tooltip>
|
|
728
|
+
* </>
|
|
729
|
+
* )
|
|
730
|
+
* ```
|
|
731
|
+
*/
|
|
732
|
+
export declare const Tooltip: FC<TooltipProps>;
|
|
733
|
+
|
|
734
|
+
export declare type TooltipProps = PropsWithChildren<ReturnType<typeof useTooltip>['tooltip']>;
|
|
264
735
|
|
|
265
736
|
/**
|
|
266
737
|
* Allows focus navigation via arrow keys on the elements of a container.
|
|
@@ -270,13 +741,8 @@ export declare const ToggleSwitch: FC<BooleanControlProps>;
|
|
|
270
741
|
*/
|
|
271
742
|
export declare function useArrowKeyNavigation(containerRef: RefObject<HTMLElement | null>, { elementsSelector, focusFirstItem, vertical, horizontal }: ArrowKeyNavigationOptions): void;
|
|
272
743
|
|
|
273
|
-
/** @deprecated Use `useRef<T>(null) instead */
|
|
274
|
-
export declare const useElementRef: <T extends HTMLElement>() => RefObject<T | null>;
|
|
275
|
-
|
|
276
744
|
export declare const useGoBack: () => () => void | Promise<void>;
|
|
277
745
|
|
|
278
|
-
export declare const useOrder: <T>(initialOrder: Order<T>) => [Order<T>, OrderSetter<T>];
|
|
279
|
-
|
|
280
746
|
export declare const useParsedQuery: <T>() => T;
|
|
281
747
|
|
|
282
748
|
export declare const useTheme: (initialTheme?: Theme) => readonly [Theme, Dispatch<SetStateAction<Theme>>];
|
|
@@ -297,18 +763,841 @@ export declare type UseTimeoutResult = {
|
|
|
297
763
|
clearCurrentTimeout: () => void;
|
|
298
764
|
};
|
|
299
765
|
|
|
300
|
-
|
|
301
|
-
* Passing individual args is deprecated. Pass an object of options instead.
|
|
302
|
-
*/
|
|
303
|
-
export declare const useTimeoutToggle: (initialValueOrOptions?: TimeoutToggleOptions | boolean, secondArg?: number, setTimeout_?: typeof setTimeout, clearTimeout_?: typeof clearTimeout) => [boolean, () => void];
|
|
766
|
+
export declare const useTimeoutToggle: ({ initialValue, delay }?: TimeoutToggleOptions, setTimeout_?: typeof setTimeout, clearTimeout_?: typeof clearTimeout) => [boolean, () => void];
|
|
304
767
|
|
|
305
|
-
|
|
306
|
-
export declare function useToggle(initialValue?: boolean, asObject?: false): ToggleResultTuple;
|
|
768
|
+
export declare function useToggle(initialValue?: boolean): ToggleResult;
|
|
307
769
|
|
|
308
770
|
/**
|
|
309
|
-
*
|
|
310
|
-
* Deprecated. Future releases will always return an object.
|
|
771
|
+
* Initializes the properties required to render a tooltip anchored to another element.
|
|
311
772
|
*/
|
|
312
|
-
export declare
|
|
773
|
+
export declare const useTooltip: ({ placement }?: UseTooltipOptions) => {
|
|
774
|
+
anchor: {
|
|
775
|
+
ref: ((node: ReferenceType | null) => void) & ((node: ReferenceType_2 | null) => void);
|
|
776
|
+
};
|
|
777
|
+
tooltip: {
|
|
778
|
+
refSetter: ((node: HTMLElement | null) => void) & ((node: HTMLElement | null) => void);
|
|
779
|
+
isMounted: boolean;
|
|
780
|
+
styles: {
|
|
781
|
+
accentColor?: Property.AccentColor | undefined;
|
|
782
|
+
alignContent?: Property.AlignContent | undefined;
|
|
783
|
+
alignItems?: Property.AlignItems | undefined;
|
|
784
|
+
alignSelf?: Property.AlignSelf | undefined;
|
|
785
|
+
alignTracks?: Property.AlignTracks | undefined;
|
|
786
|
+
animationComposition?: Property.AnimationComposition | undefined;
|
|
787
|
+
animationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
788
|
+
animationDirection?: Property.AnimationDirection | undefined;
|
|
789
|
+
animationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
790
|
+
animationFillMode?: Property.AnimationFillMode | undefined;
|
|
791
|
+
animationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
792
|
+
animationName?: Property.AnimationName | undefined;
|
|
793
|
+
animationPlayState?: Property.AnimationPlayState | undefined;
|
|
794
|
+
animationTimeline?: Property.AnimationTimeline | undefined;
|
|
795
|
+
animationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
796
|
+
appearance?: Property.Appearance | undefined;
|
|
797
|
+
aspectRatio?: Property.AspectRatio | undefined;
|
|
798
|
+
backdropFilter?: Property.BackdropFilter | undefined;
|
|
799
|
+
backfaceVisibility?: Property.BackfaceVisibility | undefined;
|
|
800
|
+
backgroundAttachment?: Property.BackgroundAttachment | undefined;
|
|
801
|
+
backgroundBlendMode?: Property.BackgroundBlendMode | undefined;
|
|
802
|
+
backgroundClip?: Property.BackgroundClip | undefined;
|
|
803
|
+
backgroundColor?: Property.BackgroundColor | undefined;
|
|
804
|
+
backgroundImage?: Property.BackgroundImage | undefined;
|
|
805
|
+
backgroundOrigin?: Property.BackgroundOrigin | undefined;
|
|
806
|
+
backgroundPositionX?: Property.BackgroundPositionX<string | number> | undefined;
|
|
807
|
+
backgroundPositionY?: Property.BackgroundPositionY<string | number> | undefined;
|
|
808
|
+
backgroundRepeat?: Property.BackgroundRepeat | undefined;
|
|
809
|
+
backgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
810
|
+
blockOverflow?: Property.BlockOverflow | undefined;
|
|
811
|
+
blockSize?: Property.BlockSize<string | number> | undefined;
|
|
812
|
+
borderBlockColor?: Property.BorderBlockColor | undefined;
|
|
813
|
+
borderBlockEndColor?: Property.BorderBlockEndColor | undefined;
|
|
814
|
+
borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined;
|
|
815
|
+
borderBlockEndWidth?: Property.BorderBlockEndWidth<string | number> | undefined;
|
|
816
|
+
borderBlockStartColor?: Property.BorderBlockStartColor | undefined;
|
|
817
|
+
borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined;
|
|
818
|
+
borderBlockStartWidth?: Property.BorderBlockStartWidth<string | number> | undefined;
|
|
819
|
+
borderBlockStyle?: Property.BorderBlockStyle | undefined;
|
|
820
|
+
borderBlockWidth?: Property.BorderBlockWidth<string | number> | undefined;
|
|
821
|
+
borderBottomColor?: Property.BorderBottomColor | undefined;
|
|
822
|
+
borderBottomLeftRadius?: Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
823
|
+
borderBottomRightRadius?: Property.BorderBottomRightRadius<string | number> | undefined;
|
|
824
|
+
borderBottomStyle?: Property.BorderBottomStyle | undefined;
|
|
825
|
+
borderBottomWidth?: Property.BorderBottomWidth<string | number> | undefined;
|
|
826
|
+
borderCollapse?: Property.BorderCollapse | undefined;
|
|
827
|
+
borderEndEndRadius?: Property.BorderEndEndRadius<string | number> | undefined;
|
|
828
|
+
borderEndStartRadius?: Property.BorderEndStartRadius<string | number> | undefined;
|
|
829
|
+
borderImageOutset?: Property.BorderImageOutset<string | number> | undefined;
|
|
830
|
+
borderImageRepeat?: Property.BorderImageRepeat | undefined;
|
|
831
|
+
borderImageSlice?: Property.BorderImageSlice | undefined;
|
|
832
|
+
borderImageSource?: Property.BorderImageSource | undefined;
|
|
833
|
+
borderImageWidth?: Property.BorderImageWidth<string | number> | undefined;
|
|
834
|
+
borderInlineColor?: Property.BorderInlineColor | undefined;
|
|
835
|
+
borderInlineEndColor?: Property.BorderInlineEndColor | undefined;
|
|
836
|
+
borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined;
|
|
837
|
+
borderInlineEndWidth?: Property.BorderInlineEndWidth<string | number> | undefined;
|
|
838
|
+
borderInlineStartColor?: Property.BorderInlineStartColor | undefined;
|
|
839
|
+
borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
840
|
+
borderInlineStartWidth?: Property.BorderInlineStartWidth<string | number> | undefined;
|
|
841
|
+
borderInlineStyle?: Property.BorderInlineStyle | undefined;
|
|
842
|
+
borderInlineWidth?: Property.BorderInlineWidth<string | number> | undefined;
|
|
843
|
+
borderLeftColor?: Property.BorderLeftColor | undefined;
|
|
844
|
+
borderLeftStyle?: Property.BorderLeftStyle | undefined;
|
|
845
|
+
borderLeftWidth?: Property.BorderLeftWidth<string | number> | undefined;
|
|
846
|
+
borderRightColor?: Property.BorderRightColor | undefined;
|
|
847
|
+
borderRightStyle?: Property.BorderRightStyle | undefined;
|
|
848
|
+
borderRightWidth?: Property.BorderRightWidth<string | number> | undefined;
|
|
849
|
+
borderSpacing?: Property.BorderSpacing<string | number> | undefined;
|
|
850
|
+
borderStartEndRadius?: Property.BorderStartEndRadius<string | number> | undefined;
|
|
851
|
+
borderStartStartRadius?: Property.BorderStartStartRadius<string | number> | undefined;
|
|
852
|
+
borderTopColor?: Property.BorderTopColor | undefined;
|
|
853
|
+
borderTopLeftRadius?: Property.BorderTopLeftRadius<string | number> | undefined;
|
|
854
|
+
borderTopRightRadius?: Property.BorderTopRightRadius<string | number> | undefined;
|
|
855
|
+
borderTopStyle?: Property.BorderTopStyle | undefined;
|
|
856
|
+
borderTopWidth?: Property.BorderTopWidth<string | number> | undefined;
|
|
857
|
+
bottom?: Property.Bottom<string | number> | undefined;
|
|
858
|
+
boxDecorationBreak?: Property.BoxDecorationBreak | undefined;
|
|
859
|
+
boxShadow?: Property.BoxShadow | undefined;
|
|
860
|
+
boxSizing?: Property.BoxSizing | undefined;
|
|
861
|
+
breakAfter?: Property.BreakAfter | undefined;
|
|
862
|
+
breakBefore?: Property.BreakBefore | undefined;
|
|
863
|
+
breakInside?: Property.BreakInside | undefined;
|
|
864
|
+
captionSide?: Property.CaptionSide | undefined;
|
|
865
|
+
caretColor?: Property.CaretColor | undefined;
|
|
866
|
+
caretShape?: Property.CaretShape | undefined;
|
|
867
|
+
clear?: Property.Clear | undefined;
|
|
868
|
+
clipPath?: Property.ClipPath | undefined;
|
|
869
|
+
color?: Property.Color | undefined;
|
|
870
|
+
colorAdjust?: Property.PrintColorAdjust | undefined;
|
|
871
|
+
colorScheme?: Property.ColorScheme | undefined;
|
|
872
|
+
columnCount?: Property.ColumnCount | undefined;
|
|
873
|
+
columnFill?: Property.ColumnFill | undefined;
|
|
874
|
+
columnGap?: Property.ColumnGap<string | number> | undefined;
|
|
875
|
+
columnRuleColor?: Property.ColumnRuleColor | undefined;
|
|
876
|
+
columnRuleStyle?: Property.ColumnRuleStyle | undefined;
|
|
877
|
+
columnRuleWidth?: Property.ColumnRuleWidth<string | number> | undefined;
|
|
878
|
+
columnSpan?: Property.ColumnSpan | undefined;
|
|
879
|
+
columnWidth?: Property.ColumnWidth<string | number> | undefined;
|
|
880
|
+
contain?: Property.Contain | undefined;
|
|
881
|
+
containIntrinsicBlockSize?: Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
882
|
+
containIntrinsicHeight?: Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
883
|
+
containIntrinsicInlineSize?: Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
884
|
+
containIntrinsicWidth?: Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
885
|
+
containerName?: Property.ContainerName | undefined;
|
|
886
|
+
containerType?: Property.ContainerType | undefined;
|
|
887
|
+
content?: Property.Content | undefined;
|
|
888
|
+
contentVisibility?: Property.ContentVisibility | undefined;
|
|
889
|
+
counterIncrement?: Property.CounterIncrement | undefined;
|
|
890
|
+
counterReset?: Property.CounterReset | undefined;
|
|
891
|
+
counterSet?: Property.CounterSet | undefined;
|
|
892
|
+
cursor?: Property.Cursor | undefined;
|
|
893
|
+
direction?: Property.Direction | undefined;
|
|
894
|
+
display?: Property.Display | undefined;
|
|
895
|
+
emptyCells?: Property.EmptyCells | undefined;
|
|
896
|
+
filter?: Property.Filter | undefined;
|
|
897
|
+
flexBasis?: Property.FlexBasis<string | number> | undefined;
|
|
898
|
+
flexDirection?: Property.FlexDirection | undefined;
|
|
899
|
+
flexGrow?: Property.FlexGrow | undefined;
|
|
900
|
+
flexShrink?: Property.FlexShrink | undefined;
|
|
901
|
+
flexWrap?: Property.FlexWrap | undefined;
|
|
902
|
+
float?: Property.Float | undefined;
|
|
903
|
+
fontFamily?: Property.FontFamily | undefined;
|
|
904
|
+
fontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
905
|
+
fontKerning?: Property.FontKerning | undefined;
|
|
906
|
+
fontLanguageOverride?: Property.FontLanguageOverride | undefined;
|
|
907
|
+
fontOpticalSizing?: Property.FontOpticalSizing | undefined;
|
|
908
|
+
fontPalette?: Property.FontPalette | undefined;
|
|
909
|
+
fontSize?: Property.FontSize<string | number> | undefined;
|
|
910
|
+
fontSizeAdjust?: Property.FontSizeAdjust | undefined;
|
|
911
|
+
fontSmooth?: Property.FontSmooth<string | number> | undefined;
|
|
912
|
+
fontStretch?: Property.FontStretch | undefined;
|
|
913
|
+
fontStyle?: Property.FontStyle | undefined;
|
|
914
|
+
fontSynthesis?: Property.FontSynthesis | undefined;
|
|
915
|
+
fontVariant?: Property.FontVariant | undefined;
|
|
916
|
+
fontVariantAlternates?: Property.FontVariantAlternates | undefined;
|
|
917
|
+
fontVariantCaps?: Property.FontVariantCaps | undefined;
|
|
918
|
+
fontVariantEastAsian?: Property.FontVariantEastAsian | undefined;
|
|
919
|
+
fontVariantEmoji?: Property.FontVariantEmoji | undefined;
|
|
920
|
+
fontVariantLigatures?: Property.FontVariantLigatures | undefined;
|
|
921
|
+
fontVariantNumeric?: Property.FontVariantNumeric | undefined;
|
|
922
|
+
fontVariantPosition?: Property.FontVariantPosition | undefined;
|
|
923
|
+
fontVariationSettings?: Property.FontVariationSettings | undefined;
|
|
924
|
+
fontWeight?: Property.FontWeight | undefined;
|
|
925
|
+
forcedColorAdjust?: Property.ForcedColorAdjust | undefined;
|
|
926
|
+
gridAutoColumns?: Property.GridAutoColumns<string | number> | undefined;
|
|
927
|
+
gridAutoFlow?: Property.GridAutoFlow | undefined;
|
|
928
|
+
gridAutoRows?: Property.GridAutoRows<string | number> | undefined;
|
|
929
|
+
gridColumnEnd?: Property.GridColumnEnd | undefined;
|
|
930
|
+
gridColumnStart?: Property.GridColumnStart | undefined;
|
|
931
|
+
gridRowEnd?: Property.GridRowEnd | undefined;
|
|
932
|
+
gridRowStart?: Property.GridRowStart | undefined;
|
|
933
|
+
gridTemplateAreas?: Property.GridTemplateAreas | undefined;
|
|
934
|
+
gridTemplateColumns?: Property.GridTemplateColumns<string | number> | undefined;
|
|
935
|
+
gridTemplateRows?: Property.GridTemplateRows<string | number> | undefined;
|
|
936
|
+
hangingPunctuation?: Property.HangingPunctuation | undefined;
|
|
937
|
+
height?: Property.Height<string | number> | undefined;
|
|
938
|
+
hyphenateCharacter?: Property.HyphenateCharacter | undefined;
|
|
939
|
+
hyphenateLimitChars?: Property.HyphenateLimitChars | undefined;
|
|
940
|
+
hyphens?: Property.Hyphens | undefined;
|
|
941
|
+
imageOrientation?: Property.ImageOrientation | undefined;
|
|
942
|
+
imageRendering?: Property.ImageRendering | undefined;
|
|
943
|
+
imageResolution?: Property.ImageResolution | undefined;
|
|
944
|
+
initialLetter?: Property.InitialLetter | undefined;
|
|
945
|
+
inlineSize?: Property.InlineSize<string | number> | undefined;
|
|
946
|
+
inputSecurity?: Property.InputSecurity | undefined;
|
|
947
|
+
insetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
948
|
+
insetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
949
|
+
insetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
950
|
+
insetInlineStart?: Property.InsetInlineStart<string | number> | undefined;
|
|
951
|
+
isolation?: Property.Isolation | undefined;
|
|
952
|
+
justifyContent?: Property.JustifyContent | undefined;
|
|
953
|
+
justifyItems?: Property.JustifyItems | undefined;
|
|
954
|
+
justifySelf?: Property.JustifySelf | undefined;
|
|
955
|
+
justifyTracks?: Property.JustifyTracks | undefined;
|
|
956
|
+
left?: Property.Left<string | number> | undefined;
|
|
957
|
+
letterSpacing?: Property.LetterSpacing<string | number> | undefined;
|
|
958
|
+
lineBreak?: Property.LineBreak | undefined;
|
|
959
|
+
lineHeight?: Property.LineHeight<string | number> | undefined;
|
|
960
|
+
lineHeightStep?: Property.LineHeightStep<string | number> | undefined;
|
|
961
|
+
listStyleImage?: Property.ListStyleImage | undefined;
|
|
962
|
+
listStylePosition?: Property.ListStylePosition | undefined;
|
|
963
|
+
listStyleType?: Property.ListStyleType | undefined;
|
|
964
|
+
marginBlockEnd?: Property.MarginBlockEnd<string | number> | undefined;
|
|
965
|
+
marginBlockStart?: Property.MarginBlockStart<string | number> | undefined;
|
|
966
|
+
marginBottom?: Property.MarginBottom<string | number> | undefined;
|
|
967
|
+
marginInlineEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
968
|
+
marginInlineStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
969
|
+
marginLeft?: Property.MarginLeft<string | number> | undefined;
|
|
970
|
+
marginRight?: Property.MarginRight<string | number> | undefined;
|
|
971
|
+
marginTop?: Property.MarginTop<string | number> | undefined;
|
|
972
|
+
marginTrim?: Property.MarginTrim | undefined;
|
|
973
|
+
maskBorderMode?: Property.MaskBorderMode | undefined;
|
|
974
|
+
maskBorderOutset?: Property.MaskBorderOutset<string | number> | undefined;
|
|
975
|
+
maskBorderRepeat?: Property.MaskBorderRepeat | undefined;
|
|
976
|
+
maskBorderSlice?: Property.MaskBorderSlice | undefined;
|
|
977
|
+
maskBorderSource?: Property.MaskBorderSource | undefined;
|
|
978
|
+
maskBorderWidth?: Property.MaskBorderWidth<string | number> | undefined;
|
|
979
|
+
maskClip?: Property.MaskClip | undefined;
|
|
980
|
+
maskComposite?: Property.MaskComposite | undefined;
|
|
981
|
+
maskImage?: Property.MaskImage | undefined;
|
|
982
|
+
maskMode?: Property.MaskMode | undefined;
|
|
983
|
+
maskOrigin?: Property.MaskOrigin | undefined;
|
|
984
|
+
maskPosition?: Property.MaskPosition<string | number> | undefined;
|
|
985
|
+
maskRepeat?: Property.MaskRepeat | undefined;
|
|
986
|
+
maskSize?: Property.MaskSize<string | number> | undefined;
|
|
987
|
+
maskType?: Property.MaskType | undefined;
|
|
988
|
+
mathDepth?: Property.MathDepth | undefined;
|
|
989
|
+
mathShift?: Property.MathShift | undefined;
|
|
990
|
+
mathStyle?: Property.MathStyle | undefined;
|
|
991
|
+
maxBlockSize?: Property.MaxBlockSize<string | number> | undefined;
|
|
992
|
+
maxHeight?: Property.MaxHeight<string | number> | undefined;
|
|
993
|
+
maxInlineSize?: Property.MaxInlineSize<string | number> | undefined;
|
|
994
|
+
maxLines?: Property.MaxLines | undefined;
|
|
995
|
+
maxWidth?: Property.MaxWidth<string | number> | undefined;
|
|
996
|
+
minBlockSize?: Property.MinBlockSize<string | number> | undefined;
|
|
997
|
+
minHeight?: Property.MinHeight<string | number> | undefined;
|
|
998
|
+
minInlineSize?: Property.MinInlineSize<string | number> | undefined;
|
|
999
|
+
minWidth?: Property.MinWidth<string | number> | undefined;
|
|
1000
|
+
mixBlendMode?: Property.MixBlendMode | undefined;
|
|
1001
|
+
motionDistance?: Property.OffsetDistance<string | number> | undefined;
|
|
1002
|
+
motionPath?: Property.OffsetPath | undefined;
|
|
1003
|
+
motionRotation?: Property.OffsetRotate | undefined;
|
|
1004
|
+
objectFit?: Property.ObjectFit | undefined;
|
|
1005
|
+
objectPosition?: Property.ObjectPosition<string | number> | undefined;
|
|
1006
|
+
offsetAnchor?: Property.OffsetAnchor<string | number> | undefined;
|
|
1007
|
+
offsetDistance?: Property.OffsetDistance<string | number> | undefined;
|
|
1008
|
+
offsetPath?: Property.OffsetPath | undefined;
|
|
1009
|
+
offsetPosition?: Property.OffsetPosition<string | number> | undefined;
|
|
1010
|
+
offsetRotate?: Property.OffsetRotate | undefined;
|
|
1011
|
+
offsetRotation?: Property.OffsetRotate | undefined;
|
|
1012
|
+
opacity?: Property.Opacity | undefined;
|
|
1013
|
+
order?: Property.Order | undefined;
|
|
1014
|
+
orphans?: Property.Orphans | undefined;
|
|
1015
|
+
outlineColor?: Property.OutlineColor | undefined;
|
|
1016
|
+
outlineOffset?: Property.OutlineOffset<string | number> | undefined;
|
|
1017
|
+
outlineStyle?: Property.OutlineStyle | undefined;
|
|
1018
|
+
outlineWidth?: Property.OutlineWidth<string | number> | undefined;
|
|
1019
|
+
overflowAnchor?: Property.OverflowAnchor | undefined;
|
|
1020
|
+
overflowBlock?: Property.OverflowBlock | undefined;
|
|
1021
|
+
overflowClipBox?: Property.OverflowClipBox | undefined;
|
|
1022
|
+
overflowClipMargin?: Property.OverflowClipMargin<string | number> | undefined;
|
|
1023
|
+
overflowInline?: Property.OverflowInline | undefined;
|
|
1024
|
+
overflowWrap?: Property.OverflowWrap | undefined;
|
|
1025
|
+
overflowX?: Property.OverflowX | undefined;
|
|
1026
|
+
overflowY?: Property.OverflowY | undefined;
|
|
1027
|
+
overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined;
|
|
1028
|
+
overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined;
|
|
1029
|
+
overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined;
|
|
1030
|
+
overscrollBehaviorY?: Property.OverscrollBehaviorY | undefined;
|
|
1031
|
+
paddingBlockEnd?: Property.PaddingBlockEnd<string | number> | undefined;
|
|
1032
|
+
paddingBlockStart?: Property.PaddingBlockStart<string | number> | undefined;
|
|
1033
|
+
paddingBottom?: Property.PaddingBottom<string | number> | undefined;
|
|
1034
|
+
paddingInlineEnd?: Property.PaddingInlineEnd<string | number> | undefined;
|
|
1035
|
+
paddingInlineStart?: Property.PaddingInlineStart<string | number> | undefined;
|
|
1036
|
+
paddingLeft?: Property.PaddingLeft<string | number> | undefined;
|
|
1037
|
+
paddingRight?: Property.PaddingRight<string | number> | undefined;
|
|
1038
|
+
paddingTop?: Property.PaddingTop<string | number> | undefined;
|
|
1039
|
+
page?: Property.Page | undefined;
|
|
1040
|
+
pageBreakAfter?: Property.PageBreakAfter | undefined;
|
|
1041
|
+
pageBreakBefore?: Property.PageBreakBefore | undefined;
|
|
1042
|
+
pageBreakInside?: Property.PageBreakInside | undefined;
|
|
1043
|
+
paintOrder?: Property.PaintOrder | undefined;
|
|
1044
|
+
perspective?: Property.Perspective<string | number> | undefined;
|
|
1045
|
+
perspectiveOrigin?: Property.PerspectiveOrigin<string | number> | undefined;
|
|
1046
|
+
pointerEvents?: Property.PointerEvents | undefined;
|
|
1047
|
+
position?: Property.Position | undefined;
|
|
1048
|
+
printColorAdjust?: Property.PrintColorAdjust | undefined;
|
|
1049
|
+
quotes?: Property.Quotes | undefined;
|
|
1050
|
+
resize?: Property.Resize | undefined;
|
|
1051
|
+
right?: Property.Right<string | number> | undefined;
|
|
1052
|
+
rotate?: Property.Rotate | undefined;
|
|
1053
|
+
rowGap?: Property.RowGap<string | number> | undefined;
|
|
1054
|
+
rubyAlign?: Property.RubyAlign | undefined;
|
|
1055
|
+
rubyMerge?: Property.RubyMerge | undefined;
|
|
1056
|
+
rubyPosition?: Property.RubyPosition | undefined;
|
|
1057
|
+
scale?: Property.Scale | undefined;
|
|
1058
|
+
scrollBehavior?: Property.ScrollBehavior | undefined;
|
|
1059
|
+
scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1060
|
+
scrollMarginBlockStart?: Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1061
|
+
scrollMarginBottom?: Property.ScrollMarginBottom<string | number> | undefined;
|
|
1062
|
+
scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1063
|
+
scrollMarginInlineStart?: Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1064
|
+
scrollMarginLeft?: Property.ScrollMarginLeft<string | number> | undefined;
|
|
1065
|
+
scrollMarginRight?: Property.ScrollMarginRight<string | number> | undefined;
|
|
1066
|
+
scrollMarginTop?: Property.ScrollMarginTop<string | number> | undefined;
|
|
1067
|
+
scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1068
|
+
scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1069
|
+
scrollPaddingBottom?: Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1070
|
+
scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1071
|
+
scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1072
|
+
scrollPaddingLeft?: Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1073
|
+
scrollPaddingRight?: Property.ScrollPaddingRight<string | number> | undefined;
|
|
1074
|
+
scrollPaddingTop?: Property.ScrollPaddingTop<string | number> | undefined;
|
|
1075
|
+
scrollSnapAlign?: Property.ScrollSnapAlign | undefined;
|
|
1076
|
+
scrollSnapMarginBottom?: Property.ScrollMarginBottom<string | number> | undefined;
|
|
1077
|
+
scrollSnapMarginLeft?: Property.ScrollMarginLeft<string | number> | undefined;
|
|
1078
|
+
scrollSnapMarginRight?: Property.ScrollMarginRight<string | number> | undefined;
|
|
1079
|
+
scrollSnapMarginTop?: Property.ScrollMarginTop<string | number> | undefined;
|
|
1080
|
+
scrollSnapStop?: Property.ScrollSnapStop | undefined;
|
|
1081
|
+
scrollSnapType?: Property.ScrollSnapType | undefined;
|
|
1082
|
+
scrollTimelineAxis?: Property.ScrollTimelineAxis | undefined;
|
|
1083
|
+
scrollTimelineName?: Property.ScrollTimelineName | undefined;
|
|
1084
|
+
scrollbarColor?: Property.ScrollbarColor | undefined;
|
|
1085
|
+
scrollbarGutter?: Property.ScrollbarGutter | undefined;
|
|
1086
|
+
scrollbarWidth?: Property.ScrollbarWidth | undefined;
|
|
1087
|
+
shapeImageThreshold?: Property.ShapeImageThreshold | undefined;
|
|
1088
|
+
shapeMargin?: Property.ShapeMargin<string | number> | undefined;
|
|
1089
|
+
shapeOutside?: Property.ShapeOutside | undefined;
|
|
1090
|
+
tabSize?: Property.TabSize<string | number> | undefined;
|
|
1091
|
+
tableLayout?: Property.TableLayout | undefined;
|
|
1092
|
+
textAlign?: Property.TextAlign | undefined;
|
|
1093
|
+
textAlignLast?: Property.TextAlignLast | undefined;
|
|
1094
|
+
textCombineUpright?: Property.TextCombineUpright | undefined;
|
|
1095
|
+
textDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1096
|
+
textDecorationLine?: Property.TextDecorationLine | undefined;
|
|
1097
|
+
textDecorationSkip?: Property.TextDecorationSkip | undefined;
|
|
1098
|
+
textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined;
|
|
1099
|
+
textDecorationStyle?: Property.TextDecorationStyle | undefined;
|
|
1100
|
+
textDecorationThickness?: Property.TextDecorationThickness<string | number> | undefined;
|
|
1101
|
+
textEmphasisColor?: Property.TextEmphasisColor | undefined;
|
|
1102
|
+
textEmphasisPosition?: Property.TextEmphasisPosition | undefined;
|
|
1103
|
+
textEmphasisStyle?: Property.TextEmphasisStyle | undefined;
|
|
1104
|
+
textIndent?: Property.TextIndent<string | number> | undefined;
|
|
1105
|
+
textJustify?: Property.TextJustify | undefined;
|
|
1106
|
+
textOrientation?: Property.TextOrientation | undefined;
|
|
1107
|
+
textOverflow?: Property.TextOverflow | undefined;
|
|
1108
|
+
textRendering?: Property.TextRendering | undefined;
|
|
1109
|
+
textShadow?: Property.TextShadow | undefined;
|
|
1110
|
+
textSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1111
|
+
textTransform?: Property.TextTransform | undefined;
|
|
1112
|
+
textUnderlineOffset?: Property.TextUnderlineOffset<string | number> | undefined;
|
|
1113
|
+
textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
|
|
1114
|
+
top?: Property.Top<string | number> | undefined;
|
|
1115
|
+
touchAction?: Property.TouchAction | undefined;
|
|
1116
|
+
transform?: Property.Transform | undefined;
|
|
1117
|
+
transformBox?: Property.TransformBox | undefined;
|
|
1118
|
+
transformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1119
|
+
transformStyle?: Property.TransformStyle | undefined;
|
|
1120
|
+
transitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1121
|
+
transitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1122
|
+
transitionProperty?: Property.TransitionProperty | undefined;
|
|
1123
|
+
transitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1124
|
+
translate?: Property.Translate<string | number> | undefined;
|
|
1125
|
+
unicodeBidi?: Property.UnicodeBidi | undefined;
|
|
1126
|
+
userSelect?: Property.UserSelect | undefined;
|
|
1127
|
+
verticalAlign?: Property.VerticalAlign<string | number> | undefined;
|
|
1128
|
+
viewTransitionName?: Property.ViewTransitionName | undefined;
|
|
1129
|
+
visibility?: Property.Visibility | undefined;
|
|
1130
|
+
whiteSpace?: Property.WhiteSpace | undefined;
|
|
1131
|
+
widows?: Property.Widows | undefined;
|
|
1132
|
+
width?: Property.Width<string | number> | undefined;
|
|
1133
|
+
willChange?: Property.WillChange | undefined;
|
|
1134
|
+
wordBreak?: Property.WordBreak | undefined;
|
|
1135
|
+
wordSpacing?: Property.WordSpacing<string | number> | undefined;
|
|
1136
|
+
wordWrap?: Property.WordWrap | undefined;
|
|
1137
|
+
writingMode?: Property.WritingMode | undefined;
|
|
1138
|
+
zIndex?: Property.ZIndex | undefined;
|
|
1139
|
+
zoom?: Property.Zoom | undefined;
|
|
1140
|
+
all?: Property.All | undefined;
|
|
1141
|
+
animation?: Property.Animation<string & {}> | undefined;
|
|
1142
|
+
background?: Property.Background<string | number> | undefined;
|
|
1143
|
+
backgroundPosition?: Property.BackgroundPosition<string | number> | undefined;
|
|
1144
|
+
border?: Property.Border<string | number> | undefined;
|
|
1145
|
+
borderBlock?: Property.BorderBlock<string | number> | undefined;
|
|
1146
|
+
borderBlockEnd?: Property.BorderBlockEnd<string | number> | undefined;
|
|
1147
|
+
borderBlockStart?: Property.BorderBlockStart<string | number> | undefined;
|
|
1148
|
+
borderBottom?: Property.BorderBottom<string | number> | undefined;
|
|
1149
|
+
borderColor?: Property.BorderColor | undefined;
|
|
1150
|
+
borderImage?: Property.BorderImage | undefined;
|
|
1151
|
+
borderInline?: Property.BorderInline<string | number> | undefined;
|
|
1152
|
+
borderInlineEnd?: Property.BorderInlineEnd<string | number> | undefined;
|
|
1153
|
+
borderInlineStart?: Property.BorderInlineStart<string | number> | undefined;
|
|
1154
|
+
borderLeft?: Property.BorderLeft<string | number> | undefined;
|
|
1155
|
+
borderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
1156
|
+
borderRight?: Property.BorderRight<string | number> | undefined;
|
|
1157
|
+
borderStyle?: Property.BorderStyle | undefined;
|
|
1158
|
+
borderTop?: Property.BorderTop<string | number> | undefined;
|
|
1159
|
+
borderWidth?: Property.BorderWidth<string | number> | undefined;
|
|
1160
|
+
caret?: Property.Caret | undefined;
|
|
1161
|
+
columnRule?: Property.ColumnRule<string | number> | undefined;
|
|
1162
|
+
columns?: Property.Columns<string | number> | undefined;
|
|
1163
|
+
containIntrinsicSize?: Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1164
|
+
container?: Property.Container | undefined;
|
|
1165
|
+
flex?: Property.Flex<string | number> | undefined;
|
|
1166
|
+
flexFlow?: Property.FlexFlow | undefined;
|
|
1167
|
+
font?: Property.Font | undefined;
|
|
1168
|
+
gap?: Property.Gap<string | number> | undefined;
|
|
1169
|
+
grid?: Property.Grid | undefined;
|
|
1170
|
+
gridArea?: Property.GridArea | undefined;
|
|
1171
|
+
gridColumn?: Property.GridColumn | undefined;
|
|
1172
|
+
gridRow?: Property.GridRow | undefined;
|
|
1173
|
+
gridTemplate?: Property.GridTemplate | undefined;
|
|
1174
|
+
inset?: Property.Inset<string | number> | undefined;
|
|
1175
|
+
insetBlock?: Property.InsetBlock<string | number> | undefined;
|
|
1176
|
+
insetInline?: Property.InsetInline<string | number> | undefined;
|
|
1177
|
+
lineClamp?: Property.LineClamp | undefined;
|
|
1178
|
+
listStyle?: Property.ListStyle | undefined;
|
|
1179
|
+
margin?: Property.Margin<string | number> | undefined;
|
|
1180
|
+
marginBlock?: Property.MarginBlock<string | number> | undefined;
|
|
1181
|
+
marginInline?: Property.MarginInline<string | number> | undefined;
|
|
1182
|
+
mask?: Property.Mask<string | number> | undefined;
|
|
1183
|
+
maskBorder?: Property.MaskBorder | undefined;
|
|
1184
|
+
motion?: Property.Offset<string | number> | undefined;
|
|
1185
|
+
offset?: Property.Offset<string | number> | undefined;
|
|
1186
|
+
outline?: Property.Outline<string | number> | undefined;
|
|
1187
|
+
overflow?: Property.Overflow | undefined;
|
|
1188
|
+
overscrollBehavior?: Property.OverscrollBehavior | undefined;
|
|
1189
|
+
padding?: Property.Padding<string | number> | undefined;
|
|
1190
|
+
paddingBlock?: Property.PaddingBlock<string | number> | undefined;
|
|
1191
|
+
paddingInline?: Property.PaddingInline<string | number> | undefined;
|
|
1192
|
+
placeContent?: Property.PlaceContent | undefined;
|
|
1193
|
+
placeItems?: Property.PlaceItems | undefined;
|
|
1194
|
+
placeSelf?: Property.PlaceSelf | undefined;
|
|
1195
|
+
scrollMargin?: Property.ScrollMargin<string | number> | undefined;
|
|
1196
|
+
scrollMarginBlock?: Property.ScrollMarginBlock<string | number> | undefined;
|
|
1197
|
+
scrollMarginInline?: Property.ScrollMarginInline<string | number> | undefined;
|
|
1198
|
+
scrollPadding?: Property.ScrollPadding<string | number> | undefined;
|
|
1199
|
+
scrollPaddingBlock?: Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1200
|
+
scrollPaddingInline?: Property.ScrollPaddingInline<string | number> | undefined;
|
|
1201
|
+
scrollSnapMargin?: Property.ScrollMargin<string | number> | undefined;
|
|
1202
|
+
scrollTimeline?: Property.ScrollTimeline | undefined;
|
|
1203
|
+
textDecoration?: Property.TextDecoration<string | number> | undefined;
|
|
1204
|
+
textEmphasis?: Property.TextEmphasis | undefined;
|
|
1205
|
+
transition?: Property.Transition<string & {}> | undefined;
|
|
1206
|
+
MozAnimationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
1207
|
+
MozAnimationDirection?: Property.AnimationDirection | undefined;
|
|
1208
|
+
MozAnimationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
1209
|
+
MozAnimationFillMode?: Property.AnimationFillMode | undefined;
|
|
1210
|
+
MozAnimationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
1211
|
+
MozAnimationName?: Property.AnimationName | undefined;
|
|
1212
|
+
MozAnimationPlayState?: Property.AnimationPlayState | undefined;
|
|
1213
|
+
MozAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
1214
|
+
MozAppearance?: Property.MozAppearance | undefined;
|
|
1215
|
+
MozBackfaceVisibility?: Property.BackfaceVisibility | undefined;
|
|
1216
|
+
MozBinding?: Property.MozBinding | undefined;
|
|
1217
|
+
MozBorderBottomColors?: Property.MozBorderBottomColors | undefined;
|
|
1218
|
+
MozBorderEndColor?: Property.BorderInlineEndColor | undefined;
|
|
1219
|
+
MozBorderEndStyle?: Property.BorderInlineEndStyle | undefined;
|
|
1220
|
+
MozBorderEndWidth?: Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1221
|
+
MozBorderLeftColors?: Property.MozBorderLeftColors | undefined;
|
|
1222
|
+
MozBorderRightColors?: Property.MozBorderRightColors | undefined;
|
|
1223
|
+
MozBorderStartColor?: Property.BorderInlineStartColor | undefined;
|
|
1224
|
+
MozBorderStartStyle?: Property.BorderInlineStartStyle | undefined;
|
|
1225
|
+
MozBorderTopColors?: Property.MozBorderTopColors | undefined;
|
|
1226
|
+
MozBoxSizing?: Property.BoxSizing | undefined;
|
|
1227
|
+
MozColumnCount?: Property.ColumnCount | undefined;
|
|
1228
|
+
MozColumnFill?: Property.ColumnFill | undefined;
|
|
1229
|
+
MozColumnRuleColor?: Property.ColumnRuleColor | undefined;
|
|
1230
|
+
MozColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
|
|
1231
|
+
MozColumnRuleWidth?: Property.ColumnRuleWidth<string | number> | undefined;
|
|
1232
|
+
MozColumnWidth?: Property.ColumnWidth<string | number> | undefined;
|
|
1233
|
+
MozContextProperties?: Property.MozContextProperties | undefined;
|
|
1234
|
+
MozFontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
1235
|
+
MozFontLanguageOverride?: Property.FontLanguageOverride | undefined;
|
|
1236
|
+
MozHyphens?: Property.Hyphens | undefined;
|
|
1237
|
+
MozImageRegion?: Property.MozImageRegion | undefined;
|
|
1238
|
+
MozMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1239
|
+
MozMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1240
|
+
MozOrient?: Property.MozOrient | undefined;
|
|
1241
|
+
MozOsxFontSmoothing?: Property.FontSmooth<string | number> | undefined;
|
|
1242
|
+
MozPaddingEnd?: Property.PaddingInlineEnd<string | number> | undefined;
|
|
1243
|
+
MozPaddingStart?: Property.PaddingInlineStart<string | number> | undefined;
|
|
1244
|
+
MozPerspective?: Property.Perspective<string | number> | undefined;
|
|
1245
|
+
MozPerspectiveOrigin?: Property.PerspectiveOrigin<string | number> | undefined;
|
|
1246
|
+
MozStackSizing?: Property.MozStackSizing | undefined;
|
|
1247
|
+
MozTabSize?: Property.TabSize<string | number> | undefined;
|
|
1248
|
+
MozTextBlink?: Property.MozTextBlink | undefined;
|
|
1249
|
+
MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1250
|
+
MozTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1251
|
+
MozTransformStyle?: Property.TransformStyle | undefined;
|
|
1252
|
+
MozTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1253
|
+
MozTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1254
|
+
MozTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1255
|
+
MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1256
|
+
MozUserFocus?: Property.MozUserFocus | undefined;
|
|
1257
|
+
MozUserModify?: Property.MozUserModify | undefined;
|
|
1258
|
+
MozUserSelect?: Property.UserSelect | undefined;
|
|
1259
|
+
MozWindowDragging?: Property.MozWindowDragging | undefined;
|
|
1260
|
+
MozWindowShadow?: Property.MozWindowShadow | undefined;
|
|
1261
|
+
msAccelerator?: Property.MsAccelerator | undefined;
|
|
1262
|
+
msBlockProgression?: Property.MsBlockProgression | undefined;
|
|
1263
|
+
msContentZoomChaining?: Property.MsContentZoomChaining | undefined;
|
|
1264
|
+
msContentZoomLimitMax?: Property.MsContentZoomLimitMax | undefined;
|
|
1265
|
+
msContentZoomLimitMin?: Property.MsContentZoomLimitMin | undefined;
|
|
1266
|
+
msContentZoomSnapPoints?: Property.MsContentZoomSnapPoints | undefined;
|
|
1267
|
+
msContentZoomSnapType?: Property.MsContentZoomSnapType | undefined;
|
|
1268
|
+
msContentZooming?: Property.MsContentZooming | undefined;
|
|
1269
|
+
msFilter?: Property.MsFilter | undefined;
|
|
1270
|
+
msFlexDirection?: Property.FlexDirection | undefined;
|
|
1271
|
+
msFlexPositive?: Property.FlexGrow | undefined;
|
|
1272
|
+
msFlowFrom?: Property.MsFlowFrom | undefined;
|
|
1273
|
+
msFlowInto?: Property.MsFlowInto | undefined;
|
|
1274
|
+
msGridColumns?: Property.MsGridColumns<string | number> | undefined;
|
|
1275
|
+
msGridRows?: Property.MsGridRows<string | number> | undefined;
|
|
1276
|
+
msHighContrastAdjust?: Property.MsHighContrastAdjust | undefined;
|
|
1277
|
+
msHyphenateLimitChars?: Property.MsHyphenateLimitChars | undefined;
|
|
1278
|
+
msHyphenateLimitLines?: Property.MsHyphenateLimitLines | undefined;
|
|
1279
|
+
msHyphenateLimitZone?: Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1280
|
+
msHyphens?: Property.Hyphens | undefined;
|
|
1281
|
+
msImeAlign?: Property.MsImeAlign | undefined;
|
|
1282
|
+
msLineBreak?: Property.LineBreak | undefined;
|
|
1283
|
+
msOrder?: Property.Order | undefined;
|
|
1284
|
+
msOverflowStyle?: Property.MsOverflowStyle | undefined;
|
|
1285
|
+
msOverflowX?: Property.OverflowX | undefined;
|
|
1286
|
+
msOverflowY?: Property.OverflowY | undefined;
|
|
1287
|
+
msScrollChaining?: Property.MsScrollChaining | undefined;
|
|
1288
|
+
msScrollLimitXMax?: Property.MsScrollLimitXMax<string | number> | undefined;
|
|
1289
|
+
msScrollLimitXMin?: Property.MsScrollLimitXMin<string | number> | undefined;
|
|
1290
|
+
msScrollLimitYMax?: Property.MsScrollLimitYMax<string | number> | undefined;
|
|
1291
|
+
msScrollLimitYMin?: Property.MsScrollLimitYMin<string | number> | undefined;
|
|
1292
|
+
msScrollRails?: Property.MsScrollRails | undefined;
|
|
1293
|
+
msScrollSnapPointsX?: Property.MsScrollSnapPointsX | undefined;
|
|
1294
|
+
msScrollSnapPointsY?: Property.MsScrollSnapPointsY | undefined;
|
|
1295
|
+
msScrollSnapType?: Property.MsScrollSnapType | undefined;
|
|
1296
|
+
msScrollTranslation?: Property.MsScrollTranslation | undefined;
|
|
1297
|
+
msScrollbar3dlightColor?: Property.MsScrollbar3dlightColor | undefined;
|
|
1298
|
+
msScrollbarArrowColor?: Property.MsScrollbarArrowColor | undefined;
|
|
1299
|
+
msScrollbarBaseColor?: Property.MsScrollbarBaseColor | undefined;
|
|
1300
|
+
msScrollbarDarkshadowColor?: Property.MsScrollbarDarkshadowColor | undefined;
|
|
1301
|
+
msScrollbarFaceColor?: Property.MsScrollbarFaceColor | undefined;
|
|
1302
|
+
msScrollbarHighlightColor?: Property.MsScrollbarHighlightColor | undefined;
|
|
1303
|
+
msScrollbarShadowColor?: Property.MsScrollbarShadowColor | undefined;
|
|
1304
|
+
msScrollbarTrackColor?: Property.MsScrollbarTrackColor | undefined;
|
|
1305
|
+
msTextAutospace?: Property.MsTextAutospace | undefined;
|
|
1306
|
+
msTextCombineHorizontal?: Property.TextCombineUpright | undefined;
|
|
1307
|
+
msTextOverflow?: Property.TextOverflow | undefined;
|
|
1308
|
+
msTouchAction?: Property.TouchAction | undefined;
|
|
1309
|
+
msTouchSelect?: Property.MsTouchSelect | undefined;
|
|
1310
|
+
msTransform?: Property.Transform | undefined;
|
|
1311
|
+
msTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1312
|
+
msTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1313
|
+
msTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1314
|
+
msTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1315
|
+
msTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1316
|
+
msUserSelect?: Property.MsUserSelect | undefined;
|
|
1317
|
+
msWordBreak?: Property.WordBreak | undefined;
|
|
1318
|
+
msWrapFlow?: Property.MsWrapFlow | undefined;
|
|
1319
|
+
msWrapMargin?: Property.MsWrapMargin<string | number> | undefined;
|
|
1320
|
+
msWrapThrough?: Property.MsWrapThrough | undefined;
|
|
1321
|
+
msWritingMode?: Property.WritingMode | undefined;
|
|
1322
|
+
WebkitAlignContent?: Property.AlignContent | undefined;
|
|
1323
|
+
WebkitAlignItems?: Property.AlignItems | undefined;
|
|
1324
|
+
WebkitAlignSelf?: Property.AlignSelf | undefined;
|
|
1325
|
+
WebkitAnimationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
1326
|
+
WebkitAnimationDirection?: Property.AnimationDirection | undefined;
|
|
1327
|
+
WebkitAnimationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
1328
|
+
WebkitAnimationFillMode?: Property.AnimationFillMode | undefined;
|
|
1329
|
+
WebkitAnimationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
1330
|
+
WebkitAnimationName?: Property.AnimationName | undefined;
|
|
1331
|
+
WebkitAnimationPlayState?: Property.AnimationPlayState | undefined;
|
|
1332
|
+
WebkitAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
1333
|
+
WebkitAppearance?: Property.WebkitAppearance | undefined;
|
|
1334
|
+
WebkitBackdropFilter?: Property.BackdropFilter | undefined;
|
|
1335
|
+
WebkitBackfaceVisibility?: Property.BackfaceVisibility | undefined;
|
|
1336
|
+
WebkitBackgroundClip?: Property.BackgroundClip | undefined;
|
|
1337
|
+
WebkitBackgroundOrigin?: Property.BackgroundOrigin | undefined;
|
|
1338
|
+
WebkitBackgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
1339
|
+
WebkitBorderBeforeColor?: Property.WebkitBorderBeforeColor | undefined;
|
|
1340
|
+
WebkitBorderBeforeStyle?: Property.WebkitBorderBeforeStyle | undefined;
|
|
1341
|
+
WebkitBorderBeforeWidth?: Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
1342
|
+
WebkitBorderBottomLeftRadius?: Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1343
|
+
WebkitBorderBottomRightRadius?: Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1344
|
+
WebkitBorderImageSlice?: Property.BorderImageSlice | undefined;
|
|
1345
|
+
WebkitBorderTopLeftRadius?: Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1346
|
+
WebkitBorderTopRightRadius?: Property.BorderTopRightRadius<string | number> | undefined;
|
|
1347
|
+
WebkitBoxDecorationBreak?: Property.BoxDecorationBreak | undefined;
|
|
1348
|
+
WebkitBoxReflect?: Property.WebkitBoxReflect<string | number> | undefined;
|
|
1349
|
+
WebkitBoxShadow?: Property.BoxShadow | undefined;
|
|
1350
|
+
WebkitBoxSizing?: Property.BoxSizing | undefined;
|
|
1351
|
+
WebkitClipPath?: Property.ClipPath | undefined;
|
|
1352
|
+
WebkitColumnCount?: Property.ColumnCount | undefined;
|
|
1353
|
+
WebkitColumnFill?: Property.ColumnFill | undefined;
|
|
1354
|
+
WebkitColumnRuleColor?: Property.ColumnRuleColor | undefined;
|
|
1355
|
+
WebkitColumnRuleStyle?: Property.ColumnRuleStyle | undefined;
|
|
1356
|
+
WebkitColumnRuleWidth?: Property.ColumnRuleWidth<string | number> | undefined;
|
|
1357
|
+
WebkitColumnSpan?: Property.ColumnSpan | undefined;
|
|
1358
|
+
WebkitColumnWidth?: Property.ColumnWidth<string | number> | undefined;
|
|
1359
|
+
WebkitFilter?: Property.Filter | undefined;
|
|
1360
|
+
WebkitFlexBasis?: Property.FlexBasis<string | number> | undefined;
|
|
1361
|
+
WebkitFlexDirection?: Property.FlexDirection | undefined;
|
|
1362
|
+
WebkitFlexGrow?: Property.FlexGrow | undefined;
|
|
1363
|
+
WebkitFlexShrink?: Property.FlexShrink | undefined;
|
|
1364
|
+
WebkitFlexWrap?: Property.FlexWrap | undefined;
|
|
1365
|
+
WebkitFontFeatureSettings?: Property.FontFeatureSettings | undefined;
|
|
1366
|
+
WebkitFontKerning?: Property.FontKerning | undefined;
|
|
1367
|
+
WebkitFontSmoothing?: Property.FontSmooth<string | number> | undefined;
|
|
1368
|
+
WebkitFontVariantLigatures?: Property.FontVariantLigatures | undefined;
|
|
1369
|
+
WebkitHyphenateCharacter?: Property.HyphenateCharacter | undefined;
|
|
1370
|
+
WebkitHyphens?: Property.Hyphens | undefined;
|
|
1371
|
+
WebkitInitialLetter?: Property.InitialLetter | undefined;
|
|
1372
|
+
WebkitJustifyContent?: Property.JustifyContent | undefined;
|
|
1373
|
+
WebkitLineBreak?: Property.LineBreak | undefined;
|
|
1374
|
+
WebkitLineClamp?: Property.WebkitLineClamp | undefined;
|
|
1375
|
+
WebkitMarginEnd?: Property.MarginInlineEnd<string | number> | undefined;
|
|
1376
|
+
WebkitMarginStart?: Property.MarginInlineStart<string | number> | undefined;
|
|
1377
|
+
WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined;
|
|
1378
|
+
WebkitMaskBoxImageOutset?: Property.MaskBorderOutset<string | number> | undefined;
|
|
1379
|
+
WebkitMaskBoxImageRepeat?: Property.MaskBorderRepeat | undefined;
|
|
1380
|
+
WebkitMaskBoxImageSlice?: Property.MaskBorderSlice | undefined;
|
|
1381
|
+
WebkitMaskBoxImageSource?: Property.MaskBorderSource | undefined;
|
|
1382
|
+
WebkitMaskBoxImageWidth?: Property.MaskBorderWidth<string | number> | undefined;
|
|
1383
|
+
WebkitMaskClip?: Property.WebkitMaskClip | undefined;
|
|
1384
|
+
WebkitMaskComposite?: Property.WebkitMaskComposite | undefined;
|
|
1385
|
+
WebkitMaskImage?: Property.WebkitMaskImage | undefined;
|
|
1386
|
+
WebkitMaskOrigin?: Property.WebkitMaskOrigin | undefined;
|
|
1387
|
+
WebkitMaskPosition?: Property.WebkitMaskPosition<string | number> | undefined;
|
|
1388
|
+
WebkitMaskPositionX?: Property.WebkitMaskPositionX<string | number> | undefined;
|
|
1389
|
+
WebkitMaskPositionY?: Property.WebkitMaskPositionY<string | number> | undefined;
|
|
1390
|
+
WebkitMaskRepeat?: Property.WebkitMaskRepeat | undefined;
|
|
1391
|
+
WebkitMaskRepeatX?: Property.WebkitMaskRepeatX | undefined;
|
|
1392
|
+
WebkitMaskRepeatY?: Property.WebkitMaskRepeatY | undefined;
|
|
1393
|
+
WebkitMaskSize?: Property.WebkitMaskSize<string | number> | undefined;
|
|
1394
|
+
WebkitMaxInlineSize?: Property.MaxInlineSize<string | number> | undefined;
|
|
1395
|
+
WebkitOrder?: Property.Order | undefined;
|
|
1396
|
+
WebkitOverflowScrolling?: Property.WebkitOverflowScrolling | undefined;
|
|
1397
|
+
WebkitPaddingEnd?: Property.PaddingInlineEnd<string | number> | undefined;
|
|
1398
|
+
WebkitPaddingStart?: Property.PaddingInlineStart<string | number> | undefined;
|
|
1399
|
+
WebkitPerspective?: Property.Perspective<string | number> | undefined;
|
|
1400
|
+
WebkitPerspectiveOrigin?: Property.PerspectiveOrigin<string | number> | undefined;
|
|
1401
|
+
WebkitPrintColorAdjust?: Property.PrintColorAdjust | undefined;
|
|
1402
|
+
WebkitRubyPosition?: Property.RubyPosition | undefined;
|
|
1403
|
+
WebkitScrollSnapType?: Property.ScrollSnapType | undefined;
|
|
1404
|
+
WebkitShapeMargin?: Property.ShapeMargin<string | number> | undefined;
|
|
1405
|
+
WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined;
|
|
1406
|
+
WebkitTextCombine?: Property.TextCombineUpright | undefined;
|
|
1407
|
+
WebkitTextDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1408
|
+
WebkitTextDecorationLine?: Property.TextDecorationLine | undefined;
|
|
1409
|
+
WebkitTextDecorationSkip?: Property.TextDecorationSkip | undefined;
|
|
1410
|
+
WebkitTextDecorationStyle?: Property.TextDecorationStyle | undefined;
|
|
1411
|
+
WebkitTextEmphasisColor?: Property.TextEmphasisColor | undefined;
|
|
1412
|
+
WebkitTextEmphasisPosition?: Property.TextEmphasisPosition | undefined;
|
|
1413
|
+
WebkitTextEmphasisStyle?: Property.TextEmphasisStyle | undefined;
|
|
1414
|
+
WebkitTextFillColor?: Property.WebkitTextFillColor | undefined;
|
|
1415
|
+
WebkitTextOrientation?: Property.TextOrientation | undefined;
|
|
1416
|
+
WebkitTextSizeAdjust?: Property.TextSizeAdjust | undefined;
|
|
1417
|
+
WebkitTextStrokeColor?: Property.WebkitTextStrokeColor | undefined;
|
|
1418
|
+
WebkitTextStrokeWidth?: Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
1419
|
+
WebkitTextUnderlinePosition?: Property.TextUnderlinePosition | undefined;
|
|
1420
|
+
WebkitTouchCallout?: Property.WebkitTouchCallout | undefined;
|
|
1421
|
+
WebkitTransform?: Property.Transform | undefined;
|
|
1422
|
+
WebkitTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1423
|
+
WebkitTransformStyle?: Property.TransformStyle | undefined;
|
|
1424
|
+
WebkitTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1425
|
+
WebkitTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1426
|
+
WebkitTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1427
|
+
WebkitTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1428
|
+
WebkitUserModify?: Property.WebkitUserModify | undefined;
|
|
1429
|
+
WebkitUserSelect?: Property.UserSelect | undefined;
|
|
1430
|
+
WebkitWritingMode?: Property.WritingMode | undefined;
|
|
1431
|
+
MozAnimation?: Property.Animation<string & {}> | undefined;
|
|
1432
|
+
MozBorderImage?: Property.BorderImage | undefined;
|
|
1433
|
+
MozColumnRule?: Property.ColumnRule<string | number> | undefined;
|
|
1434
|
+
MozColumns?: Property.Columns<string | number> | undefined;
|
|
1435
|
+
MozTransition?: Property.Transition<string & {}> | undefined;
|
|
1436
|
+
msContentZoomLimit?: Property.MsContentZoomLimit | undefined;
|
|
1437
|
+
msContentZoomSnap?: Property.MsContentZoomSnap | undefined;
|
|
1438
|
+
msFlex?: Property.Flex<string | number> | undefined;
|
|
1439
|
+
msScrollLimit?: Property.MsScrollLimit | undefined;
|
|
1440
|
+
msScrollSnapX?: Property.MsScrollSnapX | undefined;
|
|
1441
|
+
msScrollSnapY?: Property.MsScrollSnapY | undefined;
|
|
1442
|
+
msTransition?: Property.Transition<string & {}> | undefined;
|
|
1443
|
+
WebkitAnimation?: Property.Animation<string & {}> | undefined;
|
|
1444
|
+
WebkitBorderBefore?: Property.WebkitBorderBefore<string | number> | undefined;
|
|
1445
|
+
WebkitBorderImage?: Property.BorderImage | undefined;
|
|
1446
|
+
WebkitBorderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
1447
|
+
WebkitColumnRule?: Property.ColumnRule<string | number> | undefined;
|
|
1448
|
+
WebkitColumns?: Property.Columns<string | number> | undefined;
|
|
1449
|
+
WebkitFlex?: Property.Flex<string | number> | undefined;
|
|
1450
|
+
WebkitFlexFlow?: Property.FlexFlow | undefined;
|
|
1451
|
+
WebkitMask?: Property.WebkitMask<string | number> | undefined;
|
|
1452
|
+
WebkitMaskBoxImage?: Property.MaskBorder | undefined;
|
|
1453
|
+
WebkitTextEmphasis?: Property.TextEmphasis | undefined;
|
|
1454
|
+
WebkitTextStroke?: Property.WebkitTextStroke<string | number> | undefined;
|
|
1455
|
+
WebkitTransition?: Property.Transition<string & {}> | undefined;
|
|
1456
|
+
azimuth?: Property.Azimuth | undefined;
|
|
1457
|
+
boxAlign?: Property.BoxAlign | undefined;
|
|
1458
|
+
boxDirection?: Property.BoxDirection | undefined;
|
|
1459
|
+
boxFlex?: Property.BoxFlex | undefined;
|
|
1460
|
+
boxFlexGroup?: Property.BoxFlexGroup | undefined;
|
|
1461
|
+
boxLines?: Property.BoxLines | undefined;
|
|
1462
|
+
boxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1463
|
+
boxOrient?: Property.BoxOrient | undefined;
|
|
1464
|
+
boxPack?: Property.BoxPack | undefined;
|
|
1465
|
+
clip?: Property.Clip | undefined;
|
|
1466
|
+
gridColumnGap?: Property.GridColumnGap<string | number> | undefined;
|
|
1467
|
+
gridGap?: Property.GridGap<string | number> | undefined;
|
|
1468
|
+
gridRowGap?: Property.GridRowGap<string | number> | undefined;
|
|
1469
|
+
imeMode?: Property.ImeMode | undefined;
|
|
1470
|
+
offsetBlock?: Property.InsetBlock<string | number> | undefined;
|
|
1471
|
+
offsetBlockEnd?: Property.InsetBlockEnd<string | number> | undefined;
|
|
1472
|
+
offsetBlockStart?: Property.InsetBlockStart<string | number> | undefined;
|
|
1473
|
+
offsetInline?: Property.InsetInline<string | number> | undefined;
|
|
1474
|
+
offsetInlineEnd?: Property.InsetInlineEnd<string | number> | undefined;
|
|
1475
|
+
offsetInlineStart?: Property.InsetInlineStart<string | number> | undefined;
|
|
1476
|
+
scrollSnapCoordinate?: Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
1477
|
+
scrollSnapDestination?: Property.ScrollSnapDestination<string | number> | undefined;
|
|
1478
|
+
scrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
1479
|
+
scrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
1480
|
+
scrollSnapTypeX?: Property.ScrollSnapTypeX | undefined;
|
|
1481
|
+
scrollSnapTypeY?: Property.ScrollSnapTypeY | undefined;
|
|
1482
|
+
KhtmlBoxAlign?: Property.BoxAlign | undefined;
|
|
1483
|
+
KhtmlBoxDirection?: Property.BoxDirection | undefined;
|
|
1484
|
+
KhtmlBoxFlex?: Property.BoxFlex | undefined;
|
|
1485
|
+
KhtmlBoxFlexGroup?: Property.BoxFlexGroup | undefined;
|
|
1486
|
+
KhtmlBoxLines?: Property.BoxLines | undefined;
|
|
1487
|
+
KhtmlBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1488
|
+
KhtmlBoxOrient?: Property.BoxOrient | undefined;
|
|
1489
|
+
KhtmlBoxPack?: Property.BoxPack | undefined;
|
|
1490
|
+
KhtmlLineBreak?: Property.LineBreak | undefined;
|
|
1491
|
+
KhtmlOpacity?: Property.Opacity | undefined;
|
|
1492
|
+
KhtmlUserSelect?: Property.UserSelect | undefined;
|
|
1493
|
+
MozBackgroundClip?: Property.BackgroundClip | undefined;
|
|
1494
|
+
MozBackgroundInlinePolicy?: Property.BoxDecorationBreak | undefined;
|
|
1495
|
+
MozBackgroundOrigin?: Property.BackgroundOrigin | undefined;
|
|
1496
|
+
MozBackgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
1497
|
+
MozBorderRadius?: Property.BorderRadius<string | number> | undefined;
|
|
1498
|
+
MozBorderRadiusBottomleft?: Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1499
|
+
MozBorderRadiusBottomright?: Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1500
|
+
MozBorderRadiusTopleft?: Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1501
|
+
MozBorderRadiusTopright?: Property.BorderTopRightRadius<string | number> | undefined;
|
|
1502
|
+
MozBoxAlign?: Property.BoxAlign | undefined;
|
|
1503
|
+
MozBoxDirection?: Property.BoxDirection | undefined;
|
|
1504
|
+
MozBoxFlex?: Property.BoxFlex | undefined;
|
|
1505
|
+
MozBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1506
|
+
MozBoxOrient?: Property.BoxOrient | undefined;
|
|
1507
|
+
MozBoxPack?: Property.BoxPack | undefined;
|
|
1508
|
+
MozBoxShadow?: Property.BoxShadow | undefined;
|
|
1509
|
+
MozFloatEdge?: Property.MozFloatEdge | undefined;
|
|
1510
|
+
MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined;
|
|
1511
|
+
MozOpacity?: Property.Opacity | undefined;
|
|
1512
|
+
MozOutline?: Property.Outline<string | number> | undefined;
|
|
1513
|
+
MozOutlineColor?: Property.OutlineColor | undefined;
|
|
1514
|
+
MozOutlineRadius?: Property.MozOutlineRadius<string | number> | undefined;
|
|
1515
|
+
MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1516
|
+
MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1517
|
+
MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1518
|
+
MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1519
|
+
MozOutlineStyle?: Property.OutlineStyle | undefined;
|
|
1520
|
+
MozOutlineWidth?: Property.OutlineWidth<string | number> | undefined;
|
|
1521
|
+
MozTextAlignLast?: Property.TextAlignLast | undefined;
|
|
1522
|
+
MozTextDecorationColor?: Property.TextDecorationColor | undefined;
|
|
1523
|
+
MozTextDecorationLine?: Property.TextDecorationLine | undefined;
|
|
1524
|
+
MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
|
|
1525
|
+
MozUserInput?: Property.MozUserInput | undefined;
|
|
1526
|
+
msImeMode?: Property.ImeMode | undefined;
|
|
1527
|
+
OAnimation?: Property.Animation<string & {}> | undefined;
|
|
1528
|
+
OAnimationDelay?: Property.AnimationDelay<string & {}> | undefined;
|
|
1529
|
+
OAnimationDirection?: Property.AnimationDirection | undefined;
|
|
1530
|
+
OAnimationDuration?: Property.AnimationDuration<string & {}> | undefined;
|
|
1531
|
+
OAnimationFillMode?: Property.AnimationFillMode | undefined;
|
|
1532
|
+
OAnimationIterationCount?: Property.AnimationIterationCount | undefined;
|
|
1533
|
+
OAnimationName?: Property.AnimationName | undefined;
|
|
1534
|
+
OAnimationPlayState?: Property.AnimationPlayState | undefined;
|
|
1535
|
+
OAnimationTimingFunction?: Property.AnimationTimingFunction | undefined;
|
|
1536
|
+
OBackgroundSize?: Property.BackgroundSize<string | number> | undefined;
|
|
1537
|
+
OBorderImage?: Property.BorderImage | undefined;
|
|
1538
|
+
OObjectFit?: Property.ObjectFit | undefined;
|
|
1539
|
+
OObjectPosition?: Property.ObjectPosition<string | number> | undefined;
|
|
1540
|
+
OTabSize?: Property.TabSize<string | number> | undefined;
|
|
1541
|
+
OTextOverflow?: Property.TextOverflow | undefined;
|
|
1542
|
+
OTransform?: Property.Transform | undefined;
|
|
1543
|
+
OTransformOrigin?: Property.TransformOrigin<string | number> | undefined;
|
|
1544
|
+
OTransition?: Property.Transition<string & {}> | undefined;
|
|
1545
|
+
OTransitionDelay?: Property.TransitionDelay<string & {}> | undefined;
|
|
1546
|
+
OTransitionDuration?: Property.TransitionDuration<string & {}> | undefined;
|
|
1547
|
+
OTransitionProperty?: Property.TransitionProperty | undefined;
|
|
1548
|
+
OTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
|
|
1549
|
+
WebkitBoxAlign?: Property.BoxAlign | undefined;
|
|
1550
|
+
WebkitBoxDirection?: Property.BoxDirection | undefined;
|
|
1551
|
+
WebkitBoxFlex?: Property.BoxFlex | undefined;
|
|
1552
|
+
WebkitBoxFlexGroup?: Property.BoxFlexGroup | undefined;
|
|
1553
|
+
WebkitBoxLines?: Property.BoxLines | undefined;
|
|
1554
|
+
WebkitBoxOrdinalGroup?: Property.BoxOrdinalGroup | undefined;
|
|
1555
|
+
WebkitBoxOrient?: Property.BoxOrient | undefined;
|
|
1556
|
+
WebkitBoxPack?: Property.BoxPack | undefined;
|
|
1557
|
+
WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
|
|
1558
|
+
WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
|
|
1559
|
+
alignmentBaseline?: Property.AlignmentBaseline | undefined;
|
|
1560
|
+
baselineShift?: Property.BaselineShift<string | number> | undefined;
|
|
1561
|
+
clipRule?: Property.ClipRule | undefined;
|
|
1562
|
+
colorInterpolation?: Property.ColorInterpolation | undefined;
|
|
1563
|
+
colorRendering?: Property.ColorRendering | undefined;
|
|
1564
|
+
dominantBaseline?: Property.DominantBaseline | undefined;
|
|
1565
|
+
fill?: Property.Fill | undefined;
|
|
1566
|
+
fillOpacity?: Property.FillOpacity | undefined;
|
|
1567
|
+
fillRule?: Property.FillRule | undefined;
|
|
1568
|
+
floodColor?: Property.FloodColor | undefined;
|
|
1569
|
+
floodOpacity?: Property.FloodOpacity | undefined;
|
|
1570
|
+
glyphOrientationVertical?: Property.GlyphOrientationVertical | undefined;
|
|
1571
|
+
lightingColor?: Property.LightingColor | undefined;
|
|
1572
|
+
marker?: Property.Marker | undefined;
|
|
1573
|
+
markerEnd?: Property.MarkerEnd | undefined;
|
|
1574
|
+
markerMid?: Property.MarkerMid | undefined;
|
|
1575
|
+
markerStart?: Property.MarkerStart | undefined;
|
|
1576
|
+
shapeRendering?: Property.ShapeRendering | undefined;
|
|
1577
|
+
stopColor?: Property.StopColor | undefined;
|
|
1578
|
+
stopOpacity?: Property.StopOpacity | undefined;
|
|
1579
|
+
stroke?: Property.Stroke | undefined;
|
|
1580
|
+
strokeDasharray?: Property.StrokeDasharray<string | number> | undefined;
|
|
1581
|
+
strokeDashoffset?: Property.StrokeDashoffset<string | number> | undefined;
|
|
1582
|
+
strokeLinecap?: Property.StrokeLinecap | undefined;
|
|
1583
|
+
strokeLinejoin?: Property.StrokeLinejoin | undefined;
|
|
1584
|
+
strokeMiterlimit?: Property.StrokeMiterlimit | undefined;
|
|
1585
|
+
strokeOpacity?: Property.StrokeOpacity | undefined;
|
|
1586
|
+
strokeWidth?: Property.StrokeWidth<string | number> | undefined;
|
|
1587
|
+
textAnchor?: Property.TextAnchor | undefined;
|
|
1588
|
+
vectorEffect?: Property.VectorEffect | undefined;
|
|
1589
|
+
};
|
|
1590
|
+
arrowPos: (Partial<Coords> & {
|
|
1591
|
+
centerOffset: number;
|
|
1592
|
+
alignmentOffset?: number;
|
|
1593
|
+
}) | undefined;
|
|
1594
|
+
arrowRef: RefObject<HTMLDivElement | null>;
|
|
1595
|
+
arrowSide: string;
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
|
|
1599
|
+
export declare type UseTooltipOptions = {
|
|
1600
|
+
placement?: Placement | 'auto';
|
|
1601
|
+
};
|
|
313
1602
|
|
|
314
1603
|
export { }
|