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