@alfalab/core-components-input-autocomplete 13.1.3 → 13.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/autocomplete-field/index.css +1 -1
- package/autocomplete-field/index.module.css.js +1 -1
- package/autocomplete-mobile-field/index.css +10 -10
- package/autocomplete-mobile-field/index.module.css.js +1 -1
- package/esm/autocomplete-field/index.css +1 -1
- package/esm/autocomplete-field/index.module.css.js +1 -1
- package/esm/autocomplete-mobile-field/index.css +10 -10
- package/esm/autocomplete-mobile-field/index.module.css.js +1 -1
- package/esm/mobile/mobile.css +1 -1
- package/esm/mobile/mobile.module.css.js +1 -1
- package/mobile/mobile.css +1 -1
- package/mobile/mobile.module.css.js +1 -1
- package/modern/autocomplete-field/index.css +1 -1
- package/modern/autocomplete-field/index.module.css.js +1 -1
- package/modern/autocomplete-mobile-field/index.css +10 -10
- package/modern/autocomplete-mobile-field/index.module.css.js +1 -1
- package/modern/mobile/mobile.css +1 -1
- package/modern/mobile/mobile.module.css.js +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"arrow":"input-
|
|
5
|
+
var styles = {"arrow":"input-autocomplete__arrow_dr1qa","error":"input-autocomplete__error_dr1qa"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -8,22 +8,22 @@
|
|
|
8
8
|
--input-error-icon-display: none;
|
|
9
9
|
--input-success-icon-display: flex;
|
|
10
10
|
--input-error-icon-not-alone-display: none;
|
|
11
|
-
} .input-
|
|
11
|
+
} .input-autocomplete__component_kl8z1 {
|
|
12
12
|
width: 100%;
|
|
13
13
|
outline: none;
|
|
14
|
-
} .input-
|
|
14
|
+
} .input-autocomplete__field_kl8z1:not(.input-autocomplete__disabled_kl8z1) {
|
|
15
15
|
cursor: pointer;
|
|
16
|
-
} .input-
|
|
16
|
+
} .input-autocomplete__errorIcon_kl8z1 {
|
|
17
17
|
display: var(--input-error-icon-display);
|
|
18
|
-
} * + .input-
|
|
18
|
+
} * + .input-autocomplete__errorIcon_kl8z1 {
|
|
19
19
|
display: var(--input-error-icon-not-alone-display);
|
|
20
|
-
} .input-
|
|
20
|
+
} .input-autocomplete__successIcon_kl8z1 {
|
|
21
21
|
display: var(--input-success-icon-display);
|
|
22
|
-
} .input-
|
|
22
|
+
} .input-autocomplete__disabled_kl8z1 {
|
|
23
23
|
cursor: var(--disabled-cursor);
|
|
24
|
-
} .input-
|
|
24
|
+
} .input-autocomplete__placeholder_kl8z1 {
|
|
25
25
|
color: var(--color-light-text-secondary);
|
|
26
|
-
} .input-
|
|
26
|
+
} .input-autocomplete__contentWrapper_kl8z1 {
|
|
27
27
|
font-size: 16px;
|
|
28
28
|
line-height: 20px;
|
|
29
29
|
font-weight: 400;
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
text-overflow: ellipsis;
|
|
33
33
|
overflow: hidden;
|
|
34
34
|
width: 100%;
|
|
35
|
-
} .input-
|
|
35
|
+
} .input-autocomplete__value_kl8z1 {
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
text-overflow: ellipsis;
|
|
38
38
|
text-align: left;
|
|
39
|
-
} .input-
|
|
39
|
+
} .input-autocomplete__focusVisible_kl8z1 {
|
|
40
40
|
outline: 2px solid var(--focus-color);
|
|
41
41
|
outline-offset: 2px;
|
|
42
42
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
require('./index.css');
|
|
4
4
|
|
|
5
|
-
var styles = {"component":"input-
|
|
5
|
+
var styles = {"component":"input-autocomplete__component_kl8z1","field":"input-autocomplete__field_kl8z1","disabled":"input-autocomplete__disabled_kl8z1","errorIcon":"input-autocomplete__errorIcon_kl8z1","successIcon":"input-autocomplete__successIcon_kl8z1","placeholder":"input-autocomplete__placeholder_kl8z1","contentWrapper":"input-autocomplete__contentWrapper_kl8z1","value":"input-autocomplete__value_kl8z1","focusVisible":"input-autocomplete__focusVisible_kl8z1"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"arrow":"input-
|
|
3
|
+
var styles = {"arrow":"input-autocomplete__arrow_dr1qa","error":"input-autocomplete__error_dr1qa"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -8,22 +8,22 @@
|
|
|
8
8
|
--input-error-icon-display: none;
|
|
9
9
|
--input-success-icon-display: flex;
|
|
10
10
|
--input-error-icon-not-alone-display: none;
|
|
11
|
-
} .input-
|
|
11
|
+
} .input-autocomplete__component_kl8z1 {
|
|
12
12
|
width: 100%;
|
|
13
13
|
outline: none;
|
|
14
|
-
} .input-
|
|
14
|
+
} .input-autocomplete__field_kl8z1:not(.input-autocomplete__disabled_kl8z1) {
|
|
15
15
|
cursor: pointer;
|
|
16
|
-
} .input-
|
|
16
|
+
} .input-autocomplete__errorIcon_kl8z1 {
|
|
17
17
|
display: var(--input-error-icon-display);
|
|
18
|
-
} * + .input-
|
|
18
|
+
} * + .input-autocomplete__errorIcon_kl8z1 {
|
|
19
19
|
display: var(--input-error-icon-not-alone-display);
|
|
20
|
-
} .input-
|
|
20
|
+
} .input-autocomplete__successIcon_kl8z1 {
|
|
21
21
|
display: var(--input-success-icon-display);
|
|
22
|
-
} .input-
|
|
22
|
+
} .input-autocomplete__disabled_kl8z1 {
|
|
23
23
|
cursor: var(--disabled-cursor);
|
|
24
|
-
} .input-
|
|
24
|
+
} .input-autocomplete__placeholder_kl8z1 {
|
|
25
25
|
color: var(--color-light-text-secondary);
|
|
26
|
-
} .input-
|
|
26
|
+
} .input-autocomplete__contentWrapper_kl8z1 {
|
|
27
27
|
font-size: 16px;
|
|
28
28
|
line-height: 20px;
|
|
29
29
|
font-weight: 400;
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
text-overflow: ellipsis;
|
|
33
33
|
overflow: hidden;
|
|
34
34
|
width: 100%;
|
|
35
|
-
} .input-
|
|
35
|
+
} .input-autocomplete__value_kl8z1 {
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
text-overflow: ellipsis;
|
|
38
38
|
text-align: left;
|
|
39
|
-
} .input-
|
|
39
|
+
} .input-autocomplete__focusVisible_kl8z1 {
|
|
40
40
|
outline: 2px solid var(--focus-color);
|
|
41
41
|
outline-offset: 2px;
|
|
42
42
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"component":"input-
|
|
3
|
+
var styles = {"component":"input-autocomplete__component_kl8z1","field":"input-autocomplete__field_kl8z1","disabled":"input-autocomplete__disabled_kl8z1","errorIcon":"input-autocomplete__errorIcon_kl8z1","successIcon":"input-autocomplete__successIcon_kl8z1","placeholder":"input-autocomplete__placeholder_kl8z1","contentWrapper":"input-autocomplete__contentWrapper_kl8z1","value":"input-autocomplete__value_kl8z1","focusVisible":"input-autocomplete__focusVisible_kl8z1"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/esm/mobile/mobile.css
CHANGED
package/mobile/mobile.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"arrow":"input-
|
|
3
|
+
const styles = {"arrow":"input-autocomplete__arrow_dr1qa","error":"input-autocomplete__error_dr1qa"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -8,22 +8,22 @@
|
|
|
8
8
|
--input-error-icon-display: none;
|
|
9
9
|
--input-success-icon-display: flex;
|
|
10
10
|
--input-error-icon-not-alone-display: none;
|
|
11
|
-
} .input-
|
|
11
|
+
} .input-autocomplete__component_kl8z1 {
|
|
12
12
|
width: 100%;
|
|
13
13
|
outline: none;
|
|
14
|
-
} .input-
|
|
14
|
+
} .input-autocomplete__field_kl8z1:not(.input-autocomplete__disabled_kl8z1) {
|
|
15
15
|
cursor: pointer;
|
|
16
|
-
} .input-
|
|
16
|
+
} .input-autocomplete__errorIcon_kl8z1 {
|
|
17
17
|
display: var(--input-error-icon-display);
|
|
18
|
-
} * + .input-
|
|
18
|
+
} * + .input-autocomplete__errorIcon_kl8z1 {
|
|
19
19
|
display: var(--input-error-icon-not-alone-display);
|
|
20
|
-
} .input-
|
|
20
|
+
} .input-autocomplete__successIcon_kl8z1 {
|
|
21
21
|
display: var(--input-success-icon-display);
|
|
22
|
-
} .input-
|
|
22
|
+
} .input-autocomplete__disabled_kl8z1 {
|
|
23
23
|
cursor: var(--disabled-cursor);
|
|
24
|
-
} .input-
|
|
24
|
+
} .input-autocomplete__placeholder_kl8z1 {
|
|
25
25
|
color: var(--color-light-text-secondary);
|
|
26
|
-
} .input-
|
|
26
|
+
} .input-autocomplete__contentWrapper_kl8z1 {
|
|
27
27
|
font-size: 16px;
|
|
28
28
|
line-height: 20px;
|
|
29
29
|
font-weight: 400;
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
text-overflow: ellipsis;
|
|
33
33
|
overflow: hidden;
|
|
34
34
|
width: 100%;
|
|
35
|
-
} .input-
|
|
35
|
+
} .input-autocomplete__value_kl8z1 {
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
text-overflow: ellipsis;
|
|
38
38
|
text-align: left;
|
|
39
|
-
} .input-
|
|
39
|
+
} .input-autocomplete__focusVisible_kl8z1 {
|
|
40
40
|
outline: 2px solid var(--focus-color);
|
|
41
41
|
outline-offset: 2px;
|
|
42
42
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"component":"input-
|
|
3
|
+
const styles = {"component":"input-autocomplete__component_kl8z1","field":"input-autocomplete__field_kl8z1","disabled":"input-autocomplete__disabled_kl8z1","errorIcon":"input-autocomplete__errorIcon_kl8z1","successIcon":"input-autocomplete__successIcon_kl8z1","placeholder":"input-autocomplete__placeholder_kl8z1","contentWrapper":"input-autocomplete__contentWrapper_kl8z1","value":"input-autocomplete__value_kl8z1","focusVisible":"input-autocomplete__focusVisible_kl8z1"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
package/modern/mobile/mobile.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfalab/core-components-input-autocomplete",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@alfalab/core-components-input": "^16.0.5",
|
|
15
15
|
"@alfalab/core-components-mq": "^5.0.2",
|
|
16
16
|
"@alfalab/core-components-popover": "^7.1.1",
|
|
17
|
-
"@alfalab/core-components-select": "^18.
|
|
17
|
+
"@alfalab/core-components-select": "^18.3.0",
|
|
18
18
|
"@alfalab/core-components-shared": "^1.1.1",
|
|
19
19
|
"@alfalab/core-components-status-badge": "^2.0.1",
|
|
20
20
|
"@alfalab/hooks": "^1.13.1",
|