@linzjs/lui 22.10.3 → 22.12.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/assets/svg-content.tsx +11 -0
- package/dist/components/LuiTabs/LuiTab/LuiTab.d.ts +1 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +10 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +9 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiTabs/LuiTab/LuiTab.scss +19 -2
- package/package.json +1 -1
|
@@ -23,9 +23,11 @@
|
|
|
23
23
|
.LuiTabsGroup--justified & {
|
|
24
24
|
width: 100%;
|
|
25
25
|
}
|
|
26
|
+
|
|
27
|
+
&--warning,
|
|
26
28
|
&--error {
|
|
27
|
-
// Border bottom doesn't cover the grey line underneath,
|
|
28
|
-
// so adding an after element to be offset by 1px to cover the line in a nice
|
|
29
|
+
// Border bottom doesn't cover the grey line underneath,
|
|
30
|
+
// so adding an after element to be offset by 1px to cover the line in a nice red/orange.
|
|
29
31
|
&:after {
|
|
30
32
|
display: block;
|
|
31
33
|
content: "";
|
|
@@ -34,9 +36,20 @@
|
|
|
34
36
|
right: 0;
|
|
35
37
|
bottom: -1px;
|
|
36
38
|
height: 1px;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
&--error {
|
|
42
|
+
&:after {
|
|
37
43
|
background-color: colors.$engine;
|
|
38
44
|
}
|
|
39
45
|
}
|
|
46
|
+
&--warning {
|
|
47
|
+
&:after {
|
|
48
|
+
background-color: colors.$warning;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
40
53
|
|
|
41
54
|
&:disabled{
|
|
42
55
|
cursor: not-allowed;
|
|
@@ -73,3 +86,7 @@
|
|
|
73
86
|
.tabErrorIcon {
|
|
74
87
|
fill: colors.$engine;
|
|
75
88
|
}
|
|
89
|
+
|
|
90
|
+
.tabWarningIcon {
|
|
91
|
+
fill: colors.$warning;
|
|
92
|
+
}
|
package/package.json
CHANGED