@alfalab/core-components-input-autocomplete 7.5.0 → 7.5.1
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/Component-7ca84eff.d.ts +12 -0
- package/Component.d.ts +3 -3
- package/Component.js +1 -1
- package/Component.mobile.d.ts +1 -1
- package/Component.mobile.js +1 -1
- package/autocomplete-field/Component.js +1 -1
- package/autocomplete-field/index.js +1 -1
- package/autocomplete-mobile-field/Component.js +1 -1
- package/autocomplete-mobile-field/index.js +1 -1
- package/cssm/Component-7ca84eff.d.ts +12 -0
- package/cssm/getDataTestId-3fe0d3e6.d.ts +2 -0
- package/cssm/index-7ca84eff.d.ts +1 -0
- package/esm/Component-7ca84eff.d.ts +12 -0
- package/esm/Component.js +1 -1
- package/esm/Component.mobile.js +1 -1
- package/esm/autocomplete-field/Component.js +1 -1
- package/esm/autocomplete-field/index.js +1 -1
- package/esm/autocomplete-mobile-field/Component.js +1 -1
- package/esm/autocomplete-mobile-field/index.js +1 -1
- package/esm/getDataTestId-3fe0d3e6.d.ts +2 -0
- package/esm/index-7ca84eff.d.ts +1 -0
- package/esm/index.js +1 -1
- package/esm/mobile.js +1 -1
- package/esm/{tslib.es6-6d311a07.d.ts → tslib.es6-260b8f6a.d.ts} +0 -0
- package/esm/{tslib.es6-6d311a07.js → tslib.es6-260b8f6a.js} +0 -0
- package/getDataTestId-3fe0d3e6.d.ts +2 -0
- package/index-7ca84eff.d.ts +1 -0
- package/index.js +1 -1
- package/mobile.js +1 -1
- package/modern/Component-7ca84eff.d.ts +12 -0
- package/modern/getDataTestId-3fe0d3e6.d.ts +2 -0
- package/modern/index-7ca84eff.d.ts +1 -0
- package/package.json +2 -2
- package/{tslib.es6-4ec9e5d1.d.ts → tslib.es6-66d5a0c3.d.ts} +0 -0
- package/{tslib.es6-4ec9e5d1.js → tslib.es6-66d5a0c3.js} +0 -0
- package/CHANGELOG.md +0 -820
package/Component-7ca84eff.d.ts
CHANGED
|
@@ -39,6 +39,10 @@ type CloserProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
39
39
|
* Размер кнопки
|
|
40
40
|
*/
|
|
41
41
|
size?: IconButtonProps["size"];
|
|
42
|
+
/**
|
|
43
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
44
|
+
*/
|
|
45
|
+
dataTestId?: string;
|
|
42
46
|
/**
|
|
43
47
|
* Иконка
|
|
44
48
|
*/
|
|
@@ -158,6 +162,10 @@ type BackerProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
158
162
|
* Иконка
|
|
159
163
|
*/
|
|
160
164
|
icon?: ElementType;
|
|
165
|
+
/**
|
|
166
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
167
|
+
*/
|
|
168
|
+
dataTestId?: string;
|
|
161
169
|
/**
|
|
162
170
|
* Обработчик нажатия
|
|
163
171
|
*/
|
|
@@ -218,6 +226,10 @@ type HeaderProps = {
|
|
|
218
226
|
* Фиксирует шапку
|
|
219
227
|
*/
|
|
220
228
|
sticky?: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
231
|
+
*/
|
|
232
|
+
dataTestId?: string;
|
|
221
233
|
/**
|
|
222
234
|
* Обработчик нажатия на стрелку назад
|
|
223
235
|
*/
|
package/Component.d.ts
CHANGED
|
@@ -33,11 +33,11 @@ type InputAutocompleteProps = Omit<BaseSelectProps, 'Field' | 'nativeSelect'> &
|
|
|
33
33
|
*/
|
|
34
34
|
updatePopover?: BaseSelectProps['updatePopover'];
|
|
35
35
|
};
|
|
36
|
-
declare const InputAutocomplete: React.ForwardRefExoticComponent<Pick<BaseSelectProps, "
|
|
36
|
+
declare const InputAutocomplete: React.ForwardRefExoticComponent<Pick<BaseSelectProps, "className" | "dataTestId" | "label" | "size" | "block" | "id" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "onScroll" | "disabled" | "name" | "fieldClassName" | "error" | "hint" | "multiple" | "preventFlip" | "popperClassName" | "open" | "options" | "selected" | "valueRenderer" | "Optgroup" | "optionsListWidth" | "visibleOptions" | "Arrow" | "optionGroupClassName" | "Option" | "optionsListClassName" | "optionClassName" | "autocomplete" | "allowUnselect" | "closeOnSelect" | "circularNavigation" | "defaultOpen" | "popoverPosition" | "optionsSize" | "fieldProps" | "optionsListProps" | "optionProps" | "onOpen" | "OptionsList" | "updatePopover" | "zIndexPopover" | "showEmptyOptionsList"> & {
|
|
37
37
|
/**
|
|
38
38
|
* Компонент ввода значения
|
|
39
39
|
*/
|
|
40
|
-
Input?: React.FC<Pick<React.InputHTMLAttributes<HTMLInputElement>, "className" | "
|
|
40
|
+
Input?: React.FC<Pick<React.InputHTMLAttributes<HTMLInputElement>, "className" | "form" | "slot" | "style" | "title" | "pattern" | "children" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "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" | "list" | "step" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "accept" | "alt" | "autoComplete" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "height" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "readOnly" | "required" | "src" | "width"> & {
|
|
41
41
|
value?: string | undefined;
|
|
42
42
|
defaultValue?: string | undefined;
|
|
43
43
|
block?: boolean | undefined;
|
|
@@ -72,7 +72,7 @@ declare const InputAutocomplete: React.ForwardRefExoticComponent<Pick<BaseSelect
|
|
|
72
72
|
/**
|
|
73
73
|
* Пропсы, которые будут прокинуты в инпут
|
|
74
74
|
*/
|
|
75
|
-
inputProps?: (Pick<React.InputHTMLAttributes<HTMLInputElement>, "className" | "
|
|
75
|
+
inputProps?: (Pick<React.InputHTMLAttributes<HTMLInputElement>, "className" | "form" | "slot" | "style" | "title" | "pattern" | "children" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "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" | "list" | "step" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "accept" | "alt" | "autoComplete" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "height" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "readOnly" | "required" | "src" | "width"> & {
|
|
76
76
|
value?: string | undefined;
|
|
77
77
|
defaultValue?: string | undefined;
|
|
78
78
|
block?: boolean | undefined;
|
package/Component.js
CHANGED
package/Component.mobile.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ type InputAutocompleteMobileProps = Omit<BaseSelectProps, 'OptionsList' | 'Check
|
|
|
46
46
|
*/
|
|
47
47
|
cancelButtonProps?: ButtonProps;
|
|
48
48
|
};
|
|
49
|
-
declare const InputAutocompleteMobile: React.ForwardRefExoticComponent<Pick<BaseSelectProps, "
|
|
49
|
+
declare const InputAutocompleteMobile: React.ForwardRefExoticComponent<Pick<BaseSelectProps, "className" | "dataTestId" | "label" | "size" | "block" | "id" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "disabled" | "name" | "fieldClassName" | "error" | "hint" | "preventFlip" | "popperClassName" | "open" | "options" | "Optgroup" | "optionsListWidth" | "visibleOptions" | "Arrow" | "optionGroupClassName" | "Option" | "optionsListClassName" | "optionClassName" | "closeOnSelect" | "circularNavigation" | "defaultOpen" | "popoverPosition" | "optionsSize" | "fieldProps" | "optionsListProps" | "optionProps" | "onOpen" | "Field" | "updatePopover" | "zIndexPopover" | "showEmptyOptionsList"> & {
|
|
50
50
|
/**
|
|
51
51
|
* Обработчик выбора
|
|
52
52
|
*/
|
package/Component.mobile.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('./tslib.es6-
|
|
5
|
+
var tslib_es6 = require('./tslib.es6-66d5a0c3.js');
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var mergeRefs = require('react-merge-refs');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-66d5a0c3.js');
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var mergeRefs = require('react-merge-refs');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-66d5a0c3.js');
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var hooks = require('@alfalab/hooks');
|
|
@@ -39,6 +39,10 @@ type CloserProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
39
39
|
* Размер кнопки
|
|
40
40
|
*/
|
|
41
41
|
size?: IconButtonProps["size"];
|
|
42
|
+
/**
|
|
43
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
44
|
+
*/
|
|
45
|
+
dataTestId?: string;
|
|
42
46
|
/**
|
|
43
47
|
* Иконка
|
|
44
48
|
*/
|
|
@@ -158,6 +162,10 @@ type BackerProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
158
162
|
* Иконка
|
|
159
163
|
*/
|
|
160
164
|
icon?: ElementType;
|
|
165
|
+
/**
|
|
166
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
167
|
+
*/
|
|
168
|
+
dataTestId?: string;
|
|
161
169
|
/**
|
|
162
170
|
* Обработчик нажатия
|
|
163
171
|
*/
|
|
@@ -218,6 +226,10 @@ type HeaderProps = {
|
|
|
218
226
|
* Фиксирует шапку
|
|
219
227
|
*/
|
|
220
228
|
sticky?: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
231
|
+
*/
|
|
232
|
+
dataTestId?: string;
|
|
221
233
|
/**
|
|
222
234
|
* Обработчик нажатия на стрелку назад
|
|
223
235
|
*/
|
package/cssm/index-7ca84eff.d.ts
CHANGED
|
@@ -193,3 +193,4 @@ type SwipeableBackdropProps = BackdropProps & {
|
|
|
193
193
|
};
|
|
194
194
|
declare const SwipeableBackdrop: FC<SwipeableBackdropProps>;
|
|
195
195
|
export { BottomSheetTitleAlign, BottomSheetProps, HEADER_OFFSET, CLOSE_OFFSET, BottomSheet, FooterProps, Footer, SwipeableBackdropProps, SwipeableBackdrop };
|
|
196
|
+
export * from "./getDataTestId-3fe0d3e6";
|
|
@@ -39,6 +39,10 @@ type CloserProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
39
39
|
* Размер кнопки
|
|
40
40
|
*/
|
|
41
41
|
size?: IconButtonProps["size"];
|
|
42
|
+
/**
|
|
43
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
44
|
+
*/
|
|
45
|
+
dataTestId?: string;
|
|
42
46
|
/**
|
|
43
47
|
* Иконка
|
|
44
48
|
*/
|
|
@@ -158,6 +162,10 @@ type BackerProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
158
162
|
* Иконка
|
|
159
163
|
*/
|
|
160
164
|
icon?: ElementType;
|
|
165
|
+
/**
|
|
166
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
167
|
+
*/
|
|
168
|
+
dataTestId?: string;
|
|
161
169
|
/**
|
|
162
170
|
* Обработчик нажатия
|
|
163
171
|
*/
|
|
@@ -218,6 +226,10 @@ type HeaderProps = {
|
|
|
218
226
|
* Фиксирует шапку
|
|
219
227
|
*/
|
|
220
228
|
sticky?: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
231
|
+
*/
|
|
232
|
+
dataTestId?: string;
|
|
221
233
|
/**
|
|
222
234
|
* Обработчик нажатия на стрелку назад
|
|
223
235
|
*/
|
package/esm/Component.js
CHANGED
package/esm/Component.mobile.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __rest, a as __assign } from './tslib.es6-
|
|
1
|
+
import { _ as __rest, a as __assign } from './tslib.es6-260b8f6a.js';
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import React, { useState, useRef, useMemo } from 'react';
|
|
4
4
|
import mergeRefs from 'react-merge-refs';
|
package/esm/index-7ca84eff.d.ts
CHANGED
|
@@ -193,3 +193,4 @@ type SwipeableBackdropProps = BackdropProps & {
|
|
|
193
193
|
};
|
|
194
194
|
declare const SwipeableBackdrop: FC<SwipeableBackdropProps>;
|
|
195
195
|
export { BottomSheetTitleAlign, BottomSheetProps, HEADER_OFFSET, CLOSE_OFFSET, BottomSheet, FooterProps, Footer, SwipeableBackdropProps, SwipeableBackdrop };
|
|
196
|
+
export * from "./getDataTestId-3fe0d3e6";
|
package/esm/index.js
CHANGED
package/esm/mobile.js
CHANGED
|
File without changes
|
|
File without changes
|
package/index-7ca84eff.d.ts
CHANGED
|
@@ -193,3 +193,4 @@ type SwipeableBackdropProps = BackdropProps & {
|
|
|
193
193
|
};
|
|
194
194
|
declare const SwipeableBackdrop: FC<SwipeableBackdropProps>;
|
|
195
195
|
export { BottomSheetTitleAlign, BottomSheetProps, HEADER_OFFSET, CLOSE_OFFSET, BottomSheet, FooterProps, Footer, SwipeableBackdropProps, SwipeableBackdrop };
|
|
196
|
+
export * from "./getDataTestId-3fe0d3e6";
|
package/index.js
CHANGED
package/mobile.js
CHANGED
|
@@ -39,6 +39,10 @@ type CloserProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
39
39
|
* Размер кнопки
|
|
40
40
|
*/
|
|
41
41
|
size?: IconButtonProps["size"];
|
|
42
|
+
/**
|
|
43
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
44
|
+
*/
|
|
45
|
+
dataTestId?: string;
|
|
42
46
|
/**
|
|
43
47
|
* Иконка
|
|
44
48
|
*/
|
|
@@ -158,6 +162,10 @@ type BackerProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
158
162
|
* Иконка
|
|
159
163
|
*/
|
|
160
164
|
icon?: ElementType;
|
|
165
|
+
/**
|
|
166
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
167
|
+
*/
|
|
168
|
+
dataTestId?: string;
|
|
161
169
|
/**
|
|
162
170
|
* Обработчик нажатия
|
|
163
171
|
*/
|
|
@@ -218,6 +226,10 @@ type HeaderProps = {
|
|
|
218
226
|
* Фиксирует шапку
|
|
219
227
|
*/
|
|
220
228
|
sticky?: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
231
|
+
*/
|
|
232
|
+
dataTestId?: string;
|
|
221
233
|
/**
|
|
222
234
|
* Обработчик нажатия на стрелку назад
|
|
223
235
|
*/
|
|
@@ -193,3 +193,4 @@ type SwipeableBackdropProps = BackdropProps & {
|
|
|
193
193
|
};
|
|
194
194
|
declare const SwipeableBackdrop: FC<SwipeableBackdropProps>;
|
|
195
195
|
export { BottomSheetTitleAlign, BottomSheetProps, HEADER_OFFSET, CLOSE_OFFSET, BottomSheet, FooterProps, Footer, SwipeableBackdropProps, SwipeableBackdrop };
|
|
196
|
+
export * from "./getDataTestId-3fe0d3e6";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-input-autocomplete",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@alfalab/core-components-button": "^5.3.0",
|
|
21
21
|
"@alfalab/core-components-form-control": "^7.6.0",
|
|
22
22
|
"@alfalab/core-components-input": "^9.1.0",
|
|
23
|
-
"@alfalab/core-components-select": "^11.1.
|
|
23
|
+
"@alfalab/core-components-select": "^11.1.1",
|
|
24
24
|
"@alfalab/hooks": "^1.4.1",
|
|
25
25
|
"classnames": "^2.3.1",
|
|
26
26
|
"lodash.throttle": "^4.1.1",
|
|
File without changes
|
|
File without changes
|
package/CHANGELOG.md
DELETED
|
@@ -1,820 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [7.5.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.9...@alfalab/core-components-input-autocomplete@7.5.0) (2022-08-04)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* react 18 support ([#159](https://github.com/core-ds/core-components/issues/159)) ([2e6693c](https://github.com/core-ds/core-components/commit/2e6693c62f534e333aadb7d3fff4ffd78ac84c63))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [7.4.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.8...@alfalab/core-components-input-autocomplete@7.4.9) (2022-07-25)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [7.4.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.7...@alfalab/core-components-input-autocomplete@7.4.8) (2022-07-25)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## [7.4.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.6...@alfalab/core-components-input-autocomplete@7.4.7) (2022-07-18)
|
|
34
|
-
|
|
35
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## [7.4.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.5...@alfalab/core-components-input-autocomplete@7.4.6) (2022-07-18)
|
|
42
|
-
|
|
43
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [7.4.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.4...@alfalab/core-components-input-autocomplete@7.4.5) (2022-07-15)
|
|
50
|
-
|
|
51
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [7.4.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.3...@alfalab/core-components-input-autocomplete@7.4.4) (2022-07-15)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* bump packages version ([#153](https://github.com/core-ds/core-components/issues/153)) ([fd3e082](https://github.com/core-ds/core-components/commit/fd3e08205672129cdce04e1000c673f2cd9c10da))
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
## [7.4.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.2...@alfalab/core-components-input-autocomplete@7.4.3) (2022-07-14)
|
|
69
|
-
|
|
70
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
## [7.4.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.1...@alfalab/core-components-input-autocomplete@7.4.2) (2022-07-14)
|
|
77
|
-
|
|
78
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## [7.4.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.4.0...@alfalab/core-components-input-autocomplete@7.4.1) (2022-07-11)
|
|
85
|
-
|
|
86
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
# [7.4.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.5...@alfalab/core-components-input-autocomplete@7.4.0) (2022-07-01)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
### Features
|
|
96
|
-
|
|
97
|
-
* **select:** add select-modal-mobile ([#47](https://github.com/core-ds/core-components/issues/47)) ([5ec4268](https://github.com/core-ds/core-components/commit/5ec42688065bb279d721541ec21bde242675ab8a))
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
## [7.3.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.4...@alfalab/core-components-input-autocomplete@7.3.5) (2022-06-30)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
## [7.3.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.3...@alfalab/core-components-input-autocomplete@7.3.4) (2022-06-29)
|
|
112
|
-
|
|
113
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
## [7.3.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.2...@alfalab/core-components-input-autocomplete@7.3.3) (2022-06-28)
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
### Bug Fixes
|
|
123
|
-
|
|
124
|
-
* **input-autocomplete:** fixed onChange type ([#110](https://github.com/core-ds/core-components/issues/110)) ([c994661](https://github.com/core-ds/core-components/commit/c9946615af9aecb3f1974c887bdd6686708ac18e))
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
## [7.3.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.1...@alfalab/core-components-input-autocomplete@7.3.2) (2022-06-24)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
### Bug Fixes
|
|
134
|
-
|
|
135
|
-
* **icon-button:** fix disabled colors ([#104](https://github.com/core-ds/core-components/issues/104)) ([3f03849](https://github.com/core-ds/core-components/commit/3f038495bb63f72cd81ceeedbe55b52119581d57))
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
## [7.3.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.3.0...@alfalab/core-components-input-autocomplete@7.3.1) (2022-06-23)
|
|
142
|
-
|
|
143
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
# [7.3.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.2.7...@alfalab/core-components-input-autocomplete@7.3.0) (2022-06-20)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
### Features
|
|
153
|
-
|
|
154
|
-
* **input-autocomplete:** add new component InputAutocompleteMobile ([#96](https://github.com/core-ds/core-components/issues/96)) ([a0e9f95](https://github.com/core-ds/core-components/commit/a0e9f95edbfcd6722e99647d75a262805e81a4a7))
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## [7.2.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.2.6...@alfalab/core-components-input-autocomplete@7.2.7) (2022-06-20)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
## [7.2.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.2.5...@alfalab/core-components-input-autocomplete@7.2.6) (2022-06-16)
|
|
169
|
-
|
|
170
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
## [7.2.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.2.4...@alfalab/core-components-input-autocomplete@7.2.5) (2022-06-08)
|
|
177
|
-
|
|
178
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
## [7.2.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.2.3...@alfalab/core-components-input-autocomplete@7.2.4) (2022-06-03)
|
|
185
|
-
|
|
186
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
## [7.1.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.5...@alfalab/core-components-input-autocomplete@7.1.6) (2022-03-29)
|
|
193
|
-
|
|
194
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
## [7.1.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.4...@alfalab/core-components-input-autocomplete@7.1.5) (2022-03-24)
|
|
201
|
-
|
|
202
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
## [7.1.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.3...@alfalab/core-components-input-autocomplete@7.1.4) (2022-03-04)
|
|
209
|
-
|
|
210
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
## [7.1.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.2...@alfalab/core-components-input-autocomplete@7.1.3) (2022-03-04)
|
|
217
|
-
|
|
218
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
## [7.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.1...@alfalab/core-components-input-autocomplete@7.1.2) (2022-03-03)
|
|
225
|
-
|
|
226
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
## [7.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.1.0...@alfalab/core-components-input-autocomplete@7.1.1) (2022-03-01)
|
|
233
|
-
|
|
234
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
# [7.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.32...@alfalab/core-components-input-autocomplete@7.1.0) (2022-02-21)
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
### Features
|
|
244
|
-
|
|
245
|
-
* Исправить импорты в сторях. ([#998](https://github.com/core-ds/core-components/issues/998)) ([e6a654a](https://github.com/core-ds/core-components/commit/e6a654a0599451c7d149484cb61d8067eed083b7))
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
## [7.0.32](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.31...@alfalab/core-components-input-autocomplete@7.0.32) (2022-02-17)
|
|
252
|
-
|
|
253
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
## [7.0.31](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.30...@alfalab/core-components-input-autocomplete@7.0.31) (2022-02-15)
|
|
260
|
-
|
|
261
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
## [7.0.30](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.29...@alfalab/core-components-input-autocomplete@7.0.30) (2022-02-09)
|
|
268
|
-
|
|
269
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
## [7.0.29](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.28...@alfalab/core-components-input-autocomplete@7.0.29) (2022-02-03)
|
|
276
|
-
|
|
277
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
## [7.0.28](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.27...@alfalab/core-components-input-autocomplete@7.0.28) (2022-02-02)
|
|
284
|
-
|
|
285
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
## [7.0.27](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.26...@alfalab/core-components-input-autocomplete@7.0.27) (2022-01-27)
|
|
292
|
-
|
|
293
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
## [7.0.26](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.25...@alfalab/core-components-input-autocomplete@7.0.26) (2021-12-29)
|
|
300
|
-
|
|
301
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## [7.0.25](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.24...@alfalab/core-components-input-autocomplete@7.0.25) (2021-12-14)
|
|
308
|
-
|
|
309
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
## [7.0.24](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.23...@alfalab/core-components-input-autocomplete@7.0.24) (2021-12-08)
|
|
316
|
-
|
|
317
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
## [7.0.23](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.22...@alfalab/core-components-input-autocomplete@7.0.23) (2021-12-08)
|
|
324
|
-
|
|
325
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
## [7.0.22](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.21...@alfalab/core-components-input-autocomplete@7.0.22) (2021-12-08)
|
|
332
|
-
|
|
333
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
## [7.0.21](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.20...@alfalab/core-components-input-autocomplete@7.0.21) (2021-12-01)
|
|
340
|
-
|
|
341
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
## [7.0.20](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.19...@alfalab/core-components-input-autocomplete@7.0.20) (2021-11-26)
|
|
348
|
-
|
|
349
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
## [7.0.19](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.18...@alfalab/core-components-input-autocomplete@7.0.19) (2021-11-16)
|
|
356
|
-
|
|
357
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
## [7.0.18](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.17...@alfalab/core-components-input-autocomplete@7.0.18) (2021-11-08)
|
|
364
|
-
|
|
365
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
## [7.0.17](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.16...@alfalab/core-components-input-autocomplete@7.0.17) (2021-10-15)
|
|
372
|
-
|
|
373
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
## [7.0.16](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.15...@alfalab/core-components-input-autocomplete@7.0.16) (2021-10-15)
|
|
380
|
-
|
|
381
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
## [7.0.15](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.14...@alfalab/core-components-input-autocomplete@7.0.15) (2021-10-11)
|
|
388
|
-
|
|
389
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
## [7.0.14](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.13...@alfalab/core-components-input-autocomplete@7.0.14) (2021-09-27)
|
|
396
|
-
|
|
397
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
## [7.0.13](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.12...@alfalab/core-components-input-autocomplete@7.0.13) (2021-09-14)
|
|
404
|
-
|
|
405
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
## [7.0.12](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.11...@alfalab/core-components-input-autocomplete@7.0.12) (2021-09-08)
|
|
412
|
-
|
|
413
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
## [7.0.11](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.10...@alfalab/core-components-input-autocomplete@7.0.11) (2021-09-06)
|
|
420
|
-
|
|
421
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
## [7.0.10](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.9...@alfalab/core-components-input-autocomplete@7.0.10) (2021-08-27)
|
|
428
|
-
|
|
429
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
## [7.0.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.8...@alfalab/core-components-input-autocomplete@7.0.9) (2021-08-23)
|
|
436
|
-
|
|
437
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
## [7.0.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.7...@alfalab/core-components-input-autocomplete@7.0.8) (2021-08-23)
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
### Bug Fixes
|
|
447
|
-
|
|
448
|
-
* **input:** smart error icon ([#746](https://github.com/core-ds/core-components/issues/746)) ([f1950d6](https://github.com/core-ds/core-components/commit/f1950d6d516d17d993f0865c10390b6301bb2707)), closes [#782](https://github.com/core-ds/core-components/issues/782)
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
## [7.0.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.6...@alfalab/core-components-input-autocomplete@7.0.7) (2021-08-13)
|
|
455
|
-
|
|
456
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
## [7.0.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.5...@alfalab/core-components-input-autocomplete@7.0.6) (2021-08-11)
|
|
463
|
-
|
|
464
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
## [7.0.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.4...@alfalab/core-components-input-autocomplete@7.0.5) (2021-08-04)
|
|
471
|
-
|
|
472
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
## [7.0.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.3...@alfalab/core-components-input-autocomplete@7.0.4) (2021-08-03)
|
|
479
|
-
|
|
480
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
## [7.0.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.2...@alfalab/core-components-input-autocomplete@7.0.3) (2021-07-23)
|
|
487
|
-
|
|
488
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
## [7.0.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.1...@alfalab/core-components-input-autocomplete@7.0.2) (2021-07-19)
|
|
495
|
-
|
|
496
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
## [7.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@7.0.0...@alfalab/core-components-input-autocomplete@7.0.1) (2021-07-09)
|
|
503
|
-
|
|
504
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
# [7.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.8...@alfalab/core-components-input-autocomplete@7.0.0) (2021-07-08)
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
### Features
|
|
514
|
-
|
|
515
|
-
* upgrade storybook ([#696](https://github.com/core-ds/core-components/issues/696))
|
|
516
|
-
|
|
517
|
-
## [6.1.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.7...@alfalab/core-components-input-autocomplete@6.1.8) (2021-06-28)
|
|
518
|
-
|
|
519
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
## [6.1.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.6...@alfalab/core-components-input-autocomplete@6.1.7) (2021-06-22)
|
|
526
|
-
|
|
527
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
## [6.1.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.5...@alfalab/core-components-input-autocomplete@6.1.6) (2021-06-08)
|
|
534
|
-
|
|
535
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
## [6.1.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.4...@alfalab/core-components-input-autocomplete@6.1.5) (2021-06-04)
|
|
542
|
-
|
|
543
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
## [6.1.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.3...@alfalab/core-components-input-autocomplete@6.1.4) (2021-05-31)
|
|
550
|
-
|
|
551
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
## [6.1.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.2...@alfalab/core-components-input-autocomplete@6.1.3) (2021-05-25)
|
|
558
|
-
|
|
559
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
## [6.1.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.1...@alfalab/core-components-input-autocomplete@6.1.2) (2021-05-25)
|
|
566
|
-
|
|
567
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
## [6.1.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.1.0...@alfalab/core-components-input-autocomplete@6.1.1) (2021-05-18)
|
|
574
|
-
|
|
575
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
# [6.1.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.19...@alfalab/core-components-input-autocomplete@6.1.0) (2021-05-07)
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
### Features
|
|
585
|
-
|
|
586
|
-
* **intl-phone-input:** add autocomplete ([#630](https://github.com/core-ds/core-components/issues/630)) ([18b5714](https://github.com/core-ds/core-components/commit/18b57143ede6bf5e9fcd7d460b4859c6d86c026b))
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
## [6.0.19](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.18...@alfalab/core-components-input-autocomplete@6.0.19) (2021-04-28)
|
|
593
|
-
|
|
594
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
## [6.0.18](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.17...@alfalab/core-components-input-autocomplete@6.0.18) (2021-04-26)
|
|
601
|
-
|
|
602
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
## [6.0.17](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.16...@alfalab/core-components-input-autocomplete@6.0.17) (2021-04-26)
|
|
609
|
-
|
|
610
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
## [6.0.16](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.15...@alfalab/core-components-input-autocomplete@6.0.16) (2021-04-26)
|
|
617
|
-
|
|
618
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
## [6.0.15](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.14...@alfalab/core-components-input-autocomplete@6.0.15) (2021-04-09)
|
|
625
|
-
|
|
626
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
## [6.0.14](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.13...@alfalab/core-components-input-autocomplete@6.0.14) (2021-04-01)
|
|
633
|
-
|
|
634
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
## [6.0.13](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.12...@alfalab/core-components-input-autocomplete@6.0.13) (2021-03-30)
|
|
641
|
-
|
|
642
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
## [6.0.12](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.11...@alfalab/core-components-input-autocomplete@6.0.12) (2021-03-24)
|
|
649
|
-
|
|
650
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
## [6.0.11](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.10...@alfalab/core-components-input-autocomplete@6.0.11) (2021-03-24)
|
|
657
|
-
|
|
658
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
## [6.0.10](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.9...@alfalab/core-components-input-autocomplete@6.0.10) (2021-03-19)
|
|
665
|
-
|
|
666
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
## [6.0.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.7...@alfalab/core-components-input-autocomplete@6.0.9) (2021-03-18)
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
### Bug Fixes
|
|
676
|
-
|
|
677
|
-
* one more sborka bug ([#579](https://github.com/core-ds/core-components/issues/579)) ([9fbe0be](https://github.com/core-ds/core-components/commit/9fbe0beca56ec5971de78b3f6cda25305b260efc))
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
## [6.0.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.5...@alfalab/core-components-input-autocomplete@6.0.7) (2021-03-16)
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
### Bug Fixes
|
|
687
|
-
|
|
688
|
-
* border-radius in packages ([781749e](https://github.com/core-ds/core-components/commit/781749ef38aefd5a6707ac56d2e297dce9f3e073))
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
## [6.0.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.4...@alfalab/core-components-input-autocomplete@6.0.5) (2021-03-15)
|
|
695
|
-
|
|
696
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
## [6.0.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.3...@alfalab/core-components-input-autocomplete@6.0.4) (2021-03-14)
|
|
703
|
-
|
|
704
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
## [6.0.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.2...@alfalab/core-components-input-autocomplete@6.0.3) (2021-03-11)
|
|
711
|
-
|
|
712
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
## [6.0.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.1...@alfalab/core-components-input-autocomplete@6.0.2) (2021-03-10)
|
|
719
|
-
|
|
720
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
## [6.0.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@6.0.0...@alfalab/core-components-input-autocomplete@6.0.1) (2021-03-05)
|
|
727
|
-
|
|
728
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
# [6.0.0](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.9...@alfalab/core-components-input-autocomplete@6.0.0) (2021-03-04)
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
### Features
|
|
738
|
-
|
|
739
|
-
* **input-autocomplete:** changed size L (72 → 64), added size XL (72) ([858359a](https://github.com/core-ds/core-components/commit/858359a0dab558113fe1d225d839eb97acd5c917))
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
### BREAKING CHANGES
|
|
743
|
-
|
|
744
|
-
* **input-autocomplete:** size L changed to size XL
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
## [5.2.9](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.8...@alfalab/core-components-input-autocomplete@5.2.9) (2021-03-03)
|
|
751
|
-
|
|
752
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
## [5.2.8](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.7...@alfalab/core-components-input-autocomplete@5.2.8) (2021-03-03)
|
|
759
|
-
|
|
760
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
## [5.2.7](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.6...@alfalab/core-components-input-autocomplete@5.2.7) (2021-03-03)
|
|
767
|
-
|
|
768
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
## [5.2.6](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.5...@alfalab/core-components-input-autocomplete@5.2.6) (2021-02-20)
|
|
775
|
-
|
|
776
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
## [5.2.5](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.4...@alfalab/core-components-input-autocomplete@5.2.5) (2021-02-20)
|
|
783
|
-
|
|
784
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
## [5.2.4](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.3...@alfalab/core-components-input-autocomplete@5.2.4) (2021-02-19)
|
|
791
|
-
|
|
792
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
## [5.2.3](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.2...@alfalab/core-components-input-autocomplete@5.2.3) (2021-02-19)
|
|
799
|
-
|
|
800
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
## [5.2.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.1...@alfalab/core-components-input-autocomplete@5.2.2) (2021-02-18)
|
|
807
|
-
|
|
808
|
-
**Note:** Version bump only for package @alfalab/core-components-input-autocomplete
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
## [5.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-input-autocomplete@5.2.0...@alfalab/core-components-input-autocomplete@5.2.1) (2021-02-18)
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
### Bug Fixes
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
* update versions ([#525](https://github.com/core-ds/core-components/issues/525)) ([31b2e4c](https://github.com/core-ds/core-components/commit/31b2e4c92fde6e2b63a3391a4e053cd328e93e70))
|