kui-complex 0.0.68 → 0.0.69
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/AutocompleteOption/cjs/index.js +53 -0
- package/AutocompleteOption/cjs/index.js.map +1 -0
- package/AutocompleteOption/cjs/package.json +9 -0
- package/AutocompleteOption/index.d.ts +17 -0
- package/AutocompleteOption/index.js +47 -0
- package/AutocompleteOption/index.js.map +1 -0
- package/AutocompleteOption/package.json +9 -0
- package/InputWithAutocomplete/cjs/index.js +310 -0
- package/InputWithAutocomplete/cjs/index.js.map +1 -0
- package/InputWithAutocomplete/cjs/package.json +10 -0
- package/InputWithAutocomplete/index.d.ts +27 -0
- package/InputWithAutocomplete/index.js +286 -0
- package/InputWithAutocomplete/index.js.map +1 -0
- package/InputWithAutocomplete/package.json +10 -0
- package/Loading/cjs/index.js +72 -0
- package/Loading/cjs/index.js.map +1 -0
- package/Loading/cjs/package.json +9 -0
- package/Loading/index.d.ts +7 -0
- package/Loading/index.js +66 -0
- package/Loading/index.js.map +1 -0
- package/Loading/package.json +9 -0
- package/cjs/index.js +214 -101
- package/cjs/index.js.map +1 -1
- package/index.d.ts +43 -11
- package/index.js +215 -104
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,12 +2,13 @@ import * as React from 'react';
|
|
|
2
2
|
import React__default, { SVGProps, ReactNode, RefObject } from 'react';
|
|
3
3
|
import { DateTime } from 'luxon';
|
|
4
4
|
import * as kui_basic from 'kui-basic';
|
|
5
|
-
import { InputWithAdornmentsProps, InputWithMaskProps as InputWithMaskProps$1, SwitchProps, InputWithCountryDropdownProps, InputProps } from 'kui-basic';
|
|
5
|
+
import { InputWithAdornmentsProps, InputWithMaskProps as InputWithMaskProps$1, SwitchProps, InputWithCountryDropdownProps, InputProps, ModalProps } from 'kui-basic';
|
|
6
6
|
import { UseFormReturn, FieldValues } from 'react-hook-form';
|
|
7
7
|
import * as react_datepicker from 'react-datepicker';
|
|
8
8
|
import * as _emotion_styled from '@emotion/styled';
|
|
9
9
|
import * as _emotion_react from '@emotion/react';
|
|
10
10
|
import { RadioGroupProps } from '@mui/material';
|
|
11
|
+
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
11
12
|
|
|
12
13
|
type AvatarSizes = "s" | "lg"
|
|
13
14
|
|
|
@@ -42,7 +43,7 @@ type ButtonTabProps = {
|
|
|
42
43
|
|
|
43
44
|
declare const ButtonTab: React.ForwardRefExoticComponent<ButtonTabProps & React.RefAttributes<HTMLButtonElement>>;
|
|
44
45
|
|
|
45
|
-
type OptionParams$
|
|
46
|
+
type OptionParams$2<T = any> = {
|
|
46
47
|
label: string | number
|
|
47
48
|
value: T
|
|
48
49
|
disabled?: boolean
|
|
@@ -50,7 +51,7 @@ type OptionParams$1<T = any> = {
|
|
|
50
51
|
|
|
51
52
|
interface InputSelectProps<T = any>
|
|
52
53
|
extends Omit<InputWithAdornmentsProps, "form"> {
|
|
53
|
-
options?: OptionParams$
|
|
54
|
+
options?: OptionParams$2<T>[]
|
|
54
55
|
handleChange?: (value: T) => void
|
|
55
56
|
isLoading?: boolean
|
|
56
57
|
form?: UseFormReturn<any>
|
|
@@ -61,7 +62,7 @@ type CalendarHeaderProps$1 = {
|
|
|
61
62
|
changeYear(year: number | string): void
|
|
62
63
|
changeMonth(month: number | string): void
|
|
63
64
|
date: Date
|
|
64
|
-
yearOptions: OptionParams$
|
|
65
|
+
yearOptions: OptionParams$2[]
|
|
65
66
|
max?: DateTime
|
|
66
67
|
min?: DateTime
|
|
67
68
|
}
|
|
@@ -140,13 +141,13 @@ interface InputWithControllerProps
|
|
|
140
141
|
declare const InputPassword: React.ForwardRefExoticComponent<InputWithControllerProps & React.RefAttributes<HTMLInputElement>>;
|
|
141
142
|
|
|
142
143
|
type InputSelectDropdownProps = {
|
|
143
|
-
options: OptionParams$
|
|
144
|
+
options: OptionParams$2[]
|
|
144
145
|
inputRef: RefObject<HTMLInputElement | HTMLDivElement>
|
|
145
146
|
isOpenDropdown: boolean
|
|
146
147
|
handleCloseDropdown: () => void
|
|
147
148
|
handleSelect: (item: any) => void
|
|
148
149
|
selectedValue?: string | number | FieldValues
|
|
149
|
-
renderOption: (option: OptionParams$
|
|
150
|
+
renderOption: (option: OptionParams$2, selectedValue?: any) => ReactNode
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
declare const InputSelectDropdown: React.ForwardRefExoticComponent<InputSelectDropdownProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -243,7 +244,7 @@ declare const SelectMonth: React.ForwardRefExoticComponent<Pick<{
|
|
|
243
244
|
} & InputSelectProps<any>, "label" | "size" | "color" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "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" | "children" | "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" | "form" | "pattern" | "height" | "width" | "list" | "step" | "alt" | "crossOrigin" | "src" | "type" | "endIcon" | "startIcon" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "options" | "inputRef" | "handleChange" | "iconProps" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "readOnly" | "required" | "cornerLabel" | "isTextArea" | "inputStyles" | "labelStyles" | "messageClassName" | "labelInlineStyles" | "message" | "messageVariant" | "inputValue" | "isLoading"> & React.RefAttributes<HTMLInputElement>>;
|
|
244
245
|
|
|
245
246
|
declare const SelectYear: React.ForwardRefExoticComponent<Pick<{
|
|
246
|
-
yearOptions: OptionParams$
|
|
247
|
+
yearOptions: OptionParams$2<any>[];
|
|
247
248
|
min?: number | undefined;
|
|
248
249
|
max?: number | undefined;
|
|
249
250
|
} & InputSelectProps<any>, "label" | "size" | "color" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "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" | "children" | "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" | "form" | "pattern" | "height" | "width" | "list" | "step" | "alt" | "crossOrigin" | "src" | "type" | "endIcon" | "startIcon" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "options" | "inputRef" | "handleChange" | "iconProps" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "readOnly" | "required" | "cornerLabel" | "isTextArea" | "inputStyles" | "labelStyles" | "messageClassName" | "labelInlineStyles" | "message" | "messageVariant" | "inputValue" | "yearOptions" | "isLoading"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -312,17 +313,17 @@ type ButtonSelectProps = InputSelectProps
|
|
|
312
313
|
|
|
313
314
|
declare const ButtonSelect: React__default.ForwardRefExoticComponent<Pick<ButtonSelectProps, "label" | "size" | "color" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "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" | "children" | "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" | "form" | "pattern" | "height" | "width" | "list" | "step" | "alt" | "crossOrigin" | "src" | "type" | "endIcon" | "startIcon" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "options" | "inputRef" | "handleChange" | "iconProps" | "accept" | "autoComplete" | "capture" | "checked" | "enterKeyHint" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "readOnly" | "required" | "cornerLabel" | "isTextArea" | "inputStyles" | "labelStyles" | "messageClassName" | "labelInlineStyles" | "message" | "messageVariant" | "inputValue" | "isLoading"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
314
315
|
|
|
315
|
-
type OptionParams = {
|
|
316
|
+
type OptionParams$1 = {
|
|
316
317
|
label: string | number
|
|
317
318
|
value: string | number
|
|
318
319
|
disabled?: boolean
|
|
319
320
|
}
|
|
320
321
|
|
|
321
322
|
type InputSelectBaseProps<TFormValues> = {
|
|
322
|
-
options: OptionParams[]
|
|
323
|
+
options: OptionParams$1[]
|
|
323
324
|
handleChange: (value: number | string) => void
|
|
324
325
|
iconProps?: SVGProps
|
|
325
|
-
renderOption: (option: OptionParams) => void
|
|
326
|
+
renderOption: (option: OptionParams$1) => void
|
|
326
327
|
selectedLabel?: string
|
|
327
328
|
selectedValue?: any
|
|
328
329
|
error?: string
|
|
@@ -374,4 +375,35 @@ type RadioGroupWithLabelProps<TFormValues> = {
|
|
|
374
375
|
|
|
375
376
|
declare function RadioGroupWithLabel<TFormValues extends object>(props: RadioGroupWithLabelProps<TFormValues>): JSX.Element;
|
|
376
377
|
|
|
377
|
-
|
|
378
|
+
type InputWithAutoCompleteProps<T, U> = {
|
|
379
|
+
renderOption: (option: U) => ReactNode
|
|
380
|
+
options: U[] | any
|
|
381
|
+
hideName?: string
|
|
382
|
+
onSelectItem: (item: U) => void
|
|
383
|
+
isLoading?: boolean
|
|
384
|
+
handleScrollEnd?: () => void
|
|
385
|
+
onSearchItem?: (value: string) => void
|
|
386
|
+
isLabelLoading?: boolean
|
|
387
|
+
creatingLabel?: string
|
|
388
|
+
renderCreatingModal?: (props: ModalProps) => ReactNode
|
|
389
|
+
endComponent?: ReactNode
|
|
390
|
+
inputRef?: RefObject<HTMLInputElement>
|
|
391
|
+
} & InputProps<T>
|
|
392
|
+
|
|
393
|
+
type OptionParams = {
|
|
394
|
+
id: number
|
|
395
|
+
id_ml?: number
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
declare function InputWithAutocomplete<T extends object, U extends OptionParams>({ renderOption, options, name, hideName, form, isLoading, onSelectItem, handleScrollEnd, onSearchItem, isLabelLoading, disabled, creatingLabel, renderCreatingModal, endComponent, inputRef: inputRefProps, ...inputProps }: InputWithAutoCompleteProps<T, U>): _emotion_react_jsx_runtime.JSX.Element;
|
|
399
|
+
|
|
400
|
+
type AutocompleteOptionProps<T> = {
|
|
401
|
+
renderOption: (option: T) => ReactNode
|
|
402
|
+
option: T
|
|
403
|
+
handleSelect: (option: T) => void
|
|
404
|
+
index: number
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
declare const AutocompleteOption: <T extends OptionParams>(props: AutocompleteOptionProps<T>) => JSX.Element;
|
|
408
|
+
|
|
409
|
+
export { AutocompleteOption, Avatar, ButtonSelect, ButtonTab, ButtonsPanel, CalendarHeaderWithSelect, CalendarStandardContainer, CalendarStandardHeader, DesktopInputWithMonthPicker, DesktopMenuPanel, InputDropdown, InputForDatepicker, InputMultiSelect, InputPassword, InputPhoneWithForm, InputSelect, InputSelectDropdown, InputSelectWithController, InputTextAreaMobile, InputWithAutocomplete, InputWithController, InputWithDatePicker, InputWithMask, InputWithMonthPicker, MenuItem, MenuPanel, MobileInputWithMonthPicker, MobileMenuPanel, MonthPickerContainer, MonthPickerHeader, PassportStrengthBar, RadioButtons, RadioButtonsWithController, RadioGroupWithLabel, SelectMonth, SelectYear, Switch, Table, TableCell, TableHeadCell, TableRow, Tooltip, UndefinedAvatar };
|