@codecademy/gamut 68.1.3-alpha.f719db.0 → 68.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AccordionAreaDeprecated/index.js +1 -2
- package/dist/Alert/elements.d.ts +4 -4
- package/dist/Anchor/index.d.ts +9 -18
- package/dist/Anchor/index.js +6 -9
- package/dist/AppWrapper/index.js +1 -2
- package/dist/Box/Box.d.ts +1 -1
- package/dist/Box/FlexBox.d.ts +1 -1
- package/dist/Box/GridBox.d.ts +1 -2
- package/dist/Box/GridBox.js +1 -1
- package/dist/Box/props.d.ts +1 -1
- package/dist/Button/CTAButton.d.ts +2 -2
- package/dist/Button/FillButton.d.ts +4 -4
- package/dist/Button/IconButton.d.ts +4 -4
- package/dist/Button/StrokeButton.d.ts +4 -4
- package/dist/Button/TextButton.d.ts +4 -4
- package/dist/Button/shared/InlineIconButton.d.ts +2 -2
- package/dist/Button/shared/styles.d.ts +3 -3
- package/dist/Button/shared/types.d.ts +1 -1
- package/dist/ButtonBase/ButtonBase.d.ts +4 -9
- package/dist/ButtonBase/ButtonBase.js +4 -11
- package/dist/Card/elements.d.ts +139 -187
- package/dist/Card/styles.d.ts +8 -8
- package/dist/Coachmark/index.d.ts +1 -1
- package/dist/ConnectedForm/ConnectedForm.d.ts +1 -1
- package/dist/ConnectedForm/utils.d.ts +2 -2
- package/dist/ContentContainer/index.d.ts +1 -1
- package/dist/Disclosure/elements.d.ts +14 -20
- package/dist/FeatureShimmer/index.js +1 -1
- package/dist/Form/SelectDropdown/elements/controls.js +2 -2
- package/dist/Form/SelectDropdown/elements/multi-value.js +2 -2
- package/dist/Form/SelectDropdown/types/internal.d.ts +2 -2
- package/dist/Form/elements/Form.d.ts +15 -15
- package/dist/Form/elements/FormGroup.d.ts +2 -2
- package/dist/Form/inputs/Checkbox.js +1 -2
- package/dist/Form/inputs/Select.js +1 -2
- package/dist/GridForm/GridFormButtons/index.d.ts +4 -4
- package/dist/HiddenText/index.js +1 -2
- package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +1 -1
- package/dist/Layout/Column.d.ts +1 -1
- package/dist/Layout/LayoutGrid.d.ts +1 -1
- package/dist/List/ListProvider.d.ts +1 -1
- package/dist/List/elements.d.ts +59 -75
- package/dist/List/hooks.d.ts +1 -1
- package/dist/Markdown/libs/overrides/index.js +1 -2
- package/dist/Menu/Menu.d.ts +1 -1
- package/dist/Menu/MenuItem.js +6 -10
- package/dist/Menu/elements.d.ts +4 -4
- package/dist/Modals/elements.d.ts +1 -1
- package/dist/Pagination/AnimatedPaginationButtons.d.ts +45 -61
- package/dist/Pagination/EllipsisButton.d.ts +4 -4
- package/dist/Pagination/PaginationButton.d.ts +6 -6
- package/dist/Pagination/utils.d.ts +43 -59
- package/dist/Pagination/utils.js +11 -14
- package/dist/Popover/Popover.js +4 -4
- package/dist/Popover/elements.d.ts +2 -2
- package/dist/Popover/types.d.ts +2 -3
- package/dist/PopoverContainer/PopoverContainer.js +11 -9
- package/dist/PopoverContainer/hooks.d.ts +4 -16
- package/dist/PopoverContainer/hooks.js +24 -31
- package/dist/PopoverContainer/types.d.ts +2 -3
- package/dist/ProgressBar/index.js +1 -2
- package/dist/Tabs/TabButton.d.ts +2 -2
- package/dist/Tabs/TabNav.d.ts +1 -1
- package/dist/Tabs/TabNavLink.d.ts +2 -2
- package/dist/Tag/elements.d.ts +12 -18
- package/dist/Tip/InfoTip/InfoTipButton.d.ts +4 -4
- package/dist/Tip/InfoTip/styles.d.ts +1 -1
- package/dist/Tip/PreviewTip/elements.d.ts +7 -13
- package/dist/Tip/ToolTip/elements.d.ts +1 -1
- package/dist/Tip/__tests__/helpers.d.ts +3 -3
- package/dist/Tip/shared/FloatingTip.js +2 -2
- package/dist/Tip/shared/elements.d.ts +3 -3
- package/dist/Tip/shared/types.d.ts +2 -2
- package/dist/Toggle/elements.d.ts +1 -1
- package/dist/Toggle/elements.js +2 -4
- package/dist/Typography/Text.d.ts +3 -3
- package/dist/utils/react.js +1 -2
- package/package.json +11 -11
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react" />
|
|
3
|
-
export declare const AnimatedFadeButton: (props:
|
|
4
|
-
mode?: "
|
|
3
|
+
export declare const AnimatedFadeButton: (props: {
|
|
4
|
+
mode?: "dark" | "light" | undefined;
|
|
5
5
|
border?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
6
6
|
readonly property: "border";
|
|
7
7
|
readonly scale: "borders";
|
|
@@ -34,8 +34,8 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
34
34
|
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
35
35
|
readonly transform: (value: string | number) => string | 0;
|
|
36
36
|
}>;
|
|
37
|
-
"aria-hidden"?: (boolean | "
|
|
38
|
-
ref?: import("react").
|
|
37
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
38
|
+
ref?: import("react").LegacyRef<import("..").ButtonBaseElements> | undefined;
|
|
39
39
|
key?: import("react").Key | null | undefined;
|
|
40
40
|
defaultChecked?: boolean | undefined;
|
|
41
41
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -44,17 +44,17 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
44
44
|
accessKey?: string | undefined;
|
|
45
45
|
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
46
46
|
autoFocus?: boolean | undefined;
|
|
47
|
-
contentEditable?: "inherit" | (boolean | "
|
|
47
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
48
48
|
contextMenu?: string | undefined;
|
|
49
|
-
draggable?: (boolean | "
|
|
50
|
-
enterKeyHint?: "search" | "
|
|
49
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
50
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
51
51
|
hidden?: boolean | undefined;
|
|
52
52
|
id?: string | undefined;
|
|
53
53
|
lang?: string | undefined;
|
|
54
54
|
nonce?: string | undefined;
|
|
55
|
-
spellCheck?: (boolean | "
|
|
55
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
56
56
|
tabIndex?: number | undefined;
|
|
57
|
-
translate?: "
|
|
57
|
+
translate?: "no" | "yes" | undefined;
|
|
58
58
|
radioGroup?: string | undefined;
|
|
59
59
|
role?: import("react").AriaRole | undefined;
|
|
60
60
|
about?: string | undefined;
|
|
@@ -78,60 +78,56 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
78
78
|
results?: number | undefined;
|
|
79
79
|
security?: string | undefined;
|
|
80
80
|
unselectable?: "off" | "on" | undefined;
|
|
81
|
-
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
82
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
83
|
-
popoverTarget?: string | undefined;
|
|
84
|
-
inert?: boolean | undefined;
|
|
85
81
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
86
82
|
is?: string | undefined;
|
|
87
83
|
exportparts?: string | undefined;
|
|
88
84
|
part?: string | undefined;
|
|
89
85
|
"aria-activedescendant"?: string | undefined;
|
|
90
|
-
"aria-atomic"?: (boolean | "
|
|
91
|
-
"aria-autocomplete"?: "none" | "inline" | "
|
|
86
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
87
|
+
"aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
|
|
92
88
|
"aria-braillelabel"?: string | undefined;
|
|
93
89
|
"aria-brailleroledescription"?: string | undefined;
|
|
94
|
-
"aria-busy"?: (boolean | "
|
|
95
|
-
"aria-checked"?: boolean | "
|
|
90
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
91
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
96
92
|
"aria-colcount"?: number | undefined;
|
|
97
93
|
"aria-colindex"?: number | undefined;
|
|
98
94
|
"aria-colindextext"?: string | undefined;
|
|
99
95
|
"aria-colspan"?: number | undefined;
|
|
100
96
|
"aria-controls"?: string | undefined;
|
|
101
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
97
|
+
"aria-current"?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
|
102
98
|
"aria-describedby"?: string | undefined;
|
|
103
99
|
"aria-description"?: string | undefined;
|
|
104
100
|
"aria-details"?: string | undefined;
|
|
105
|
-
"aria-disabled"?: (boolean | "
|
|
101
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
106
102
|
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
107
103
|
"aria-errormessage"?: string | undefined;
|
|
108
|
-
"aria-expanded"?: (boolean | "
|
|
104
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
109
105
|
"aria-flowto"?: string | undefined;
|
|
110
|
-
"aria-grabbed"?: (boolean | "
|
|
111
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "
|
|
112
|
-
"aria-invalid"?: boolean | "
|
|
106
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
107
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
|
|
108
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
113
109
|
"aria-keyshortcuts"?: string | undefined;
|
|
114
110
|
"aria-label"?: string | undefined;
|
|
115
111
|
"aria-labelledby"?: string | undefined;
|
|
116
112
|
"aria-level"?: number | undefined;
|
|
117
113
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
118
|
-
"aria-modal"?: (boolean | "
|
|
119
|
-
"aria-multiline"?: (boolean | "
|
|
120
|
-
"aria-multiselectable"?: (boolean | "
|
|
114
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
115
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
116
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
121
117
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
122
118
|
"aria-owns"?: string | undefined;
|
|
123
119
|
"aria-placeholder"?: string | undefined;
|
|
124
120
|
"aria-posinset"?: number | undefined;
|
|
125
|
-
"aria-pressed"?: boolean | "
|
|
126
|
-
"aria-readonly"?: (boolean | "
|
|
121
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
122
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
127
123
|
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
128
|
-
"aria-required"?: (boolean | "
|
|
124
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
129
125
|
"aria-roledescription"?: string | undefined;
|
|
130
126
|
"aria-rowcount"?: number | undefined;
|
|
131
127
|
"aria-rowindex"?: number | undefined;
|
|
132
128
|
"aria-rowindextext"?: string | undefined;
|
|
133
129
|
"aria-rowspan"?: number | undefined;
|
|
134
|
-
"aria-selected"?: (boolean | "
|
|
130
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
135
131
|
"aria-setsize"?: number | undefined;
|
|
136
132
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
137
133
|
"aria-valuemax"?: number | undefined;
|
|
@@ -157,18 +153,18 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
157
153
|
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | (import("react").FocusEventHandler<HTMLButtonElement> & import("react").FocusEventHandler<HTMLAnchorElement>) | undefined;
|
|
158
154
|
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | (import("react").FocusEventHandler<HTMLButtonElement> & import("react").FocusEventHandler<HTMLAnchorElement>) | undefined;
|
|
159
155
|
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | (import("react").FocusEventHandler<HTMLButtonElement> & import("react").FocusEventHandler<HTMLAnchorElement>) | undefined;
|
|
160
|
-
onChange?: import("react").
|
|
161
|
-
onChangeCapture?: import("react").
|
|
156
|
+
onChange?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
157
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
162
158
|
onBeforeInput?: import("react").InputEventHandler<HTMLButtonElement> | (import("react").InputEventHandler<HTMLButtonElement> & import("react").InputEventHandler<HTMLAnchorElement>) | undefined;
|
|
163
|
-
onBeforeInputCapture?: import("react").
|
|
164
|
-
onInput?: import("react").
|
|
165
|
-
onInputCapture?: import("react").
|
|
166
|
-
onReset?: import("react").
|
|
167
|
-
onResetCapture?: import("react").
|
|
168
|
-
onSubmit?: import("react").
|
|
169
|
-
onSubmitCapture?: import("react").
|
|
170
|
-
onInvalid?: import("react").
|
|
171
|
-
onInvalidCapture?: import("react").
|
|
159
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
160
|
+
onInput?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
161
|
+
onInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
162
|
+
onReset?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
163
|
+
onResetCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
164
|
+
onSubmit?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
165
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
166
|
+
onInvalid?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
167
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLButtonElement> | (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
172
168
|
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
|
|
173
169
|
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
|
|
174
170
|
onError?: import("react").ReactEventHandler<HTMLButtonElement> | (import("react").ReactEventHandler<HTMLButtonElement> & import("react").ReactEventHandler<HTMLAnchorElement>) | undefined;
|
|
@@ -286,8 +282,6 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
286
282
|
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | (import("react").PointerEventHandler<HTMLButtonElement> & import("react").PointerEventHandler<HTMLAnchorElement>) | undefined;
|
|
287
283
|
onScroll?: import("react").UIEventHandler<HTMLButtonElement> | (import("react").UIEventHandler<HTMLButtonElement> & import("react").UIEventHandler<HTMLAnchorElement>) | undefined;
|
|
288
284
|
onScrollCapture?: import("react").UIEventHandler<HTMLButtonElement> | (import("react").UIEventHandler<HTMLButtonElement> & import("react").UIEventHandler<HTMLAnchorElement>) | undefined;
|
|
289
|
-
onScrollEnd?: import("react").UIEventHandler<HTMLButtonElement> | (import("react").UIEventHandler<HTMLButtonElement> & import("react").UIEventHandler<HTMLAnchorElement>) | undefined;
|
|
290
|
-
onScrollEndCapture?: import("react").UIEventHandler<HTMLButtonElement> | (import("react").UIEventHandler<HTMLButtonElement> & import("react").UIEventHandler<HTMLAnchorElement>) | undefined;
|
|
291
285
|
onWheel?: import("react").WheelEventHandler<HTMLButtonElement> | (import("react").WheelEventHandler<HTMLButtonElement> & import("react").WheelEventHandler<HTMLAnchorElement>) | undefined;
|
|
292
286
|
onWheelCapture?: import("react").WheelEventHandler<HTMLButtonElement> | (import("react").WheelEventHandler<HTMLButtonElement> & import("react").WheelEventHandler<HTMLAnchorElement>) | undefined;
|
|
293
287
|
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | (import("react").AnimationEventHandler<HTMLButtonElement> & import("react").AnimationEventHandler<HTMLAnchorElement>) | undefined;
|
|
@@ -295,16 +289,8 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
295
289
|
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | (import("react").AnimationEventHandler<HTMLButtonElement> & import("react").AnimationEventHandler<HTMLAnchorElement>) | undefined;
|
|
296
290
|
onAnimationIteration?: import("react").AnimationEventHandler<HTMLButtonElement> | (import("react").AnimationEventHandler<HTMLButtonElement> & import("react").AnimationEventHandler<HTMLAnchorElement>) | undefined;
|
|
297
291
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | (import("react").AnimationEventHandler<HTMLButtonElement> & import("react").AnimationEventHandler<HTMLAnchorElement>) | undefined;
|
|
298
|
-
onToggle?: import("react").ToggleEventHandler<HTMLButtonElement> | (import("react").ToggleEventHandler<HTMLButtonElement> & import("react").ToggleEventHandler<HTMLAnchorElement>) | undefined;
|
|
299
|
-
onBeforeToggle?: import("react").ToggleEventHandler<HTMLButtonElement> | (import("react").ToggleEventHandler<HTMLButtonElement> & import("react").ToggleEventHandler<HTMLAnchorElement>) | undefined;
|
|
300
|
-
onTransitionCancel?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
301
|
-
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
302
292
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
303
293
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
304
|
-
onTransitionRun?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
305
|
-
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
306
|
-
onTransitionStart?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
307
|
-
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | (import("react").TransitionEventHandler<HTMLButtonElement> & import("react").TransitionEventHandler<HTMLAnchorElement>) | undefined;
|
|
308
294
|
alignSelf?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
309
295
|
readonly property: "alignSelf";
|
|
310
296
|
}>;
|
|
@@ -497,7 +483,11 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
497
483
|
overflow?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
498
484
|
readonly property: "overflow";
|
|
499
485
|
}>;
|
|
486
|
+
size?: "small" | "normal" | "large" | undefined;
|
|
487
|
+
type?: "button" | "reset" | "submit" | undefined;
|
|
500
488
|
href?: string | undefined;
|
|
489
|
+
icon?: import("react").ComponentType<import("@codecademy/gamut-icons").GamutIconProps> | undefined;
|
|
490
|
+
ellipsis?: boolean | undefined;
|
|
501
491
|
px?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
502
492
|
readonly property: "padding";
|
|
503
493
|
readonly properties: {
|
|
@@ -786,29 +776,23 @@ export declare const AnimatedFadeButton: (props: Omit<{
|
|
|
786
776
|
readonly transform: (value: string | number) => string | 0;
|
|
787
777
|
}>;
|
|
788
778
|
theme?: import("@emotion/react").Theme | undefined;
|
|
789
|
-
size?: "small" | "normal" | "large" | undefined;
|
|
790
779
|
variant?: "primary" | "secondary" | "danger" | "interface" | undefined;
|
|
791
780
|
as?: undefined;
|
|
792
|
-
formAction?: string |
|
|
781
|
+
formAction?: string | undefined;
|
|
793
782
|
formEncType?: string | undefined;
|
|
794
783
|
formMethod?: string | undefined;
|
|
795
784
|
formNoValidate?: boolean | undefined;
|
|
796
785
|
formTarget?: string | undefined;
|
|
797
|
-
type?: "button" | "submit" | "reset" | undefined;
|
|
798
786
|
value?: string | number | readonly string[] | undefined;
|
|
799
|
-
icon?: import("react").ComponentType<import("@codecademy/gamut-icons").GamutIconProps> | undefined;
|
|
800
|
-
ellipsis?: boolean | undefined;
|
|
801
787
|
buttonType?: "text" | "stroke" | undefined;
|
|
802
788
|
showButton?: "hidden" | "shown" | undefined;
|
|
803
|
-
} & import("framer-motion
|
|
804
|
-
children?: import("react").ReactNode | import("motion-dom").MotionValue<number> | import("motion-dom").MotionValue<string>;
|
|
805
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
789
|
+
} & import("framer-motion").MotionProps) => import("react/jsx-runtime").JSX.Element;
|
|
806
790
|
export declare const AnimatedSlideButton: (props: (Omit<Omit<{
|
|
807
791
|
theme?: import("@emotion/react").Theme | undefined;
|
|
808
792
|
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
809
793
|
} & {
|
|
810
794
|
theme?: import("@emotion/react").Theme | undefined;
|
|
811
|
-
} & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "
|
|
795
|
+
} & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "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-rowindextext" | "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" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
|
|
812
796
|
theme?: import("@emotion/react").Theme | undefined;
|
|
813
797
|
} & import("../Button/shared").ButtonBaseProps & import("./PaginationButton").BasePaginationButtonProps & Partial<Record<"selected" | "ellipsis", boolean>> & {
|
|
814
798
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -824,7 +808,7 @@ export declare const AnimatedSlideButton: (props: (Omit<Omit<{
|
|
|
824
808
|
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
825
809
|
} & {
|
|
826
810
|
theme?: import("@emotion/react").Theme | undefined;
|
|
827
|
-
} & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "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-rowindextext" | "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" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "value"> & Pick<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "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-rowindextext" | "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" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "href" | "type" | keyof import("react").ClassAttributes<HTMLAnchorElement> | "download" | "hrefLang" | "media" | "ping" | "target" | "referrerPolicy">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
|
|
811
|
+
} & Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "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-rowindextext" | "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" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value"> & Pick<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "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-rowindextext" | "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" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "type" | "href" | keyof import("react").ClassAttributes<HTMLAnchorElement> | "download" | "hrefLang" | "ping" | "referrerPolicy">, "ref"> & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement> & {
|
|
828
812
|
theme?: import("@emotion/react").Theme | undefined;
|
|
829
813
|
} & import("../Button/shared").ButtonBaseProps & import("./PaginationButton").BasePaginationButtonProps & Partial<Record<"selected" | "ellipsis", boolean>> & {
|
|
830
814
|
theme?: import("@emotion/react").Theme | undefined;
|