plataforma-fundacao-componentes 2.26.2 → 2.26.4
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/assets/icons/InformationIcon.d.ts +2 -2
- package/dist/assets/icons/MiniInformationIcon.d.ts +3 -0
- package/dist/components/checkbox/Checkbox.d.ts +286 -3
- package/dist/components/input/Input.d.ts +4 -4
- package/dist/components/input/Input.stories.d.ts +1 -0
- package/dist/components/inputArea/InputArea.d.ts +2 -2
- package/dist/components/modal/Modal.d.ts +4 -4
- package/dist/components/radioButton/RadioButton.d.ts +4 -3
- package/dist/components/radioButton/RadioButton.stories.d.ts +1 -0
- package/dist/components/search/Search.d.ts +2 -2
- package/dist/components/select/Select.d.ts +2 -2
- package/dist/components/table/components/leftControlWithLabel/LeftControlWithLabel.d.ts +3 -3
- package/dist/components/tooltipElement/TooltipElement.d.ts +9 -0
- package/dist/components/tooltipElement/TooltipElement.stories.d.ts +7 -0
- package/dist/components/typography/Typography.d.ts +13 -0
- package/dist/components/typography/Typography.stories.d.ts +38 -0
- package/dist/components/videoModal/VideoModal.d.ts +6 -6
- package/dist/index.css +450 -259
- package/dist/index.d.ts +18 -15
- package/dist/index.js +685 -508
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +686 -512
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/HTMLutils.d.ts +1 -1
- package/package.json +2 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { SVGAttributes } from 'react';
|
|
2
2
|
import './Icon.scss';
|
|
3
|
-
export declare const InformationIcon: () => React.JSX.Element;
|
|
3
|
+
export declare const InformationIcon: ({ className, ...props }: SVGAttributes<SVGSVGElement>) => React.JSX.Element;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="trusted-types" />
|
|
2
|
+
import React, { ButtonHTMLAttributes, MouseEvent } from 'react';
|
|
2
3
|
import { CheckboxThemes } from '../../libraries/CheckboxThemes';
|
|
3
4
|
import { TooltipPosition } from '../../libraries/Tooltips';
|
|
4
5
|
import './Checkbox.scss';
|
|
5
|
-
export interface CheckboxProps {
|
|
6
|
+
export interface CheckboxProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onChange' | 'value'> {
|
|
6
7
|
'tooltip-position'?: TooltipPosition;
|
|
7
8
|
'tooltip-text'?: string;
|
|
8
9
|
disabled?: boolean;
|
|
@@ -11,8 +12,290 @@ export interface CheckboxProps {
|
|
|
11
12
|
onChange?: (value: boolean, evt: React.MouseEvent<HTMLElement>) => void;
|
|
12
13
|
theme?: CheckboxThemes;
|
|
13
14
|
tag?: 'button' | 'div';
|
|
15
|
+
error?: boolean;
|
|
14
16
|
}
|
|
15
|
-
declare function Checkbox(props: CheckboxProps): React.
|
|
17
|
+
declare function Checkbox({ value, tag, onChange, theme, className, error, type, ...props }: CheckboxProps): React.DetailedReactHTMLElement<{
|
|
18
|
+
className: string;
|
|
19
|
+
onClick: (evt: MouseEvent<HTMLElement>) => void;
|
|
20
|
+
'data-error': boolean;
|
|
21
|
+
'data-checked': boolean | undefined;
|
|
22
|
+
'aria-disabled': boolean | undefined;
|
|
23
|
+
type: "button" | "submit" | "reset";
|
|
24
|
+
'tooltip-position'?: TooltipPosition | undefined;
|
|
25
|
+
'tooltip-text'?: string | undefined;
|
|
26
|
+
disabled?: boolean | undefined;
|
|
27
|
+
id?: string | undefined;
|
|
28
|
+
color?: string | undefined;
|
|
29
|
+
form?: string | undefined;
|
|
30
|
+
formAction?: string | undefined;
|
|
31
|
+
formEncType?: string | undefined;
|
|
32
|
+
formMethod?: string | undefined;
|
|
33
|
+
formNoValidate?: boolean | undefined;
|
|
34
|
+
formTarget?: string | undefined;
|
|
35
|
+
name?: string | undefined;
|
|
36
|
+
defaultChecked?: boolean | undefined;
|
|
37
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
38
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
39
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
40
|
+
accessKey?: string | undefined;
|
|
41
|
+
autoFocus?: boolean | undefined;
|
|
42
|
+
contentEditable?: boolean | "true" | "false" | "inherit" | undefined;
|
|
43
|
+
contextMenu?: string | undefined;
|
|
44
|
+
dir?: string | undefined;
|
|
45
|
+
draggable?: boolean | "true" | "false" | undefined;
|
|
46
|
+
hidden?: boolean | undefined;
|
|
47
|
+
lang?: string | undefined;
|
|
48
|
+
nonce?: string | undefined;
|
|
49
|
+
placeholder?: string | undefined;
|
|
50
|
+
slot?: string | undefined;
|
|
51
|
+
spellCheck?: boolean | "true" | "false" | undefined;
|
|
52
|
+
style?: React.CSSProperties | undefined;
|
|
53
|
+
tabIndex?: number | undefined;
|
|
54
|
+
title?: string | undefined;
|
|
55
|
+
translate?: "yes" | "no" | undefined;
|
|
56
|
+
radioGroup?: string | undefined;
|
|
57
|
+
role?: "form" | "button" | "article" | "dialog" | "figure" | "img" | "link" | "main" | "menu" | "menuitem" | "option" | "search" | "table" | "alert" | "alertdialog" | "application" | "banner" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "grid" | "gridcell" | "group" | "heading" | "list" | "listbox" | "listitem" | "log" | "marquee" | "math" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem" | (string & {}) | undefined;
|
|
58
|
+
about?: string | undefined;
|
|
59
|
+
content?: string | undefined;
|
|
60
|
+
datatype?: string | undefined;
|
|
61
|
+
inlist?: any;
|
|
62
|
+
prefix?: string | undefined;
|
|
63
|
+
property?: string | undefined;
|
|
64
|
+
rel?: string | undefined;
|
|
65
|
+
resource?: string | undefined;
|
|
66
|
+
rev?: string | undefined;
|
|
67
|
+
typeof?: string | undefined;
|
|
68
|
+
vocab?: string | undefined;
|
|
69
|
+
autoCapitalize?: string | undefined;
|
|
70
|
+
autoCorrect?: string | undefined;
|
|
71
|
+
autoSave?: string | undefined;
|
|
72
|
+
itemProp?: string | undefined;
|
|
73
|
+
itemScope?: boolean | undefined;
|
|
74
|
+
itemType?: string | undefined;
|
|
75
|
+
itemID?: string | undefined;
|
|
76
|
+
itemRef?: string | undefined;
|
|
77
|
+
results?: number | undefined;
|
|
78
|
+
security?: string | undefined;
|
|
79
|
+
unselectable?: "on" | "off" | undefined;
|
|
80
|
+
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
81
|
+
is?: string | undefined;
|
|
82
|
+
"aria-activedescendant"?: string | undefined;
|
|
83
|
+
"aria-atomic"?: boolean | "true" | "false" | undefined;
|
|
84
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
85
|
+
"aria-braillelabel"?: string | undefined;
|
|
86
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
87
|
+
"aria-busy"?: boolean | "true" | "false" | undefined;
|
|
88
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
89
|
+
"aria-colcount"?: number | undefined;
|
|
90
|
+
"aria-colindex"?: number | undefined;
|
|
91
|
+
"aria-colindextext"?: string | undefined;
|
|
92
|
+
"aria-colspan"?: number | undefined;
|
|
93
|
+
"aria-controls"?: string | undefined;
|
|
94
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
95
|
+
"aria-describedby"?: string | undefined;
|
|
96
|
+
"aria-description"?: string | undefined;
|
|
97
|
+
"aria-details"?: string | undefined;
|
|
98
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
99
|
+
"aria-errormessage"?: string | undefined;
|
|
100
|
+
"aria-expanded"?: boolean | "true" | "false" | undefined;
|
|
101
|
+
"aria-flowto"?: string | undefined;
|
|
102
|
+
"aria-grabbed"?: boolean | "true" | "false" | undefined;
|
|
103
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
104
|
+
"aria-hidden"?: boolean | "true" | "false" | undefined;
|
|
105
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
106
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
107
|
+
"aria-label"?: string | undefined;
|
|
108
|
+
"aria-labelledby"?: string | undefined;
|
|
109
|
+
"aria-level"?: number | undefined;
|
|
110
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
111
|
+
"aria-modal"?: boolean | "true" | "false" | undefined;
|
|
112
|
+
"aria-multiline"?: boolean | "true" | "false" | undefined;
|
|
113
|
+
"aria-multiselectable"?: boolean | "true" | "false" | undefined;
|
|
114
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
115
|
+
"aria-owns"?: string | undefined;
|
|
116
|
+
"aria-placeholder"?: string | undefined;
|
|
117
|
+
"aria-posinset"?: number | undefined;
|
|
118
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
119
|
+
"aria-readonly"?: boolean | "true" | "false" | undefined;
|
|
120
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
121
|
+
"aria-required"?: boolean | "true" | "false" | undefined;
|
|
122
|
+
"aria-roledescription"?: string | undefined;
|
|
123
|
+
"aria-rowcount"?: number | undefined;
|
|
124
|
+
"aria-rowindex"?: number | undefined;
|
|
125
|
+
"aria-rowindextext"?: string | undefined;
|
|
126
|
+
"aria-rowspan"?: number | undefined;
|
|
127
|
+
"aria-selected"?: boolean | "true" | "false" | undefined;
|
|
128
|
+
"aria-setsize"?: number | undefined;
|
|
129
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
130
|
+
"aria-valuemax"?: number | undefined;
|
|
131
|
+
"aria-valuemin"?: number | undefined;
|
|
132
|
+
"aria-valuenow"?: number | undefined;
|
|
133
|
+
"aria-valuetext"?: string | undefined;
|
|
134
|
+
children?: React.ReactNode;
|
|
135
|
+
dangerouslySetInnerHTML?: {
|
|
136
|
+
__html: string | TrustedHTML;
|
|
137
|
+
} | undefined;
|
|
138
|
+
onCopy?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
139
|
+
onCopyCapture?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
140
|
+
onCut?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
141
|
+
onCutCapture?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
142
|
+
onPaste?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
143
|
+
onPasteCapture?: ((event: React.ClipboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
144
|
+
onCompositionEnd?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
145
|
+
onCompositionEndCapture?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
146
|
+
onCompositionStart?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
147
|
+
onCompositionStartCapture?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
148
|
+
onCompositionUpdate?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
149
|
+
onCompositionUpdateCapture?: ((event: React.CompositionEvent<HTMLButtonElement>) => void) | undefined;
|
|
150
|
+
onFocus?: ((event: React.FocusEvent<HTMLButtonElement, Element>) => void) | undefined;
|
|
151
|
+
onFocusCapture?: ((event: React.FocusEvent<HTMLButtonElement, Element>) => void) | undefined;
|
|
152
|
+
onBlur?: ((event: React.FocusEvent<HTMLButtonElement, Element>) => void) | undefined;
|
|
153
|
+
onBlurCapture?: ((event: React.FocusEvent<HTMLButtonElement, Element>) => void) | undefined;
|
|
154
|
+
onChangeCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
155
|
+
onBeforeInput?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
156
|
+
onBeforeInputCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
157
|
+
onInput?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
158
|
+
onInputCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
159
|
+
onReset?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
160
|
+
onResetCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
161
|
+
onSubmit?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
162
|
+
onSubmitCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
163
|
+
onInvalid?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
164
|
+
onInvalidCapture?: ((event: React.FormEvent<HTMLButtonElement>) => void) | undefined;
|
|
165
|
+
onLoad?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
166
|
+
onLoadCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
167
|
+
onError?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
168
|
+
onErrorCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
169
|
+
onKeyDown?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
170
|
+
onKeyDownCapture?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
171
|
+
onKeyPress?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
172
|
+
onKeyPressCapture?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
173
|
+
onKeyUp?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
174
|
+
onKeyUpCapture?: ((event: React.KeyboardEvent<HTMLButtonElement>) => void) | undefined;
|
|
175
|
+
onAbort?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
176
|
+
onAbortCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
177
|
+
onCanPlay?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
178
|
+
onCanPlayCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
179
|
+
onCanPlayThrough?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
180
|
+
onCanPlayThroughCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
181
|
+
onDurationChange?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
182
|
+
onDurationChangeCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
183
|
+
onEmptied?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
184
|
+
onEmptiedCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
185
|
+
onEncrypted?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
186
|
+
onEncryptedCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
187
|
+
onEnded?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
188
|
+
onEndedCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
189
|
+
onLoadedData?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
190
|
+
onLoadedDataCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
191
|
+
onLoadedMetadata?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
192
|
+
onLoadedMetadataCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
193
|
+
onLoadStart?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
194
|
+
onLoadStartCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
195
|
+
onPause?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
196
|
+
onPauseCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
197
|
+
onPlay?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
198
|
+
onPlayCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
199
|
+
onPlaying?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
200
|
+
onPlayingCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
201
|
+
onProgress?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
202
|
+
onProgressCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
203
|
+
onRateChange?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
204
|
+
onRateChangeCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
205
|
+
onResize?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
206
|
+
onResizeCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
207
|
+
onSeeked?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
208
|
+
onSeekedCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
209
|
+
onSeeking?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
210
|
+
onSeekingCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
211
|
+
onStalled?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
212
|
+
onStalledCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
213
|
+
onSuspend?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
214
|
+
onSuspendCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
215
|
+
onTimeUpdate?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
216
|
+
onTimeUpdateCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
217
|
+
onVolumeChange?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
218
|
+
onVolumeChangeCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
219
|
+
onWaiting?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
220
|
+
onWaitingCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
221
|
+
onAuxClick?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
222
|
+
onAuxClickCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
223
|
+
onClickCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
224
|
+
onContextMenu?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
225
|
+
onContextMenuCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
226
|
+
onDoubleClick?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
227
|
+
onDoubleClickCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
228
|
+
onDrag?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
229
|
+
onDragCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
230
|
+
onDragEnd?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
231
|
+
onDragEndCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
232
|
+
onDragEnter?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
233
|
+
onDragEnterCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
234
|
+
onDragExit?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
235
|
+
onDragExitCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
236
|
+
onDragLeave?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
237
|
+
onDragLeaveCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
238
|
+
onDragOver?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
239
|
+
onDragOverCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
240
|
+
onDragStart?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
241
|
+
onDragStartCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
242
|
+
onDrop?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
243
|
+
onDropCapture?: ((event: React.DragEvent<HTMLButtonElement>) => void) | undefined;
|
|
244
|
+
onMouseDown?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
245
|
+
onMouseDownCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
246
|
+
onMouseEnter?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
247
|
+
onMouseLeave?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
248
|
+
onMouseMove?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
249
|
+
onMouseMoveCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
250
|
+
onMouseOut?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
251
|
+
onMouseOutCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
252
|
+
onMouseOver?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
253
|
+
onMouseOverCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
254
|
+
onMouseUp?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
255
|
+
onMouseUpCapture?: ((event: React.MouseEvent<HTMLButtonElement, globalThis.MouseEvent>) => void) | undefined;
|
|
256
|
+
onSelect?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
257
|
+
onSelectCapture?: ((event: React.SyntheticEvent<HTMLButtonElement, Event>) => void) | undefined;
|
|
258
|
+
onTouchCancel?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
259
|
+
onTouchCancelCapture?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
260
|
+
onTouchEnd?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
261
|
+
onTouchEndCapture?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
262
|
+
onTouchMove?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
263
|
+
onTouchMoveCapture?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
264
|
+
onTouchStart?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
265
|
+
onTouchStartCapture?: ((event: React.TouchEvent<HTMLButtonElement>) => void) | undefined;
|
|
266
|
+
onPointerDown?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
267
|
+
onPointerDownCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
268
|
+
onPointerMove?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
269
|
+
onPointerMoveCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
270
|
+
onPointerUp?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
271
|
+
onPointerUpCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
272
|
+
onPointerCancel?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
273
|
+
onPointerCancelCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
274
|
+
onPointerEnter?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
275
|
+
onPointerEnterCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
276
|
+
onPointerLeave?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
277
|
+
onPointerLeaveCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
278
|
+
onPointerOver?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
279
|
+
onPointerOverCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
280
|
+
onPointerOut?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
281
|
+
onPointerOutCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
282
|
+
onGotPointerCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
283
|
+
onGotPointerCaptureCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
284
|
+
onLostPointerCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
285
|
+
onLostPointerCaptureCapture?: ((event: React.PointerEvent<HTMLButtonElement>) => void) | undefined;
|
|
286
|
+
onScroll?: ((event: React.UIEvent<HTMLButtonElement, UIEvent>) => void) | undefined;
|
|
287
|
+
onScrollCapture?: ((event: React.UIEvent<HTMLButtonElement, UIEvent>) => void) | undefined;
|
|
288
|
+
onWheel?: ((event: React.WheelEvent<HTMLButtonElement>) => void) | undefined;
|
|
289
|
+
onWheelCapture?: ((event: React.WheelEvent<HTMLButtonElement>) => void) | undefined;
|
|
290
|
+
onAnimationStart?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
291
|
+
onAnimationStartCapture?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
292
|
+
onAnimationEnd?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
293
|
+
onAnimationEndCapture?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
294
|
+
onAnimationIteration?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
295
|
+
onAnimationIterationCapture?: ((event: React.AnimationEvent<HTMLButtonElement>) => void) | undefined;
|
|
296
|
+
onTransitionEnd?: ((event: React.TransitionEvent<HTMLButtonElement>) => void) | undefined;
|
|
297
|
+
onTransitionEndCapture?: ((event: React.TransitionEvent<HTMLButtonElement>) => void) | undefined;
|
|
298
|
+
}, HTMLElement>;
|
|
16
299
|
declare namespace Checkbox {
|
|
17
300
|
var defaultProps: {
|
|
18
301
|
disabled: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { InputHTMLAttributes } from 'react';
|
|
1
|
+
import React, { InputHTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
import { TooltipPosition } from '../../libraries/Tooltips';
|
|
3
3
|
import './Input.scss';
|
|
4
4
|
export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -6,11 +6,11 @@ export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
6
6
|
'tooltip-text'?: string;
|
|
7
7
|
loading?: boolean;
|
|
8
8
|
error?: boolean;
|
|
9
|
-
helperText?:
|
|
10
|
-
label?:
|
|
9
|
+
helperText?: ReactNode;
|
|
10
|
+
label?: ReactNode;
|
|
11
11
|
counter?: boolean;
|
|
12
12
|
maxLength?: number;
|
|
13
|
-
rightObject?:
|
|
13
|
+
rightObject?: ReactNode;
|
|
14
14
|
hideLabelAndHelperText?: boolean;
|
|
15
15
|
forceFocus?: boolean;
|
|
16
16
|
}
|
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Primary: () => React.JSX.Element;
|
|
7
|
+
export declare const PrimaryLabelNode: () => React.JSX.Element;
|
|
7
8
|
export declare const PrimaryFormat: () => React.JSX.Element;
|
|
8
9
|
export declare const RightObject: () => React.JSX.Element;
|
|
9
10
|
export declare const ButtonLoading: () => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { TextareaHTMLAttributes } from 'react';
|
|
1
|
+
import React, { ReactNode, TextareaHTMLAttributes } from 'react';
|
|
2
2
|
import { TooltipPosition } from '../../libraries/Tooltips';
|
|
3
3
|
import './InputArea.scss';
|
|
4
4
|
interface InputAreaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
@@ -9,7 +9,7 @@ interface InputAreaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
error?: boolean;
|
|
11
11
|
helperText?: string;
|
|
12
|
-
label?:
|
|
12
|
+
label?: ReactNode;
|
|
13
13
|
placeholder?: string;
|
|
14
14
|
type?: string;
|
|
15
15
|
counter?: boolean;
|
|
@@ -25,7 +25,7 @@ export default function Modal({ className, compenseColPaddingContent, footer, id
|
|
|
25
25
|
suppressHydrationWarning?: boolean | undefined;
|
|
26
26
|
accessKey?: string | undefined;
|
|
27
27
|
autoFocus?: boolean | undefined;
|
|
28
|
-
contentEditable?: boolean | "
|
|
28
|
+
contentEditable?: boolean | "true" | "false" | "inherit" | undefined;
|
|
29
29
|
contextMenu?: string | undefined;
|
|
30
30
|
dir?: string | undefined;
|
|
31
31
|
draggable?: boolean | "true" | "false" | undefined;
|
|
@@ -39,7 +39,7 @@ export default function Modal({ className, compenseColPaddingContent, footer, id
|
|
|
39
39
|
tabIndex?: number | undefined;
|
|
40
40
|
translate?: "yes" | "no" | undefined;
|
|
41
41
|
radioGroup?: string | undefined;
|
|
42
|
-
role?: "form" | "
|
|
42
|
+
role?: "form" | "button" | "article" | "dialog" | "figure" | "img" | "link" | "main" | "menu" | "menuitem" | "option" | "search" | "table" | "alert" | "alertdialog" | "application" | "banner" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "grid" | "gridcell" | "group" | "heading" | "list" | "listbox" | "listitem" | "log" | "marquee" | "math" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem" | (string & {}) | undefined;
|
|
43
43
|
about?: string | undefined;
|
|
44
44
|
content?: string | undefined;
|
|
45
45
|
datatype?: string | undefined;
|
|
@@ -67,7 +67,7 @@ export default function Modal({ className, compenseColPaddingContent, footer, id
|
|
|
67
67
|
is?: string | undefined;
|
|
68
68
|
"aria-activedescendant"?: string | undefined;
|
|
69
69
|
"aria-atomic"?: boolean | "true" | "false" | undefined;
|
|
70
|
-
"aria-autocomplete"?: "
|
|
70
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
71
71
|
"aria-braillelabel"?: string | undefined;
|
|
72
72
|
"aria-brailleroledescription"?: string | undefined;
|
|
73
73
|
"aria-busy"?: boolean | "true" | "false" | undefined;
|
|
@@ -104,7 +104,7 @@ export default function Modal({ className, compenseColPaddingContent, footer, id
|
|
|
104
104
|
"aria-posinset"?: number | undefined;
|
|
105
105
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
106
106
|
"aria-readonly"?: boolean | "true" | "false" | undefined;
|
|
107
|
-
"aria-relevant"?: "text" | "
|
|
107
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
108
108
|
"aria-required"?: boolean | "true" | "false" | undefined;
|
|
109
109
|
"aria-roledescription"?: string | undefined;
|
|
110
110
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ButtonHTMLAttributes } from 'react';
|
|
2
2
|
import { RadioButtonType } from '../../libraries/RadioButtonTheme';
|
|
3
3
|
import { TooltipPosition } from '../../libraries/Tooltips';
|
|
4
4
|
import './RadioButton.scss';
|
|
5
|
-
interface RadioButtonProps extends Omit<
|
|
5
|
+
interface RadioButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'value' | 'onChange'> {
|
|
6
6
|
id?: string;
|
|
7
7
|
'tooltip-position'?: TooltipPosition;
|
|
8
8
|
'tooltip-text'?: string;
|
|
9
9
|
value: boolean;
|
|
10
10
|
theme?: RadioButtonType;
|
|
11
11
|
onChange?: (value: boolean) => void;
|
|
12
|
+
error?: boolean;
|
|
12
13
|
}
|
|
13
|
-
declare function RadioButton(props: RadioButtonProps): React.JSX.Element;
|
|
14
|
+
declare function RadioButton({ onChange, value, className, theme, error, type, ...props }: RadioButtonProps): React.JSX.Element;
|
|
14
15
|
declare namespace RadioButton {
|
|
15
16
|
var defaultProps: {
|
|
16
17
|
disabled: boolean;
|
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Primary: () => React.JSX.Element;
|
|
7
|
+
export declare const PrimaryError: () => React.JSX.Element;
|
|
7
8
|
export declare const Classic: () => React.JSX.Element;
|
|
8
9
|
export declare const DisabledOn: () => React.JSX.Element;
|
|
9
10
|
export declare const DisabledOff: () => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
import './Search.scss';
|
|
3
3
|
declare type Record = {
|
|
4
4
|
label: string;
|
|
@@ -10,7 +10,7 @@ export interface SearchProps {
|
|
|
10
10
|
onSelect?: any;
|
|
11
11
|
error?: boolean;
|
|
12
12
|
helperText?: string;
|
|
13
|
-
label:
|
|
13
|
+
label: ReactNode;
|
|
14
14
|
placeholder?: string;
|
|
15
15
|
disabled?: boolean;
|
|
16
16
|
value: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
import { TooltipPosition } from '../../libraries/Tooltips';
|
|
3
3
|
import './Select.scss';
|
|
4
4
|
declare type SelectAcceptedTypes = number | string | boolean;
|
|
@@ -17,7 +17,7 @@ export interface SelectProps {
|
|
|
17
17
|
className?: string;
|
|
18
18
|
onChange: (value: any, evt: SelectPostEvent) => void;
|
|
19
19
|
value?: number | string | any[] | boolean | null;
|
|
20
|
-
label?:
|
|
20
|
+
label?: ReactNode;
|
|
21
21
|
placeholder?: string;
|
|
22
22
|
error?: boolean;
|
|
23
23
|
helperText?: string;
|
|
@@ -2,7 +2,7 @@ import React, { HTMLAttributes } from 'react';
|
|
|
2
2
|
import { TooltipPosition } from '../../../../libraries/Tooltips';
|
|
3
3
|
import { CheckboxProps } from '../../../checkbox/Checkbox';
|
|
4
4
|
import './LeftControlWithLabel.scss';
|
|
5
|
-
export interface LeftControlWithLabelElement extends CheckboxProps {
|
|
5
|
+
export interface LeftControlWithLabelElement extends Omit<CheckboxProps, 'type'> {
|
|
6
6
|
label?: React.ReactNode | JSX.Element;
|
|
7
7
|
justifyContent?: never;
|
|
8
8
|
spanProps?: never;
|
|
@@ -15,7 +15,7 @@ export interface SpanPropsExtended extends HTMLAttributes<HTMLSpanElement> {
|
|
|
15
15
|
'tooltip-position'?: TooltipPosition;
|
|
16
16
|
'tooltip-text'?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface LeftControlWithLabelString extends CheckboxProps {
|
|
18
|
+
export interface LeftControlWithLabelString extends Omit<CheckboxProps, 'type'> {
|
|
19
19
|
label?: string;
|
|
20
20
|
justifyContent?: string;
|
|
21
21
|
spanProps?: SpanPropsExtended;
|
|
@@ -24,4 +24,4 @@ export interface LeftControlWithLabelString extends CheckboxProps {
|
|
|
24
24
|
type?: 'checkbox' | 'addRemove';
|
|
25
25
|
w100?: boolean;
|
|
26
26
|
}
|
|
27
|
-
export declare const LeftControlWithLabel: (props: LeftControlWithLabelElement | LeftControlWithLabelString) => React.JSX.Element;
|
|
27
|
+
export declare const LeftControlWithLabel: ({ type, ...props }: LeftControlWithLabelElement | LeftControlWithLabelString) => React.JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Placement } from '@floating-ui/react';
|
|
2
|
+
import React, { ReactNode } from 'react';
|
|
3
|
+
export interface iTooltip {
|
|
4
|
+
label?: ReactNode;
|
|
5
|
+
placement?: Placement;
|
|
6
|
+
fallbackPlacements?: Placement[];
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export default function TooltipElement({ label, placement, fallbackPlacements, children, }: iTooltip): React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import TooltipElement from './TooltipElement';
|
|
3
|
+
declare const meta: Meta<typeof TooltipElement>;
|
|
4
|
+
export default meta;
|
|
5
|
+
declare type Story = StoryObj<typeof TooltipElement>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Element: Story;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CSSProperties, HTMLAttributes } from 'react';
|
|
2
|
+
export interface TypographyProps extends HTMLAttributes<HTMLElement> {
|
|
3
|
+
variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'small';
|
|
4
|
+
focus?: boolean;
|
|
5
|
+
alignment?: CSSProperties['textAlign'];
|
|
6
|
+
color?: 'primary' | 'primary-dark' | 'secondary' | 'default';
|
|
7
|
+
format?: true | {
|
|
8
|
+
active: boolean;
|
|
9
|
+
replacers?: string[];
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
declare const Typography: import("react").ForwardRefExoticComponent<TypographyProps & import("react").RefAttributes<HTMLElement>>;
|
|
13
|
+
export default Typography;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TypographyProps } from './Typography';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: import("react").ForwardRefExoticComponent<TypographyProps & import("react").RefAttributes<HTMLElement>>;
|
|
6
|
+
args: {};
|
|
7
|
+
argTypes: {
|
|
8
|
+
variant: {
|
|
9
|
+
control: string;
|
|
10
|
+
options: ("small" | "body" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | undefined)[];
|
|
11
|
+
};
|
|
12
|
+
color: {
|
|
13
|
+
control: string;
|
|
14
|
+
options: ("default" | "primary" | "secondary" | "primary-dark" | undefined)[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default meta;
|
|
19
|
+
export declare const Default: {
|
|
20
|
+
args: {
|
|
21
|
+
variant: string;
|
|
22
|
+
color: string;
|
|
23
|
+
children: string;
|
|
24
|
+
focus: boolean;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export declare const Formatted: {
|
|
28
|
+
args: {
|
|
29
|
+
variant: string;
|
|
30
|
+
color: string;
|
|
31
|
+
children: string;
|
|
32
|
+
focus: boolean;
|
|
33
|
+
format: {
|
|
34
|
+
active: boolean;
|
|
35
|
+
replacers: string[];
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
};
|