@alfalab/core-components-input-autocomplete 14.0.0 → 14.0.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/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 +10 -10
|
@@ -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_db4wq","error":"input-autocomplete__error_db4wq"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -15,29 +15,29 @@
|
|
|
15
15
|
--input-success-icon-display: flex;
|
|
16
16
|
--input-error-icon-not-alone-display: none;
|
|
17
17
|
}
|
|
18
|
-
.input-
|
|
18
|
+
.input-autocomplete__component_znt2f {
|
|
19
19
|
width: 100%;
|
|
20
20
|
outline: none;
|
|
21
21
|
}
|
|
22
|
-
.input-
|
|
22
|
+
.input-autocomplete__field_znt2f:not(.input-autocomplete__disabled_znt2f) {
|
|
23
23
|
cursor: pointer;
|
|
24
24
|
}
|
|
25
|
-
.input-
|
|
25
|
+
.input-autocomplete__errorIcon_znt2f {
|
|
26
26
|
display: var(--input-error-icon-display);
|
|
27
27
|
}
|
|
28
|
-
* + .input-
|
|
28
|
+
* + .input-autocomplete__errorIcon_znt2f {
|
|
29
29
|
display: var(--input-error-icon-not-alone-display);
|
|
30
30
|
}
|
|
31
|
-
.input-
|
|
31
|
+
.input-autocomplete__successIcon_znt2f {
|
|
32
32
|
display: var(--input-success-icon-display);
|
|
33
33
|
}
|
|
34
|
-
.input-
|
|
34
|
+
.input-autocomplete__disabled_znt2f {
|
|
35
35
|
cursor: var(--disabled-cursor);
|
|
36
36
|
}
|
|
37
|
-
.input-
|
|
37
|
+
.input-autocomplete__placeholder_znt2f {
|
|
38
38
|
color: var(--color-light-text-secondary);
|
|
39
39
|
}
|
|
40
|
-
.input-
|
|
40
|
+
.input-autocomplete__contentWrapper_znt2f {
|
|
41
41
|
font-size: 16px;
|
|
42
42
|
line-height: 20px;
|
|
43
43
|
font-weight: 400;
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
overflow: hidden;
|
|
49
49
|
width: 100%;
|
|
50
50
|
}
|
|
51
|
-
.input-
|
|
51
|
+
.input-autocomplete__value_znt2f {
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
text-overflow: ellipsis;
|
|
54
54
|
text-align: left;
|
|
55
55
|
}
|
|
56
|
-
.input-
|
|
56
|
+
.input-autocomplete__focusVisible_znt2f {
|
|
57
57
|
outline: 2px solid var(--focus-color);
|
|
58
58
|
outline-offset: 2px;
|
|
59
59
|
}
|
|
@@ -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_znt2f","field":"input-autocomplete__field_znt2f","disabled":"input-autocomplete__disabled_znt2f","errorIcon":"input-autocomplete__errorIcon_znt2f","successIcon":"input-autocomplete__successIcon_znt2f","placeholder":"input-autocomplete__placeholder_znt2f","contentWrapper":"input-autocomplete__contentWrapper_znt2f","value":"input-autocomplete__value_znt2f","focusVisible":"input-autocomplete__focusVisible_znt2f"};
|
|
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_db4wq","error":"input-autocomplete__error_db4wq"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -15,29 +15,29 @@
|
|
|
15
15
|
--input-success-icon-display: flex;
|
|
16
16
|
--input-error-icon-not-alone-display: none;
|
|
17
17
|
}
|
|
18
|
-
.input-
|
|
18
|
+
.input-autocomplete__component_znt2f {
|
|
19
19
|
width: 100%;
|
|
20
20
|
outline: none;
|
|
21
21
|
}
|
|
22
|
-
.input-
|
|
22
|
+
.input-autocomplete__field_znt2f:not(.input-autocomplete__disabled_znt2f) {
|
|
23
23
|
cursor: pointer;
|
|
24
24
|
}
|
|
25
|
-
.input-
|
|
25
|
+
.input-autocomplete__errorIcon_znt2f {
|
|
26
26
|
display: var(--input-error-icon-display);
|
|
27
27
|
}
|
|
28
|
-
* + .input-
|
|
28
|
+
* + .input-autocomplete__errorIcon_znt2f {
|
|
29
29
|
display: var(--input-error-icon-not-alone-display);
|
|
30
30
|
}
|
|
31
|
-
.input-
|
|
31
|
+
.input-autocomplete__successIcon_znt2f {
|
|
32
32
|
display: var(--input-success-icon-display);
|
|
33
33
|
}
|
|
34
|
-
.input-
|
|
34
|
+
.input-autocomplete__disabled_znt2f {
|
|
35
35
|
cursor: var(--disabled-cursor);
|
|
36
36
|
}
|
|
37
|
-
.input-
|
|
37
|
+
.input-autocomplete__placeholder_znt2f {
|
|
38
38
|
color: var(--color-light-text-secondary);
|
|
39
39
|
}
|
|
40
|
-
.input-
|
|
40
|
+
.input-autocomplete__contentWrapper_znt2f {
|
|
41
41
|
font-size: 16px;
|
|
42
42
|
line-height: 20px;
|
|
43
43
|
font-weight: 400;
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
overflow: hidden;
|
|
49
49
|
width: 100%;
|
|
50
50
|
}
|
|
51
|
-
.input-
|
|
51
|
+
.input-autocomplete__value_znt2f {
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
text-overflow: ellipsis;
|
|
54
54
|
text-align: left;
|
|
55
55
|
}
|
|
56
|
-
.input-
|
|
56
|
+
.input-autocomplete__focusVisible_znt2f {
|
|
57
57
|
outline: 2px solid var(--focus-color);
|
|
58
58
|
outline-offset: 2px;
|
|
59
59
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"component":"input-
|
|
3
|
+
var styles = {"component":"input-autocomplete__component_znt2f","field":"input-autocomplete__field_znt2f","disabled":"input-autocomplete__disabled_znt2f","errorIcon":"input-autocomplete__errorIcon_znt2f","successIcon":"input-autocomplete__successIcon_znt2f","placeholder":"input-autocomplete__placeholder_znt2f","contentWrapper":"input-autocomplete__contentWrapper_znt2f","value":"input-autocomplete__value_znt2f","focusVisible":"input-autocomplete__focusVisible_znt2f"};
|
|
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_db4wq","error":"input-autocomplete__error_db4wq"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -15,29 +15,29 @@
|
|
|
15
15
|
--input-success-icon-display: flex;
|
|
16
16
|
--input-error-icon-not-alone-display: none;
|
|
17
17
|
}
|
|
18
|
-
.input-
|
|
18
|
+
.input-autocomplete__component_znt2f {
|
|
19
19
|
width: 100%;
|
|
20
20
|
outline: none;
|
|
21
21
|
}
|
|
22
|
-
.input-
|
|
22
|
+
.input-autocomplete__field_znt2f:not(.input-autocomplete__disabled_znt2f) {
|
|
23
23
|
cursor: pointer;
|
|
24
24
|
}
|
|
25
|
-
.input-
|
|
25
|
+
.input-autocomplete__errorIcon_znt2f {
|
|
26
26
|
display: var(--input-error-icon-display);
|
|
27
27
|
}
|
|
28
|
-
* + .input-
|
|
28
|
+
* + .input-autocomplete__errorIcon_znt2f {
|
|
29
29
|
display: var(--input-error-icon-not-alone-display);
|
|
30
30
|
}
|
|
31
|
-
.input-
|
|
31
|
+
.input-autocomplete__successIcon_znt2f {
|
|
32
32
|
display: var(--input-success-icon-display);
|
|
33
33
|
}
|
|
34
|
-
.input-
|
|
34
|
+
.input-autocomplete__disabled_znt2f {
|
|
35
35
|
cursor: var(--disabled-cursor);
|
|
36
36
|
}
|
|
37
|
-
.input-
|
|
37
|
+
.input-autocomplete__placeholder_znt2f {
|
|
38
38
|
color: var(--color-light-text-secondary);
|
|
39
39
|
}
|
|
40
|
-
.input-
|
|
40
|
+
.input-autocomplete__contentWrapper_znt2f {
|
|
41
41
|
font-size: 16px;
|
|
42
42
|
line-height: 20px;
|
|
43
43
|
font-weight: 400;
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
overflow: hidden;
|
|
49
49
|
width: 100%;
|
|
50
50
|
}
|
|
51
|
-
.input-
|
|
51
|
+
.input-autocomplete__value_znt2f {
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
text-overflow: ellipsis;
|
|
54
54
|
text-align: left;
|
|
55
55
|
}
|
|
56
|
-
.input-
|
|
56
|
+
.input-autocomplete__focusVisible_znt2f {
|
|
57
57
|
outline: 2px solid var(--focus-color);
|
|
58
58
|
outline-offset: 2px;
|
|
59
59
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"component":"input-
|
|
3
|
+
const styles = {"component":"input-autocomplete__component_znt2f","field":"input-autocomplete__field_znt2f","disabled":"input-autocomplete__disabled_znt2f","errorIcon":"input-autocomplete__errorIcon_znt2f","successIcon":"input-autocomplete__successIcon_znt2f","placeholder":"input-autocomplete__placeholder_znt2f","contentWrapper":"input-autocomplete__contentWrapper_znt2f","value":"input-autocomplete__value_znt2f","focusVisible":"input-autocomplete__focusVisible_znt2f"};
|
|
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": "14.0.
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"module": "./esm/index.js",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@alfalab/core-components-form-control": "^14.0.
|
|
14
|
-
"@alfalab/core-components-input": "^17.0.
|
|
15
|
-
"@alfalab/core-components-mq": "^6.0.
|
|
16
|
-
"@alfalab/core-components-popover": "^8.0.
|
|
17
|
-
"@alfalab/core-components-select": "^19.0.
|
|
18
|
-
"@alfalab/core-components-shared": "^2.0.
|
|
19
|
-
"@alfalab/core-components-status-badge": "^3.0.
|
|
13
|
+
"@alfalab/core-components-form-control": "^14.0.1",
|
|
14
|
+
"@alfalab/core-components-input": "^17.0.1",
|
|
15
|
+
"@alfalab/core-components-mq": "^6.0.1",
|
|
16
|
+
"@alfalab/core-components-popover": "^8.0.1",
|
|
17
|
+
"@alfalab/core-components-select": "^19.0.1",
|
|
18
|
+
"@alfalab/core-components-shared": "^2.0.1",
|
|
19
|
+
"@alfalab/core-components-status-badge": "^3.0.1",
|
|
20
20
|
"@alfalab/hooks": "^1.13.1",
|
|
21
21
|
"@maskito/core": "^1.7.0",
|
|
22
22
|
"classnames": "^2.5.1",
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"access": "public",
|
|
33
33
|
"directory": "dist"
|
|
34
34
|
},
|
|
35
|
-
"themesVersion": "15.0.
|
|
36
|
-
"varsVersion": "11.0.
|
|
35
|
+
"themesVersion": "15.0.1",
|
|
36
|
+
"varsVersion": "11.0.1"
|
|
37
37
|
}
|