@shlinkio/shlink-frontend-kit 0.9.13 → 1.0.1

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