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