@linzjs/lui 17.52.2 → 17.53.0
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/CHANGELOG.md +14 -0
- package/dist/components/LuiBadge/LuiBadge.d.ts +5 -2
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/lui.css +22 -2
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +14 -2
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiBadge/LuiBadge.scss +21 -1
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +4 -3
- package/package.json +2 -2
|
@@ -45,7 +45,27 @@
|
|
|
45
45
|
background: colors.$snow;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.LuiBadge--warning {
|
|
48
|
+
.LuiBadge--variation-warning {
|
|
49
49
|
border-color: colors.$warning;
|
|
50
50
|
color: colors.$warning;
|
|
51
51
|
}
|
|
52
|
+
|
|
53
|
+
.LuiBadge--variation-info {
|
|
54
|
+
border-color: colors.$info;
|
|
55
|
+
color: colors.$info;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.LuiBadge--variation-warning.LuiBadge--fill-color {
|
|
59
|
+
background-color: colors.$warning;
|
|
60
|
+
color: colors.$snow;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.LuiBadge--variation-info.LuiBadge--fill-color {
|
|
64
|
+
background-color: colors.$info;
|
|
65
|
+
color: colors.$snow;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.LuiBadge--variation-default.LuiBadge--fill-color {
|
|
69
|
+
background-color: colors.$fuscous;
|
|
70
|
+
color: colors.$snow
|
|
71
|
+
}
|
|
@@ -100,16 +100,17 @@ $label-line-height: spacing.$unit-md;
|
|
|
100
100
|
border-color: colors.$warning;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.isDisabled
|
|
103
|
+
.isDisabled &,
|
|
104
|
+
&:disabled {
|
|
104
105
|
border-color: colors.$silver;
|
|
105
106
|
background-color: colors.$lily;
|
|
106
107
|
cursor: not-allowed;
|
|
107
108
|
}
|
|
108
109
|
|
|
109
|
-
&[type=
|
|
110
|
+
&[type='date'] {
|
|
110
111
|
padding-right: spacing.$unit-sm;
|
|
111
112
|
}
|
|
112
|
-
|
|
113
|
+
|
|
113
114
|
&:invalid:not(:focus) {
|
|
114
115
|
border-color: colors.$error;
|
|
115
116
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "17.
|
|
2
|
+
"version": "17.53.0",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"html-loader": "^1.1.0",
|
|
118
118
|
"husky": "^4.3.0",
|
|
119
119
|
"jest-axe": "^3.5.0",
|
|
120
|
-
"jest-canvas-mock": "2.
|
|
120
|
+
"jest-canvas-mock": "2.5.0",
|
|
121
121
|
"msw": "^0.22.2",
|
|
122
122
|
"npm-run-all": "^4.1.5",
|
|
123
123
|
"pretty-quick": "^3.1.1",
|