mf-styling 1.7.29 → 1.7.31
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/package.json +3 -15
- package/src/color.css +6 -1
- package/src/form.css +5 -2
- package/src/table.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mf-styling",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.31",
|
|
4
4
|
"files": [
|
|
5
5
|
"src/button.css",
|
|
6
6
|
"src/card.css",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
52
52
|
"@semantic-release/exec": "^6.0.3",
|
|
53
53
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
54
|
-
"npm-pkgbuild": "^10.15.
|
|
54
|
+
"npm-pkgbuild": "^10.15.20",
|
|
55
55
|
"semantic-release": "^19.0.5",
|
|
56
56
|
"stylelint": "^14.16.0",
|
|
57
57
|
"stylelint-config-standard": "^29.0.0",
|
|
58
58
|
"testcafe": "^2.1.0",
|
|
59
|
-
"vite": "^4.0.0
|
|
59
|
+
"vite": "^4.0.0"
|
|
60
60
|
},
|
|
61
61
|
"optionalDependencies": {
|
|
62
62
|
"mf-hosting": "^1.7.9"
|
|
@@ -91,12 +91,6 @@
|
|
|
91
91
|
"publishCmd": "npx npm-pkgbuild --available --continue --publish dist"
|
|
92
92
|
}
|
|
93
93
|
],
|
|
94
|
-
[
|
|
95
|
-
"@semantic-release/exec",
|
|
96
|
-
{
|
|
97
|
-
"publishCmd": "npx npm-pkgbuild --available --continue"
|
|
98
|
-
}
|
|
99
|
-
],
|
|
100
94
|
[
|
|
101
95
|
"@semantic-release/github",
|
|
102
96
|
{
|
|
@@ -111,12 +105,6 @@
|
|
|
111
105
|
}
|
|
112
106
|
]
|
|
113
107
|
}
|
|
114
|
-
],
|
|
115
|
-
[
|
|
116
|
-
"@semantic-release/exec",
|
|
117
|
-
{
|
|
118
|
-
"publishCmd": "npx npm-pkgbuild --available --continue --verbose"
|
|
119
|
-
}
|
|
120
108
|
]
|
|
121
109
|
]
|
|
122
110
|
},
|
package/src/color.css
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
--color-accent-800: #115e59;
|
|
11
11
|
--color-accent-900: #134e4a;
|
|
12
12
|
--color-warn-50: #fff1f2;
|
|
13
|
-
--color-warn-50-80: #fff1f280;
|
|
14
13
|
--color-warn-100: #ffe4e6;
|
|
15
14
|
--color-warn-200: #fecdd3;
|
|
16
15
|
--color-warn-300: #fda4af;
|
|
@@ -20,6 +19,12 @@
|
|
|
20
19
|
--color-warn-700: #be123c;
|
|
21
20
|
--color-warn-800: #9f1239;
|
|
22
21
|
--color-warn-900: #881337;
|
|
22
|
+
--color-warn-50-80: #fff1f280;
|
|
23
|
+
--color-warn-100-80: #ffe4e680;
|
|
24
|
+
--color-warn-300-80: #fda4af80;
|
|
25
|
+
--color-warn-200-80: #fecdd380;
|
|
26
|
+
--color-warn-400-80: #fb718580;
|
|
27
|
+
--color-warn-500-80: #f43f5e80;
|
|
23
28
|
--color-neutral-50: #fafafa;
|
|
24
29
|
--color-neutral-100: #f4f4f5;
|
|
25
30
|
--color-neutral-200: #e4e4e7;
|
package/src/form.css
CHANGED
|
@@ -16,7 +16,6 @@ label {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
input {
|
|
19
|
-
display: block;
|
|
20
19
|
height: calc(1.25em + 0.75rem);
|
|
21
20
|
margin-bottom: 0.5rem;
|
|
22
21
|
padding: 0.25rem 0.5rem;
|
|
@@ -38,7 +37,11 @@ input:disabled {
|
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
input:invalid {
|
|
41
|
-
background-color: var(--color-warn-
|
|
40
|
+
background-color: var(--color-warn-200-80);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
input:focus:invalid {
|
|
44
|
+
background-color: var(--color-warn-300-80);
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
input:optional {
|