@alfalab/core-components-input-autocomplete 9.4.0 → 9.4.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-aed0af6e.d.ts +11 -0
- package/{Component-4b555174.d.ts → Component-b4e70cb0.d.ts} +4 -0
- package/Component-bdb4c6b9.d.ts +7 -11
- package/Component-f12ee135.d.ts +3 -3
- package/Component.mobile.js +2 -2
- package/Component.modal.mobile.d.ts +10 -2
- package/Component.modal.mobile.js +2 -2
- package/Component.responsive.js +1 -1
- package/autocomplete-field/Component.js +1 -1
- package/autocomplete-field/index.css +2 -2
- package/autocomplete-mobile-field/Component.js +1 -1
- package/autocomplete-mobile-field/index.css +8 -8
- package/cssm/Component-aed0af6e.d.ts +11 -0
- package/{esm/Component-4b555174.d.ts → cssm/Component-b4e70cb0.d.ts} +4 -0
- package/cssm/Component-bdb4c6b9.d.ts +7 -11
- package/cssm/Component-f12ee135.d.ts +3 -3
- package/cssm/{Component.mobile-b2c0420d.d.ts → Component.mobile-e81c389f.d.ts} +5 -2
- package/cssm/Component.mobile.js +1 -1
- package/cssm/Component.modal.mobile.d.ts +10 -2
- package/cssm/Component.modal.mobile.js +1 -1
- package/cssm/{hook-4b555174.d.ts → hook-b4e70cb0.d.ts} +17 -6
- package/cssm/index-ebda875c.d.ts +95 -216
- package/esm/Component-aed0af6e.d.ts +11 -0
- package/{cssm/Component-4b555174.d.ts → esm/Component-b4e70cb0.d.ts} +4 -0
- package/esm/Component-bdb4c6b9.d.ts +11 -7
- package/esm/Component-f12ee135.d.ts +3 -3
- package/esm/Component.mobile.js +2 -2
- package/esm/Component.modal.mobile.d.ts +10 -2
- package/esm/Component.modal.mobile.js +2 -2
- package/esm/Component.responsive.js +1 -1
- package/esm/autocomplete-field/Component.js +1 -1
- package/esm/autocomplete-field/index.css +2 -2
- package/esm/autocomplete-mobile-field/Component.js +1 -1
- package/esm/autocomplete-mobile-field/index.css +8 -8
- package/esm/{hook-4b555174.d.ts → hook-b4e70cb0.d.ts} +17 -6
- package/esm/index-ebda875c.d.ts +95 -216
- package/esm/index.js +1 -1
- package/esm/mobile.css +4 -4
- package/esm/mobile.js +1 -1
- package/esm/{mobile.module-0ca7666f.js → mobile.module-bad1a093.js} +1 -1
- package/esm/responsive.js +1 -1
- package/{hook-4b555174.d.ts → hook-b4e70cb0.d.ts} +17 -6
- package/index-ebda875c.d.ts +95 -216
- package/index.js +1 -1
- package/mobile.css +4 -4
- package/mobile.js +1 -1
- package/{mobile.module-48c4c311.js → mobile.module-22ee5ba9.js} +1 -1
- package/modern/Component-aed0af6e.d.ts +11 -0
- package/modern/{Component-4b555174.d.ts → Component-b4e70cb0.d.ts} +4 -0
- package/modern/Component.desktop.d.ts +4 -4
- package/modern/Component.mobile.js +2 -2
- package/modern/Component.modal.mobile.d.ts +9 -1
- package/modern/Component.modal.mobile.js +2 -2
- package/modern/Component.responsive.d.ts +4 -4
- package/modern/Component.responsive.js +1 -1
- package/modern/autocomplete-field/Component.js +1 -1
- package/modern/autocomplete-field/index.css +2 -2
- package/modern/autocomplete-mobile-field/Component.js +1 -1
- package/modern/autocomplete-mobile-field/index.css +8 -8
- package/modern/{hook-4b555174.d.ts → hook-b4e70cb0.d.ts} +17 -6
- package/modern/index-ebda875c.d.ts +95 -216
- package/modern/index.js +1 -1
- package/modern/mobile.css +4 -4
- package/modern/mobile.js +1 -1
- package/modern/{mobile.module-95a2557d.js → mobile.module-32ab5262.js} +1 -1
- package/modern/responsive.js +1 -1
- package/package.json +2 -2
- package/responsive.js +1 -1
- /package/{esm/Component.mobile-e81c389f.d.ts → Component.mobile-e81c389f.d.ts} +0 -0
- /package/{Component.mobile-b2c0420d.d.ts → esm/Component.mobile-b2c0420d.d.ts} +0 -0
|
@@ -29,17 +29,22 @@ type UseSelectWithApplyProps = {
|
|
|
29
29
|
* Показывать пункт "Выбрать все"
|
|
30
30
|
*/
|
|
31
31
|
showSelectAll?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Показывать пункт "Выбрать все" в заголовке списка
|
|
34
|
+
*/
|
|
35
|
+
showHeaderWithSelectAll?: boolean;
|
|
32
36
|
};
|
|
33
37
|
declare const SELECT_ALL_KEY = "select_all";
|
|
34
|
-
declare function useSelectWithApply({ options, selected, onChange, OptionsList, optionsListProps, showClear, showSelectAll, }: UseSelectWithApplyProps): {
|
|
38
|
+
declare function useSelectWithApply({ options, selected, onChange, OptionsList, optionsListProps, showClear, showSelectAll, showHeaderWithSelectAll, }: UseSelectWithApplyProps): {
|
|
35
39
|
OptionsList: import("react").ForwardRefExoticComponent<import("./index-3e68f8db").OptionsListProps & {
|
|
36
40
|
showClear?: boolean | undefined;
|
|
37
41
|
onClose?: (() => void) | undefined;
|
|
38
42
|
selectedDraft?: OptionShape[] | undefined;
|
|
39
|
-
OptionsList?: import("react").FC<import("./index-3e68f8db").OptionsListProps & import("react").RefAttributes<HTMLDivElement>> | undefined;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
+
OptionsList?: import("react").FC<import("./index-3e68f8db").OptionsListProps & import("react").RefAttributes<HTMLDivElement>> | undefined;
|
|
44
|
+
Footer?: import("react").FC<import("./Component-b4e70cb0").FooterProps> | undefined;
|
|
45
|
+
Header?: import("react").FC<import("./Component-aed0af6e").HeaderProps> | undefined;
|
|
46
|
+
headerProps?: import("./Component-aed0af6e").HeaderProps | undefined;
|
|
47
|
+
showHeaderWithSelectAll?: boolean | undefined;
|
|
43
48
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
44
49
|
optionsListProps: {
|
|
45
50
|
OptionsList: import("react").FC<import("./index-3e68f8db").OptionsListProps & import("react").RefAttributes<HTMLDivElement>> | undefined;
|
|
@@ -48,6 +53,12 @@ declare function useSelectWithApply({ options, selected, onChange, OptionsList,
|
|
|
48
53
|
onApply: () => void;
|
|
49
54
|
onClose: () => void;
|
|
50
55
|
selectedDraft: OptionShape[];
|
|
56
|
+
showHeaderWithSelectAll: boolean;
|
|
57
|
+
headerProps: {
|
|
58
|
+
indeterminate: boolean;
|
|
59
|
+
checked: boolean;
|
|
60
|
+
onChange: () => void;
|
|
61
|
+
};
|
|
51
62
|
};
|
|
52
63
|
allowUnselect: boolean;
|
|
53
64
|
multiple: boolean;
|
|
@@ -58,5 +69,5 @@ declare function useSelectWithApply({ options, selected, onChange, OptionsList,
|
|
|
58
69
|
onChange: (payload: import("./index-3e68f8db").BaseSelectChangePayload) => void;
|
|
59
70
|
selected: string | OptionShape | (string | OptionShape)[] | null | undefined;
|
|
60
71
|
};
|
|
61
|
-
export * from "./Component-
|
|
72
|
+
export * from "./Component-b4e70cb0";
|
|
62
73
|
export { UseSelectWithApplyProps, SELECT_ALL_KEY, useSelectWithApply };
|
|
@@ -1,219 +1,98 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="react-transition-group" />
|
|
3
3
|
import React from "react";
|
|
4
|
-
import {
|
|
5
|
-
type
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
*/
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
*
|
|
45
|
-
*/
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
*/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
};
|
|
100
|
-
static instances: WeakMap<object, any>;
|
|
101
|
-
constructor(element: any, options: any);
|
|
102
|
-
el: any;
|
|
103
|
-
minScrollbarWidth: number;
|
|
104
|
-
options: any;
|
|
105
|
-
classNames: any;
|
|
106
|
-
axis: {
|
|
107
|
-
x: {
|
|
108
|
-
scrollOffsetAttr: string;
|
|
109
|
-
sizeAttr: string;
|
|
110
|
-
scrollSizeAttr: string;
|
|
111
|
-
offsetSizeAttr: string;
|
|
112
|
-
offsetAttr: string;
|
|
113
|
-
overflowAttr: string;
|
|
114
|
-
dragOffset: number;
|
|
115
|
-
isOverflowing: boolean;
|
|
116
|
-
isVisible: boolean;
|
|
117
|
-
forceVisible: boolean;
|
|
118
|
-
track: {};
|
|
119
|
-
scrollbar: {};
|
|
120
|
-
};
|
|
121
|
-
y: {
|
|
122
|
-
scrollOffsetAttr: string;
|
|
123
|
-
sizeAttr: string;
|
|
124
|
-
scrollSizeAttr: string;
|
|
125
|
-
offsetSizeAttr: string;
|
|
126
|
-
offsetAttr: string;
|
|
127
|
-
overflowAttr: string;
|
|
128
|
-
dragOffset: number;
|
|
129
|
-
isOverflowing: boolean;
|
|
130
|
-
isVisible: boolean;
|
|
131
|
-
forceVisible: boolean;
|
|
132
|
-
track: {};
|
|
133
|
-
scrollbar: {};
|
|
134
|
-
};
|
|
135
|
-
};
|
|
136
|
-
removePreventClickId: any;
|
|
137
|
-
recalculate(): void;
|
|
138
|
-
onMouseMove: (e: any) => void;
|
|
139
|
-
hideScrollbars: () => void;
|
|
140
|
-
onWindowResize: () => void;
|
|
141
|
-
init(): void;
|
|
142
|
-
scrollbarWidth: any;
|
|
143
|
-
initDOM(): void;
|
|
144
|
-
wrapperEl: any;
|
|
145
|
-
contentWrapperEl: any;
|
|
146
|
-
contentEl: any;
|
|
147
|
-
offsetEl: any;
|
|
148
|
-
maskEl: any;
|
|
149
|
-
placeholderEl: any;
|
|
150
|
-
heightAutoObserverWrapperEl: any;
|
|
151
|
-
heightAutoObserverEl: any;
|
|
152
|
-
setAccessibilityAttributes(): void;
|
|
153
|
-
initListeners(): void;
|
|
154
|
-
resizeObserver: any;
|
|
155
|
-
mutationObserver: any;
|
|
156
|
-
elStyles: any;
|
|
157
|
-
isRtl: boolean | undefined;
|
|
158
|
-
getScrollbarSize(axis?: string): number;
|
|
159
|
-
positionScrollbar(axis?: string): void;
|
|
160
|
-
toggleTrackVisibility(axis?: string): void;
|
|
161
|
-
hideNativeScrollbar(): void;
|
|
162
|
-
onScroll: () => void;
|
|
163
|
-
scrollXTicking: boolean | undefined;
|
|
164
|
-
scrollYTicking: boolean | undefined;
|
|
165
|
-
scrollX: () => void;
|
|
166
|
-
scrollY: () => void;
|
|
167
|
-
onMouseEnter: () => void;
|
|
168
|
-
mouseX: any;
|
|
169
|
-
mouseY: any;
|
|
170
|
-
onMouseMoveForAxis(axis?: string): void;
|
|
171
|
-
onMouseLeave: () => void;
|
|
172
|
-
onMouseLeaveForAxis(axis?: string): void;
|
|
173
|
-
showScrollbar(axis?: string): void;
|
|
174
|
-
onPointerEvent: (e: any) => void;
|
|
175
|
-
onDragStart(e: any, axis?: string): void;
|
|
176
|
-
draggedAxis: string | undefined;
|
|
177
|
-
drag: (e: any) => void;
|
|
178
|
-
onEndDrag: (e: any) => void;
|
|
179
|
-
preventClick: (e: any) => void;
|
|
180
|
-
onTrackClick(e: any, axis?: string): void;
|
|
181
|
-
getContentElement(): any;
|
|
182
|
-
getScrollElement(): any;
|
|
183
|
-
getScrollbarWidth(): any;
|
|
184
|
-
removeListeners(): void;
|
|
185
|
-
unMount(): void;
|
|
186
|
-
isWithinBounds(bbox: any): boolean;
|
|
187
|
-
findChild(el: any, query: any): any;
|
|
188
|
-
}
|
|
189
|
-
declare function memoize(func: Function, resolver?: Function | undefined): Function;
|
|
190
|
-
declare namespace memoize$0 {
|
|
191
|
-
export { MapCache as Cache };
|
|
192
|
-
}
|
|
193
|
-
declare function MapCache(entries?: any[] | undefined): void;
|
|
194
|
-
declare class MapCache {
|
|
195
|
-
private constructor();
|
|
196
|
-
clear: typeof mapCacheClear;
|
|
197
|
-
delete: typeof mapCacheDelete;
|
|
198
|
-
get: typeof mapCacheGet;
|
|
199
|
-
has: typeof mapCacheHas;
|
|
200
|
-
set: typeof mapCacheSet;
|
|
201
|
-
}
|
|
202
|
-
declare function mapCacheClear(): void;
|
|
203
|
-
declare class mapCacheClear {
|
|
204
|
-
__data__: {
|
|
205
|
-
hash: Hash;
|
|
206
|
-
map: any;
|
|
207
|
-
string: Hash;
|
|
208
|
-
};
|
|
209
|
-
}
|
|
210
|
-
declare function mapCacheDelete(key: string): boolean;
|
|
211
|
-
declare function mapCacheGet(key: string): any;
|
|
212
|
-
declare function mapCacheHas(key: string): boolean;
|
|
213
|
-
declare function mapCacheSet(key: string, value: any): Object;
|
|
214
|
-
declare var canUseDOM: boolean;
|
|
215
|
-
declare function scrollbarWidth(el: any): any;
|
|
216
|
-
declare function getElementWindow(element: any): any;
|
|
217
|
-
declare function getElementDocument(element: any): any;
|
|
218
|
-
declare function getOptions(obj: any): unknown;
|
|
219
|
-
export { memoize as default, ScrollbarProps, Scrollbar, getElementWindow, getElementDocument, getOptions };
|
|
4
|
+
import { ChangeEvent, InputHTMLAttributes, ReactNode } from "react";
|
|
5
|
+
type NativeProps = InputHTMLAttributes<HTMLInputElement>;
|
|
6
|
+
type Align = "start" | "center";
|
|
7
|
+
type CheckboxProps = Omit<NativeProps, "size" | "onChange" | "enterKeyHint"> & {
|
|
8
|
+
/**
|
|
9
|
+
* Управление состоянием вкл/выкл чекбокса (native prop)
|
|
10
|
+
*/
|
|
11
|
+
checked?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Обработчик переключения чекбокса
|
|
14
|
+
*/
|
|
15
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>, payload: {
|
|
16
|
+
checked: boolean;
|
|
17
|
+
name?: string;
|
|
18
|
+
}) => void;
|
|
19
|
+
/**
|
|
20
|
+
* Текст подписи к чекбоксу
|
|
21
|
+
*/
|
|
22
|
+
label?: ReactNode;
|
|
23
|
+
/**
|
|
24
|
+
* Текст подсказки снизу
|
|
25
|
+
*/
|
|
26
|
+
hint?: ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* Размер компонента
|
|
29
|
+
*/
|
|
30
|
+
size?: "s" | "m";
|
|
31
|
+
/**
|
|
32
|
+
* Доп. класс чекбокса
|
|
33
|
+
*/
|
|
34
|
+
boxClassName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Доп. класс контента
|
|
37
|
+
*/
|
|
38
|
+
contentClassName?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Выравнивание
|
|
41
|
+
*/
|
|
42
|
+
align?: Align;
|
|
43
|
+
/**
|
|
44
|
+
* Дополнительный слот
|
|
45
|
+
*/
|
|
46
|
+
addons?: React.ReactNode;
|
|
47
|
+
/**
|
|
48
|
+
* Растягивать ли компонент на всю ширину
|
|
49
|
+
*/
|
|
50
|
+
block?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Управление состоянием включен / выключен
|
|
53
|
+
*/
|
|
54
|
+
disabled?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Управление состоянием активен / неактивен
|
|
57
|
+
*/
|
|
58
|
+
inactive?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Идентификатор для систем автоматизированного тестирования
|
|
61
|
+
*/
|
|
62
|
+
dataTestId?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Управление неопределенным состоянием чекбокса
|
|
65
|
+
*/
|
|
66
|
+
indeterminate?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Отображение ошибки
|
|
69
|
+
*/
|
|
70
|
+
error?: ReactNode | boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Флаг для скрытия нативного инпута.
|
|
73
|
+
* @default false
|
|
74
|
+
*/
|
|
75
|
+
hiddenInput?: boolean;
|
|
76
|
+
};
|
|
77
|
+
declare const Checkbox: React.ForwardRefExoticComponent<Omit<NativeProps, "size" | "onChange" | "enterKeyHint"> & {
|
|
78
|
+
checked?: boolean | undefined;
|
|
79
|
+
onChange?: ((event: ChangeEvent<HTMLInputElement>, payload: {
|
|
80
|
+
checked: boolean;
|
|
81
|
+
name?: string;
|
|
82
|
+
}) => void) | undefined;
|
|
83
|
+
label?: ReactNode;
|
|
84
|
+
hint?: ReactNode;
|
|
85
|
+
size?: "s" | "m" | undefined;
|
|
86
|
+
boxClassName?: string | undefined;
|
|
87
|
+
contentClassName?: string | undefined;
|
|
88
|
+
align?: Align | undefined;
|
|
89
|
+
addons?: React.ReactNode;
|
|
90
|
+
block?: boolean | undefined;
|
|
91
|
+
disabled?: boolean | undefined;
|
|
92
|
+
inactive?: boolean | undefined;
|
|
93
|
+
dataTestId?: string | undefined;
|
|
94
|
+
indeterminate?: boolean | undefined;
|
|
95
|
+
error?: ReactNode | boolean;
|
|
96
|
+
hiddenInput?: boolean | undefined;
|
|
97
|
+
} & React.RefAttributes<HTMLLabelElement>>;
|
|
98
|
+
export { CheckboxProps, Checkbox };
|
package/modern/index.js
CHANGED
|
@@ -12,4 +12,4 @@ import 'lodash.throttle';
|
|
|
12
12
|
import '@alfalab/core-components-button/modern';
|
|
13
13
|
import './autocomplete-mobile-field/Component.js';
|
|
14
14
|
import '@alfalab/core-components-form-control/modern';
|
|
15
|
-
import './mobile.module-
|
|
15
|
+
import './mobile.module-32ab5262.js';
|
package/modern/mobile.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: ed8q8 */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
--gap-m: 16px;
|
|
17
17
|
} :root {
|
|
18
18
|
} :root {
|
|
19
|
-
} .input-
|
|
19
|
+
} .input-autocomplete__bottomAddonInput_11a5a {
|
|
20
20
|
padding: 0 var(--gap-xs) var(--gap-xs);
|
|
21
21
|
box-sizing: border-box;
|
|
22
|
-
} .input-
|
|
22
|
+
} .input-autocomplete__footer_11a5a {
|
|
23
23
|
display: flex
|
|
24
|
-
} .input-
|
|
24
|
+
} .input-autocomplete__footer_11a5a > button + button {
|
|
25
25
|
margin-left: var(--gap-m);
|
|
26
26
|
}
|
package/modern/mobile.js
CHANGED
|
@@ -10,5 +10,5 @@ import '@alfalab/core-components-select/modern';
|
|
|
10
10
|
import './autocomplete-mobile-field/Component.js';
|
|
11
11
|
import '@alfalab/core-components-form-control/modern';
|
|
12
12
|
import '@alfalab/hooks';
|
|
13
|
-
import './mobile.module-
|
|
13
|
+
import './mobile.module-32ab5262.js';
|
|
14
14
|
import '@alfalab/core-components-select/modern/mobile';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const styles = {"bottomAddonInput":"input-
|
|
1
|
+
const styles = {"bottomAddonInput":"input-autocomplete__bottomAddonInput_11a5a","footer":"input-autocomplete__footer_11a5a"};
|
|
2
2
|
require('./mobile.css')
|
|
3
3
|
|
|
4
4
|
export { styles as s };
|
package/modern/responsive.js
CHANGED
|
@@ -12,4 +12,4 @@ import 'lodash.throttle';
|
|
|
12
12
|
import '@alfalab/core-components-button/modern';
|
|
13
13
|
import './autocomplete-mobile-field/Component.js';
|
|
14
14
|
import '@alfalab/core-components-form-control/modern';
|
|
15
|
-
import './mobile.module-
|
|
15
|
+
import './mobile.module-32ab5262.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-input-autocomplete",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@alfalab/core-components-button": "^8.4.0",
|
|
21
21
|
"@alfalab/core-components-form-control": "^9.0.5",
|
|
22
22
|
"@alfalab/core-components-input": "^11.1.16",
|
|
23
|
-
"@alfalab/core-components-select": "^14.
|
|
23
|
+
"@alfalab/core-components-select": "^14.3.0",
|
|
24
24
|
"@alfalab/hooks": "^1.13.0",
|
|
25
25
|
"classnames": "^2.3.1",
|
|
26
26
|
"lodash.throttle": "^4.1.1",
|
package/responsive.js
CHANGED
|
@@ -17,7 +17,7 @@ require('lodash.throttle');
|
|
|
17
17
|
require('@alfalab/core-components-button');
|
|
18
18
|
require('./autocomplete-mobile-field/Component.js');
|
|
19
19
|
require('@alfalab/core-components-form-control');
|
|
20
|
-
require('./mobile.module-
|
|
20
|
+
require('./mobile.module-22ee5ba9.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
File without changes
|
|
File without changes
|