@primer/components 0.0.0-202110343939 → 0.0.0-20211040245
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -1
- package/dist/browser.esm.js +52 -48
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +37 -33
- package/dist/browser.umd.js.map +1 -1
- package/lib/ActionList/Header.js +1 -1
- package/lib/ActionList/Item.d.ts +6 -0
- package/lib/ActionList/Item.js +5 -1
- package/lib/AnchoredOverlay/AnchoredOverlay.js +8 -6
- package/lib/Autocomplete/Autocomplete.d.ts +4 -4
- package/lib/Autocomplete/AutocompleteInput.d.ts +4 -4
- package/lib/Button/Button.d.ts +5 -5
- package/lib/Button/ButtonBase.d.ts +1 -1
- package/lib/Button/ButtonClose.d.ts +3 -3
- package/lib/Button/ButtonDanger.d.ts +5 -5
- package/lib/Button/ButtonInvisible.d.ts +5 -5
- package/lib/Button/ButtonOutline.d.ts +5 -5
- package/lib/Button/ButtonPrimary.d.ts +5 -5
- package/lib/CircleBadge.d.ts +2 -2
- package/lib/CircleOcticon.d.ts +4 -4
- package/lib/DatePicker/DatePicker.d.ts +5 -1
- package/lib/DatePicker/DatePicker.js +1 -1
- package/lib/DatePicker/DatePickerOverlay.js +5 -3
- package/lib/DatePicker/DatePickerPanel.js +134 -3
- package/lib/DatePicker/Day.js +17 -8
- package/lib/DatePicker/useDatePicker.js +24 -151
- package/lib/Dialog.d.ts +4 -4
- package/lib/Dropdown.d.ts +16 -16
- package/lib/DropdownMenu/DropdownButton.d.ts +6 -6
- package/lib/FilterList.d.ts +3 -3
- package/lib/Flash.d.ts +1 -1
- package/lib/Label.d.ts +1 -1
- package/lib/Position.d.ts +4 -4
- package/lib/ProgressBar.d.ts +1 -1
- package/lib/SelectMenu/SelectMenu.d.ts +24 -24
- package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib/TextInputWithTokens.d.ts +8 -4
- package/lib/TextInputWithTokens.js +102 -29
- package/lib/Timeline.d.ts +4 -4
- package/lib/Token/AvatarToken.d.ts +1 -1
- package/lib/Token/IssueLabelToken.d.ts +1 -1
- package/lib/Token/Token.d.ts +1 -1
- package/lib/Token/Token.js +13 -2
- package/lib/Token/TokenBase.js +0 -4
- package/lib/Token/_RemoveTokenButton.js +15 -2
- package/lib/_TextInputWrapper.d.ts +1 -1
- package/lib/_TextInputWrapper.js +1 -1
- package/lib/sx.d.ts +8 -2
- package/lib/theme.d.ts +78 -0
- package/lib/theme.js +3 -1
- package/lib/utils/types/KeyPaths.d.ts +3 -0
- package/lib/utils/types/KeyPaths.js +1 -0
- package/lib-esm/ActionList/Header.js +1 -1
- package/lib-esm/ActionList/Item.d.ts +6 -0
- package/lib-esm/ActionList/Item.js +5 -1
- package/lib-esm/AnchoredOverlay/AnchoredOverlay.js +7 -6
- package/lib-esm/Autocomplete/Autocomplete.d.ts +4 -4
- package/lib-esm/Autocomplete/AutocompleteInput.d.ts +4 -4
- package/lib-esm/Button/Button.d.ts +5 -5
- package/lib-esm/Button/ButtonBase.d.ts +1 -1
- package/lib-esm/Button/ButtonClose.d.ts +3 -3
- package/lib-esm/Button/ButtonDanger.d.ts +5 -5
- package/lib-esm/Button/ButtonInvisible.d.ts +5 -5
- package/lib-esm/Button/ButtonOutline.d.ts +5 -5
- package/lib-esm/Button/ButtonPrimary.d.ts +5 -5
- package/lib-esm/CircleBadge.d.ts +2 -2
- package/lib-esm/CircleOcticon.d.ts +4 -4
- package/lib-esm/DatePicker/DatePicker.d.ts +5 -1
- package/lib-esm/DatePicker/DatePicker.js +1 -1
- package/lib-esm/DatePicker/DatePickerOverlay.js +5 -3
- package/lib-esm/DatePicker/DatePickerPanel.js +135 -4
- package/lib-esm/DatePicker/Day.js +17 -9
- package/lib-esm/DatePicker/useDatePicker.js +25 -152
- package/lib-esm/Dialog.d.ts +4 -4
- package/lib-esm/Dropdown.d.ts +16 -16
- package/lib-esm/DropdownMenu/DropdownButton.d.ts +6 -6
- package/lib-esm/FilterList.d.ts +3 -3
- package/lib-esm/Flash.d.ts +1 -1
- package/lib-esm/Label.d.ts +1 -1
- package/lib-esm/Position.d.ts +4 -4
- package/lib-esm/ProgressBar.d.ts +1 -1
- package/lib-esm/SelectMenu/SelectMenu.d.ts +24 -24
- package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib-esm/TextInputWithTokens.d.ts +8 -4
- package/lib-esm/TextInputWithTokens.js +101 -30
- package/lib-esm/Timeline.d.ts +4 -4
- package/lib-esm/Token/AvatarToken.d.ts +1 -1
- package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
- package/lib-esm/Token/Token.d.ts +1 -1
- package/lib-esm/Token/Token.js +13 -2
- package/lib-esm/Token/TokenBase.js +0 -4
- package/lib-esm/Token/_RemoveTokenButton.js +11 -2
- package/lib-esm/_TextInputWrapper.d.ts +1 -1
- package/lib-esm/_TextInputWrapper.js +1 -1
- package/lib-esm/sx.d.ts +8 -2
- package/lib-esm/theme.d.ts +78 -0
- package/lib-esm/theme.js +2 -1
- package/lib-esm/utils/types/KeyPaths.d.ts +3 -0
- package/lib-esm/utils/types/KeyPaths.js +1 -0
- package/package.json +8 -6
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CheckIcon, TrashIcon } from '@primer/octicons-react';
|
2
|
-
import { isEqual, isAfter, isBefore, addMonths, subMonths, isToday, isWeekend, differenceInDays, addDays, subDays,
|
2
|
+
import { isEqual, isAfter, isBefore, addMonths, subMonths, isToday, isWeekend, differenceInDays, addDays, subDays, previousFriday, differenceInBusinessDays, addYears, setDate } from 'date-fns';
|
3
3
|
import { addBusinessDays, subBusinessDays } from 'date-fns/esm';
|
4
4
|
import deepmerge from 'deepmerge';
|
5
5
|
import React, { createContext, useCallback, useContext, useMemo, useEffect, useState } from 'react';
|
@@ -181,7 +181,6 @@ export const DatePickerProvider = ({
|
|
181
181
|
configuration: externalConfig = {},
|
182
182
|
children,
|
183
183
|
closePicker,
|
184
|
-
isOpen = false,
|
185
184
|
value
|
186
185
|
}) => {
|
187
186
|
const [configuration, setConfiguration] = useState(deepmerge(defaultConfiguration, externalConfig));
|
@@ -365,15 +364,35 @@ export const DatePickerProvider = ({
|
|
365
364
|
}
|
366
365
|
}, [configuration]);
|
367
366
|
useEffect(() => {
|
368
|
-
if (
|
369
|
-
|
367
|
+
if (configuration.view === '1-month') {
|
368
|
+
if (currentViewingDate.getMonth() === focusDate.getMonth() && currentViewingDate.getFullYear() === focusDate.getFullYear()) {
|
369
|
+
return;
|
370
|
+
} else {
|
371
|
+
setCurrentViewingDate(setDate(focusDate, 1));
|
372
|
+
return;
|
373
|
+
}
|
374
|
+
}
|
375
|
+
/**
|
376
|
+
* This logic is rough, so buckle up.
|
377
|
+
* We want to set the currently shown months based on what has focus. If the focus leaves what we're able to view,
|
378
|
+
* we want to be able to change the currently shown month. However, this gets complicated with the 2-month view.
|
379
|
+
* FIRST: If it's the same month/year: Easy
|
380
|
+
* SECOND: If it's the next month, but same year: Done
|
381
|
+
* THIRD: If it's the next month AND next year, but it's January (i.e. we're viewing Dec/Jan): Good to go
|
382
|
+
*/
|
383
|
+
|
384
|
+
|
385
|
+
if (currentViewingDate.getMonth() === focusDate.getMonth() && currentViewingDate.getFullYear() === focusDate.getFullYear() || addMonths(currentViewingDate, 1).getMonth() === focusDate.getMonth() && currentViewingDate.getFullYear() === focusDate.getFullYear() || addMonths(currentViewingDate, 1).getMonth() === focusDate.getMonth() && focusDate.getMonth() === 0 && addYears(currentViewingDate, 1).getFullYear() === focusDate.getFullYear()) {
|
386
|
+
return;
|
387
|
+
} else {
|
388
|
+
setCurrentViewingDate(setDate(focusDate, 1));
|
370
389
|
}
|
371
|
-
}, [currentViewingDate, focusDate]);
|
390
|
+
}, [configuration.view, currentViewingDate, focusDate]);
|
372
391
|
const selectionHandler = useCallback(date => {
|
373
392
|
setIsDirty(true);
|
374
393
|
|
375
394
|
if (configuration.variant === 'multi') {
|
376
|
-
const selections = [
|
395
|
+
const selections = Array.isArray(selection) ? selection : [];
|
377
396
|
const existingIndex = selections.findIndex(s => isEqual(s, date));
|
378
397
|
|
379
398
|
if (existingIndex > -1) {
|
@@ -459,152 +478,6 @@ export const DatePickerProvider = ({
|
|
459
478
|
});
|
460
479
|
}
|
461
480
|
}, [configuration, hoverRange, selection]);
|
462
|
-
const handleKeyDown = useCallback(async e => {
|
463
|
-
const key = e.key;
|
464
|
-
const {
|
465
|
-
disableWeekends,
|
466
|
-
minDate,
|
467
|
-
maxDate
|
468
|
-
} = configuration;
|
469
|
-
|
470
|
-
switch (key) {
|
471
|
-
case 'ArrowRight':
|
472
|
-
{
|
473
|
-
// Increase selection by 1 day
|
474
|
-
let newDate = normalizeDate(addDays(focusDate, 1));
|
475
|
-
if (maxDate && isAfter(newDate, maxDate)) newDate = maxDate;
|
476
|
-
|
477
|
-
if (disableWeekends && isWeekend(newDate)) {
|
478
|
-
const monday = nextMonday(newDate);
|
479
|
-
newDate = maxDate && isAfter(monday, maxDate) ? maxDate : monday;
|
480
|
-
}
|
481
|
-
|
482
|
-
setFocusDate(newDate);
|
483
|
-
focusHandler(newDate);
|
484
|
-
break;
|
485
|
-
}
|
486
|
-
|
487
|
-
case 'ArrowLeft':
|
488
|
-
{
|
489
|
-
// Decrease selection by 1 day
|
490
|
-
let newDate = normalizeDate(subDays(focusDate, 1));
|
491
|
-
if (minDate && isBefore(newDate, minDate)) newDate = minDate;
|
492
|
-
|
493
|
-
if (disableWeekends && isWeekend(newDate)) {
|
494
|
-
const friday = previousFriday(newDate);
|
495
|
-
newDate = minDate && isBefore(friday, minDate) ? minDate : friday;
|
496
|
-
}
|
497
|
-
|
498
|
-
setFocusDate(newDate);
|
499
|
-
focusHandler(newDate);
|
500
|
-
break;
|
501
|
-
}
|
502
|
-
|
503
|
-
case 'ArrowUp':
|
504
|
-
{
|
505
|
-
// Decrease selection by 1 week
|
506
|
-
let newDate = normalizeDate(subWeeks(focusDate, 1));
|
507
|
-
if (minDate && isBefore(newDate, minDate)) newDate = minDate;
|
508
|
-
setFocusDate(newDate);
|
509
|
-
focusHandler(newDate);
|
510
|
-
break;
|
511
|
-
}
|
512
|
-
|
513
|
-
case 'ArrowDown':
|
514
|
-
{
|
515
|
-
// Increase selection by 1 week
|
516
|
-
let newDate = normalizeDate(addWeeks(focusDate, 1));
|
517
|
-
if (maxDate && isAfter(newDate, maxDate)) newDate = maxDate;
|
518
|
-
setFocusDate(newDate);
|
519
|
-
focusHandler(newDate);
|
520
|
-
break;
|
521
|
-
}
|
522
|
-
|
523
|
-
case 'Home':
|
524
|
-
{
|
525
|
-
let newDate = focusDate;
|
526
|
-
|
527
|
-
if (disableWeekends) {
|
528
|
-
newDate = normalizeDate(isMonday(focusDate) ? focusDate : previousMonday(focusDate));
|
529
|
-
} else {
|
530
|
-
newDate = normalizeDate(isSunday(focusDate) ? focusDate : previousSunday(focusDate));
|
531
|
-
}
|
532
|
-
|
533
|
-
if (minDate && isBefore(newDate, minDate)) newDate = minDate;
|
534
|
-
setFocusDate(newDate);
|
535
|
-
focusHandler(newDate);
|
536
|
-
break;
|
537
|
-
}
|
538
|
-
|
539
|
-
case 'End':
|
540
|
-
{
|
541
|
-
let newDate = focusDate;
|
542
|
-
|
543
|
-
if (disableWeekends) {
|
544
|
-
newDate = normalizeDate(isFriday(focusDate) ? focusDate : nextFriday(focusDate));
|
545
|
-
} else {
|
546
|
-
newDate = normalizeDate(isSaturday(focusDate) ? focusDate : nextSaturday(focusDate));
|
547
|
-
}
|
548
|
-
|
549
|
-
if (maxDate && isAfter(newDate, maxDate)) newDate = maxDate;
|
550
|
-
setFocusDate(newDate);
|
551
|
-
focusHandler(newDate);
|
552
|
-
break;
|
553
|
-
}
|
554
|
-
|
555
|
-
case 'PageUp':
|
556
|
-
{
|
557
|
-
let newDate = normalizeDate(e.shiftKey ? subYears(focusDate, 1) : subMonths(focusDate, 1));
|
558
|
-
if (minDate && isBefore(newDate, minDate)) newDate = minDate;
|
559
|
-
setFocusDate(newDate);
|
560
|
-
focusHandler(newDate);
|
561
|
-
break;
|
562
|
-
}
|
563
|
-
|
564
|
-
case 'PageDown':
|
565
|
-
{
|
566
|
-
let newDate = normalizeDate(e.shiftKey ? addYears(focusDate, 1) : addMonths(focusDate, 1));
|
567
|
-
if (maxDate && isAfter(newDate, maxDate)) newDate = maxDate;
|
568
|
-
setFocusDate(newDate);
|
569
|
-
focusHandler(newDate);
|
570
|
-
break;
|
571
|
-
}
|
572
|
-
|
573
|
-
case 'Enter':
|
574
|
-
case ' ':
|
575
|
-
{
|
576
|
-
// Start Selection
|
577
|
-
selectionHandler(focusDate);
|
578
|
-
break;
|
579
|
-
}
|
580
|
-
|
581
|
-
case 'Esc':
|
582
|
-
{
|
583
|
-
// Cancel Selection if started, reset if not? or close
|
584
|
-
if (hoverRange) {
|
585
|
-
setHoverRange(null);
|
586
|
-
}
|
587
|
-
|
588
|
-
break;
|
589
|
-
}
|
590
|
-
|
591
|
-
default:
|
592
|
-
{
|
593
|
-
break;
|
594
|
-
}
|
595
|
-
}
|
596
|
-
}, [configuration, focusDate, focusHandler, hoverRange, selectionHandler]);
|
597
|
-
useEffect(() => {
|
598
|
-
if (isOpen) {
|
599
|
-
window.addEventListener('keydown', handleKeyDown);
|
600
|
-
} else {
|
601
|
-
window.removeEventListener('keydown', handleKeyDown);
|
602
|
-
}
|
603
|
-
|
604
|
-
return () => {
|
605
|
-
window.removeEventListener('keydown', handleKeyDown);
|
606
|
-
};
|
607
|
-
}, [handleKeyDown, isOpen]);
|
608
481
|
|
609
482
|
const onResize = windowEntry => {
|
610
483
|
// Only care about the first element, we expect one element ot be watched
|
package/lib-esm/Dialog.d.ts
CHANGED
@@ -15,6 +15,7 @@ declare namespace DialogHeader {
|
|
15
15
|
};
|
16
16
|
var propTypes: {
|
17
17
|
lineHeight?: React.Validator<import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
18
|
+
border?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
18
19
|
alignContent?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.AlignContent, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
19
20
|
alignItems?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.AlignItems, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
20
21
|
alignSelf?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.AlignSelf, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
@@ -90,7 +91,6 @@ declare namespace DialogHeader {
|
|
90
91
|
zIndex?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.ZIndex, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
91
92
|
background?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Background<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
92
93
|
backgroundPosition?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.BackgroundPosition<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
93
|
-
border?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
94
94
|
borderBottom?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.BorderBottom<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
95
95
|
borderColor?: React.Validator<import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
96
96
|
borderLeft?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.BorderLeft<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
@@ -153,7 +153,7 @@ declare namespace DialogHeader {
|
|
153
153
|
results?: React.Validator<number | null | undefined> | undefined;
|
154
154
|
security?: React.Validator<string | null | undefined> | undefined;
|
155
155
|
unselectable?: React.Validator<"on" | "off" | null | undefined> | undefined;
|
156
|
-
inputMode?: React.Validator<"
|
156
|
+
inputMode?: React.Validator<"search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | null | undefined> | undefined;
|
157
157
|
is?: React.Validator<string | null | undefined> | undefined;
|
158
158
|
'aria-activedescendant'?: React.Validator<string | null | undefined> | undefined;
|
159
159
|
'aria-atomic'?: React.Validator<boolean | "true" | "false" | null | undefined> | undefined;
|
@@ -168,7 +168,7 @@ declare namespace DialogHeader {
|
|
168
168
|
'aria-describedby'?: React.Validator<string | null | undefined> | undefined;
|
169
169
|
'aria-details'?: React.Validator<string | null | undefined> | undefined;
|
170
170
|
'aria-disabled'?: React.Validator<boolean | "true" | "false" | null | undefined> | undefined;
|
171
|
-
'aria-dropeffect'?: React.Validator<"
|
171
|
+
'aria-dropeffect'?: React.Validator<"link" | "none" | "copy" | "execute" | "move" | "popup" | null | undefined> | undefined;
|
172
172
|
'aria-errormessage'?: React.Validator<string | null | undefined> | undefined;
|
173
173
|
'aria-expanded'?: React.Validator<boolean | "true" | "false" | null | undefined> | undefined;
|
174
174
|
'aria-flowto'?: React.Validator<string | null | undefined> | undefined;
|
@@ -387,7 +387,7 @@ declare namespace DialogHeader {
|
|
387
387
|
size?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
388
388
|
borderX?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
389
389
|
borderY?: React.Validator<import("styled-system").ResponsiveValue<import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined> | undefined;
|
390
|
-
sx?: React.Validator<import("
|
390
|
+
sx?: React.Validator<import("./sx").BetterSystemStyleObject | undefined> | undefined;
|
391
391
|
theme?: React.Validator<any> | undefined;
|
392
392
|
};
|
393
393
|
var displayName: string;
|
package/lib-esm/Dropdown.d.ts
CHANGED
@@ -75,7 +75,7 @@ declare const _default: {
|
|
75
75
|
results?: number | undefined;
|
76
76
|
security?: string | undefined;
|
77
77
|
unselectable?: "on" | "off" | undefined;
|
78
|
-
inputMode?: "
|
78
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
79
79
|
is?: string | undefined;
|
80
80
|
'aria-activedescendant'?: string | undefined;
|
81
81
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
90
90
|
'aria-describedby'?: string | undefined;
|
91
91
|
'aria-details'?: string | undefined;
|
92
92
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
93
|
-
'aria-dropeffect'?: "
|
93
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
94
94
|
'aria-errormessage'?: string | undefined;
|
95
95
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
96
96
|
'aria-flowto'?: string | undefined;
|
@@ -307,7 +307,7 @@ declare const _default: {
|
|
307
307
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
308
308
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
309
309
|
open?: boolean | undefined;
|
310
|
-
sx?: import("
|
310
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
311
311
|
onToggle?: React.ReactEventHandler<HTMLElement> | undefined;
|
312
312
|
} & {
|
313
313
|
theme?: any;
|
@@ -372,7 +372,7 @@ declare const _default: {
|
|
372
372
|
results?: number | undefined;
|
373
373
|
security?: string | undefined;
|
374
374
|
unselectable?: "on" | "off" | undefined;
|
375
|
-
inputMode?: "
|
375
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
376
376
|
is?: string | undefined;
|
377
377
|
'aria-activedescendant'?: string | undefined;
|
378
378
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -387,7 +387,7 @@ declare const _default: {
|
|
387
387
|
'aria-describedby'?: string | undefined;
|
388
388
|
'aria-details'?: string | undefined;
|
389
389
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
390
|
-
'aria-dropeffect'?: "
|
390
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
391
391
|
'aria-errormessage'?: string | undefined;
|
392
392
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
393
393
|
'aria-flowto'?: string | undefined;
|
@@ -604,7 +604,7 @@ declare const _default: {
|
|
604
604
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
605
605
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
606
606
|
open?: boolean | undefined;
|
607
|
-
sx?: import("
|
607
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
608
608
|
onToggle?: React.ReactEventHandler<HTMLElement> | undefined;
|
609
609
|
} & {
|
610
610
|
theme?: any;
|
@@ -691,7 +691,7 @@ declare const _default: {
|
|
691
691
|
results?: number | undefined;
|
692
692
|
security?: string | undefined;
|
693
693
|
unselectable?: "on" | "off" | undefined;
|
694
|
-
inputMode?: "
|
694
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
695
695
|
is?: string | undefined;
|
696
696
|
'aria-activedescendant'?: string | undefined;
|
697
697
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -706,7 +706,7 @@ declare const _default: {
|
|
706
706
|
'aria-describedby'?: string | undefined;
|
707
707
|
'aria-details'?: string | undefined;
|
708
708
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
709
|
-
'aria-dropeffect'?: "
|
709
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
710
710
|
'aria-errormessage'?: string | undefined;
|
711
711
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
712
712
|
'aria-flowto'?: string | undefined;
|
@@ -923,7 +923,8 @@ declare const _default: {
|
|
923
923
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
924
924
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
925
925
|
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
926
|
-
sx?: import("
|
926
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
927
|
+
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
927
928
|
autoFocus?: boolean | undefined;
|
928
929
|
disabled?: boolean | undefined;
|
929
930
|
formAction?: string | undefined;
|
@@ -931,8 +932,7 @@ declare const _default: {
|
|
931
932
|
formMethod?: string | undefined;
|
932
933
|
formNoValidate?: boolean | undefined;
|
933
934
|
formTarget?: string | undefined;
|
934
|
-
|
935
|
-
variant?: "large" | "medium" | "small" | undefined;
|
935
|
+
variant?: "small" | "medium" | "large" | undefined;
|
936
936
|
} & {
|
937
937
|
theme?: any;
|
938
938
|
}): JSX.Element;
|
@@ -1011,7 +1011,7 @@ declare const _default: {
|
|
1011
1011
|
results?: number | undefined;
|
1012
1012
|
security?: string | undefined;
|
1013
1013
|
unselectable?: "on" | "off" | undefined;
|
1014
|
-
inputMode?: "
|
1014
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1015
1015
|
is?: string | undefined;
|
1016
1016
|
'aria-activedescendant'?: string | undefined;
|
1017
1017
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -1026,7 +1026,7 @@ declare const _default: {
|
|
1026
1026
|
'aria-describedby'?: string | undefined;
|
1027
1027
|
'aria-details'?: string | undefined;
|
1028
1028
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
1029
|
-
'aria-dropeffect'?: "
|
1029
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
1030
1030
|
'aria-errormessage'?: string | undefined;
|
1031
1031
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
1032
1032
|
'aria-flowto'?: string | undefined;
|
@@ -1243,7 +1243,8 @@ declare const _default: {
|
|
1243
1243
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1244
1244
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1245
1245
|
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1246
|
-
sx?: import("
|
1246
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
1247
|
+
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
1247
1248
|
autoFocus?: boolean | undefined;
|
1248
1249
|
disabled?: boolean | undefined;
|
1249
1250
|
formAction?: string | undefined;
|
@@ -1251,8 +1252,7 @@ declare const _default: {
|
|
1251
1252
|
formMethod?: string | undefined;
|
1252
1253
|
formNoValidate?: boolean | undefined;
|
1253
1254
|
formTarget?: string | undefined;
|
1254
|
-
|
1255
|
-
variant?: "large" | "medium" | "small" | undefined;
|
1255
|
+
variant?: "small" | "medium" | "large" | undefined;
|
1256
1256
|
} & {
|
1257
1257
|
theme?: any;
|
1258
1258
|
}> | undefined;
|
@@ -76,7 +76,7 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
76
76
|
results?: number | undefined;
|
77
77
|
security?: string | undefined;
|
78
78
|
unselectable?: "on" | "off" | undefined;
|
79
|
-
inputMode?: "
|
79
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
80
80
|
is?: string | undefined;
|
81
81
|
'aria-activedescendant'?: string | undefined;
|
82
82
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -91,7 +91,7 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
91
91
|
'aria-describedby'?: string | undefined;
|
92
92
|
'aria-details'?: string | undefined;
|
93
93
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
94
|
-
'aria-dropeffect'?: "
|
94
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
95
95
|
'aria-errormessage'?: string | undefined;
|
96
96
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
97
97
|
'aria-flowto'?: string | undefined;
|
@@ -308,7 +308,8 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
308
308
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
309
309
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
310
310
|
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
311
|
-
sx?: import("
|
311
|
+
sx?: import("../sx").BetterSystemStyleObject | undefined;
|
312
|
+
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
312
313
|
autoFocus?: boolean | undefined;
|
313
314
|
disabled?: boolean | undefined;
|
314
315
|
formAction?: string | undefined;
|
@@ -316,8 +317,7 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
316
317
|
formMethod?: string | undefined;
|
317
318
|
formNoValidate?: boolean | undefined;
|
318
319
|
formTarget?: string | undefined;
|
319
|
-
|
320
|
-
variant?: "large" | "medium" | "small" | undefined;
|
320
|
+
variant?: "small" | "medium" | "large" | undefined;
|
321
321
|
} & {
|
322
322
|
theme?: any;
|
323
|
-
}>, "backgroundColor" | "color" | "display" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "verticalAlign" | "width" | "margin" | "overflow" | "padding" | "hidden" | "children" | "theme" | "value" | "form" | "p" | "slot" | "style" | "title" | "type" | "name" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "size" | "sx" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "
|
323
|
+
}>, "backgroundColor" | "color" | "display" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "verticalAlign" | "width" | "margin" | "overflow" | "padding" | "hidden" | "children" | "theme" | "value" | "form" | "p" | "slot" | "style" | "title" | "type" | "name" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "size" | "sx" | "as" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "variant"> & React.RefAttributes<HTMLElement>>;
|
package/lib-esm/FilterList.d.ts
CHANGED
@@ -76,7 +76,7 @@ declare const _default: {
|
|
76
76
|
results?: number | undefined;
|
77
77
|
security?: string | undefined;
|
78
78
|
unselectable?: "on" | "off" | undefined;
|
79
|
-
inputMode?: "
|
79
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
80
80
|
is?: string | undefined;
|
81
81
|
'aria-activedescendant'?: string | undefined;
|
82
82
|
'aria-atomic'?: boolean | "true" | "false" | undefined;
|
@@ -91,7 +91,7 @@ declare const _default: {
|
|
91
91
|
'aria-describedby'?: string | undefined;
|
92
92
|
'aria-details'?: string | undefined;
|
93
93
|
'aria-disabled'?: boolean | "true" | "false" | undefined;
|
94
|
-
'aria-dropeffect'?: "
|
94
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
95
95
|
'aria-errormessage'?: string | undefined;
|
96
96
|
'aria-expanded'?: boolean | "true" | "false" | undefined;
|
97
97
|
'aria-flowto'?: string | undefined;
|
@@ -307,7 +307,7 @@ declare const _default: {
|
|
307
307
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
308
308
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
309
309
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
310
|
-
sx?: import("
|
310
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
311
311
|
} & {
|
312
312
|
theme?: any;
|
313
313
|
}>): JSX.Element;
|
package/lib-esm/Flash.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { SystemCommonProps } from './constants';
|
|
2
2
|
import { SxProp } from './sx';
|
3
3
|
import { ComponentProps } from './utils/types';
|
4
4
|
declare const Flash: import("styled-components").StyledComponent<"div", any, {
|
5
|
-
variant?: "
|
5
|
+
variant?: "success" | "danger" | "default" | "warning" | undefined;
|
6
6
|
full?: boolean | undefined;
|
7
7
|
} & SystemCommonProps & SxProp, never>;
|
8
8
|
export declare type FlashProps = ComponentProps<typeof Flash>;
|
package/lib-esm/Label.d.ts
CHANGED
@@ -3,7 +3,7 @@ import { SystemCommonProps } from './constants';
|
|
3
3
|
import { SxProp } from './sx';
|
4
4
|
import { ComponentProps } from './utils/types';
|
5
5
|
declare const Label: import("styled-components").StyledComponent<"span", any, {
|
6
|
-
variant?: "
|
6
|
+
variant?: "small" | "medium" | "large" | "xl" | undefined;
|
7
7
|
dropshadow?: boolean | undefined;
|
8
8
|
outline?: boolean | undefined;
|
9
9
|
} & BorderColorProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & SystemCommonProps & SxProp, never>;
|