@alfalab/core-components-input-autocomplete 14.0.17-alfasans → 14.0.18-alfasans
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 +8 -8
|
@@ -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_n0dar","error":"input-autocomplete__error_n0dar"};
|
|
6
6
|
|
|
7
7
|
module.exports = styles;
|
|
8
8
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -16,29 +16,29 @@
|
|
|
16
16
|
--input-success-icon-display: flex;
|
|
17
17
|
--input-error-icon-not-alone-display: none;
|
|
18
18
|
}
|
|
19
|
-
.input-
|
|
19
|
+
.input-autocomplete__component_qyppq {
|
|
20
20
|
width: 100%;
|
|
21
21
|
outline: none;
|
|
22
22
|
}
|
|
23
|
-
.input-
|
|
23
|
+
.input-autocomplete__field_qyppq:not(.input-autocomplete__disabled_qyppq) {
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
|
-
.input-
|
|
26
|
+
.input-autocomplete__errorIcon_qyppq {
|
|
27
27
|
display: var(--input-error-icon-display);
|
|
28
28
|
}
|
|
29
|
-
* + .input-
|
|
29
|
+
* + .input-autocomplete__errorIcon_qyppq {
|
|
30
30
|
display: var(--input-error-icon-not-alone-display);
|
|
31
31
|
}
|
|
32
|
-
.input-
|
|
32
|
+
.input-autocomplete__successIcon_qyppq {
|
|
33
33
|
display: var(--input-success-icon-display);
|
|
34
34
|
}
|
|
35
|
-
.input-
|
|
35
|
+
.input-autocomplete__disabled_qyppq {
|
|
36
36
|
cursor: var(--disabled-cursor);
|
|
37
37
|
}
|
|
38
|
-
.input-
|
|
38
|
+
.input-autocomplete__placeholder_qyppq {
|
|
39
39
|
color: var(--color-light-text-secondary);
|
|
40
40
|
}
|
|
41
|
-
.input-
|
|
41
|
+
.input-autocomplete__contentWrapper_qyppq {
|
|
42
42
|
font-size: 16px;
|
|
43
43
|
line-height: 20px;
|
|
44
44
|
font-weight: 400;
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
overflow: hidden;
|
|
51
51
|
width: 100%;
|
|
52
52
|
}
|
|
53
|
-
.input-
|
|
53
|
+
.input-autocomplete__value_qyppq {
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
text-overflow: ellipsis;
|
|
56
56
|
text-align: left;
|
|
57
57
|
}
|
|
58
|
-
.input-
|
|
58
|
+
.input-autocomplete__focusVisible_qyppq {
|
|
59
59
|
outline: 2px solid var(--focus-color);
|
|
60
60
|
outline-offset: 2px;
|
|
61
61
|
}
|
|
@@ -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_qyppq","field":"input-autocomplete__field_qyppq","disabled":"input-autocomplete__disabled_qyppq","errorIcon":"input-autocomplete__errorIcon_qyppq","successIcon":"input-autocomplete__successIcon_qyppq","placeholder":"input-autocomplete__placeholder_qyppq","contentWrapper":"input-autocomplete__contentWrapper_qyppq","value":"input-autocomplete__value_qyppq","focusVisible":"input-autocomplete__focusVisible_qyppq"};
|
|
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_n0dar","error":"input-autocomplete__error_n0dar"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -16,29 +16,29 @@
|
|
|
16
16
|
--input-success-icon-display: flex;
|
|
17
17
|
--input-error-icon-not-alone-display: none;
|
|
18
18
|
}
|
|
19
|
-
.input-
|
|
19
|
+
.input-autocomplete__component_qyppq {
|
|
20
20
|
width: 100%;
|
|
21
21
|
outline: none;
|
|
22
22
|
}
|
|
23
|
-
.input-
|
|
23
|
+
.input-autocomplete__field_qyppq:not(.input-autocomplete__disabled_qyppq) {
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
|
-
.input-
|
|
26
|
+
.input-autocomplete__errorIcon_qyppq {
|
|
27
27
|
display: var(--input-error-icon-display);
|
|
28
28
|
}
|
|
29
|
-
* + .input-
|
|
29
|
+
* + .input-autocomplete__errorIcon_qyppq {
|
|
30
30
|
display: var(--input-error-icon-not-alone-display);
|
|
31
31
|
}
|
|
32
|
-
.input-
|
|
32
|
+
.input-autocomplete__successIcon_qyppq {
|
|
33
33
|
display: var(--input-success-icon-display);
|
|
34
34
|
}
|
|
35
|
-
.input-
|
|
35
|
+
.input-autocomplete__disabled_qyppq {
|
|
36
36
|
cursor: var(--disabled-cursor);
|
|
37
37
|
}
|
|
38
|
-
.input-
|
|
38
|
+
.input-autocomplete__placeholder_qyppq {
|
|
39
39
|
color: var(--color-light-text-secondary);
|
|
40
40
|
}
|
|
41
|
-
.input-
|
|
41
|
+
.input-autocomplete__contentWrapper_qyppq {
|
|
42
42
|
font-size: 16px;
|
|
43
43
|
line-height: 20px;
|
|
44
44
|
font-weight: 400;
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
overflow: hidden;
|
|
51
51
|
width: 100%;
|
|
52
52
|
}
|
|
53
|
-
.input-
|
|
53
|
+
.input-autocomplete__value_qyppq {
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
text-overflow: ellipsis;
|
|
56
56
|
text-align: left;
|
|
57
57
|
}
|
|
58
|
-
.input-
|
|
58
|
+
.input-autocomplete__focusVisible_qyppq {
|
|
59
59
|
outline: 2px solid var(--focus-color);
|
|
60
60
|
outline-offset: 2px;
|
|
61
61
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
var styles = {"component":"input-
|
|
3
|
+
var styles = {"component":"input-autocomplete__component_qyppq","field":"input-autocomplete__field_qyppq","disabled":"input-autocomplete__disabled_qyppq","errorIcon":"input-autocomplete__errorIcon_qyppq","successIcon":"input-autocomplete__successIcon_qyppq","placeholder":"input-autocomplete__placeholder_qyppq","contentWrapper":"input-autocomplete__contentWrapper_qyppq","value":"input-autocomplete__value_qyppq","focusVisible":"input-autocomplete__focusVisible_qyppq"};
|
|
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_n0dar","error":"input-autocomplete__error_n0dar"};
|
|
4
4
|
|
|
5
5
|
export { styles as default };
|
|
6
6
|
//# sourceMappingURL=index.module.css.js.map
|
|
@@ -16,29 +16,29 @@
|
|
|
16
16
|
--input-success-icon-display: flex;
|
|
17
17
|
--input-error-icon-not-alone-display: none;
|
|
18
18
|
}
|
|
19
|
-
.input-
|
|
19
|
+
.input-autocomplete__component_qyppq {
|
|
20
20
|
width: 100%;
|
|
21
21
|
outline: none;
|
|
22
22
|
}
|
|
23
|
-
.input-
|
|
23
|
+
.input-autocomplete__field_qyppq:not(.input-autocomplete__disabled_qyppq) {
|
|
24
24
|
cursor: pointer;
|
|
25
25
|
}
|
|
26
|
-
.input-
|
|
26
|
+
.input-autocomplete__errorIcon_qyppq {
|
|
27
27
|
display: var(--input-error-icon-display);
|
|
28
28
|
}
|
|
29
|
-
* + .input-
|
|
29
|
+
* + .input-autocomplete__errorIcon_qyppq {
|
|
30
30
|
display: var(--input-error-icon-not-alone-display);
|
|
31
31
|
}
|
|
32
|
-
.input-
|
|
32
|
+
.input-autocomplete__successIcon_qyppq {
|
|
33
33
|
display: var(--input-success-icon-display);
|
|
34
34
|
}
|
|
35
|
-
.input-
|
|
35
|
+
.input-autocomplete__disabled_qyppq {
|
|
36
36
|
cursor: var(--disabled-cursor);
|
|
37
37
|
}
|
|
38
|
-
.input-
|
|
38
|
+
.input-autocomplete__placeholder_qyppq {
|
|
39
39
|
color: var(--color-light-text-secondary);
|
|
40
40
|
}
|
|
41
|
-
.input-
|
|
41
|
+
.input-autocomplete__contentWrapper_qyppq {
|
|
42
42
|
font-size: 16px;
|
|
43
43
|
line-height: 20px;
|
|
44
44
|
font-weight: 400;
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
overflow: hidden;
|
|
51
51
|
width: 100%;
|
|
52
52
|
}
|
|
53
|
-
.input-
|
|
53
|
+
.input-autocomplete__value_qyppq {
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
text-overflow: ellipsis;
|
|
56
56
|
text-align: left;
|
|
57
57
|
}
|
|
58
|
-
.input-
|
|
58
|
+
.input-autocomplete__focusVisible_qyppq {
|
|
59
59
|
outline: 2px solid var(--focus-color);
|
|
60
60
|
outline-offset: 2px;
|
|
61
61
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import './index.css';
|
|
2
2
|
|
|
3
|
-
const styles = {"component":"input-
|
|
3
|
+
const styles = {"component":"input-autocomplete__component_qyppq","field":"input-autocomplete__field_qyppq","disabled":"input-autocomplete__disabled_qyppq","errorIcon":"input-autocomplete__errorIcon_qyppq","successIcon":"input-autocomplete__successIcon_qyppq","placeholder":"input-autocomplete__placeholder_qyppq","contentWrapper":"input-autocomplete__contentWrapper_qyppq","value":"input-autocomplete__value_qyppq","focusVisible":"input-autocomplete__focusVisible_qyppq"};
|
|
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.18-alfasans",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"build": "rollup -c ../../tools/rollup/rollup.config.mjs --silent"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@alfalab/core-components-form-control": "14.0.
|
|
17
|
-
"@alfalab/core-components-input": "17.1.
|
|
18
|
-
"@alfalab/core-components-mq": "6.0.
|
|
19
|
-
"@alfalab/core-components-popover": "8.0
|
|
20
|
-
"@alfalab/core-components-select": "19.
|
|
21
|
-
"@alfalab/core-components-shared": "2.2.
|
|
16
|
+
"@alfalab/core-components-form-control": "14.0.8-alfasans",
|
|
17
|
+
"@alfalab/core-components-input": "17.1.9-alfasans",
|
|
18
|
+
"@alfalab/core-components-mq": "6.0.6-alfasans",
|
|
19
|
+
"@alfalab/core-components-popover": "8.1.0-alfasans",
|
|
20
|
+
"@alfalab/core-components-select": "19.2.0-alfasans",
|
|
21
|
+
"@alfalab/core-components-shared": "2.2.2-alfasans",
|
|
22
22
|
"@alfalab/core-components-status-badge": "3.0.2-alfasans",
|
|
23
23
|
"@alfalab/hooks": "^1.17.0",
|
|
24
24
|
"@maskito/core": "^1.7.0",
|
|
@@ -35,6 +35,6 @@
|
|
|
35
35
|
"access": "public",
|
|
36
36
|
"directory": "dist"
|
|
37
37
|
},
|
|
38
|
-
"themesVersion": "15.
|
|
38
|
+
"themesVersion": "15.2.0-alfasans",
|
|
39
39
|
"varsVersion": "11.1.0-alfasans"
|
|
40
40
|
}
|