mf-styling 3.0.2 → 3.0.3

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.
Files changed (2) hide show
  1. package/package.json +10 -14
  2. package/src/form.css +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-styling",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -56,16 +56,17 @@
56
56
  "@semantic-release/commit-analyzer": "^10.0.1",
57
57
  "@semantic-release/exec": "^6.0.3",
58
58
  "@semantic-release/release-notes-generator": "^11.0.4",
59
- "autoprefixer": "^10.4.14",
60
- "npm-pkgbuild": "^11.9.0",
59
+ "autoprefixer": "^10.4.15",
60
+ "npm-pkgbuild": "^11.10.12",
61
61
  "semantic-release": "^21.0.7",
62
- "stylelint": "^15.10.1",
62
+ "stylelint": "^15.10.3",
63
63
  "stylelint-config-standard": "^34.0.0",
64
- "testcafe": "^3.0.1",
65
- "vite": "^4.4.4"
64
+ "testcafe": "^3.2.0",
65
+ "vite": "^4.4.9",
66
+ "vite-plugin-compression2": "^0.10.3"
66
67
  },
67
68
  "optionalDependencies": {
68
- "mf-hosting-frontend": "^1.11.2"
69
+ "mf-hosting-frontend": "^2.0.2"
69
70
  },
70
71
  "repository": {
71
72
  "type": "git",
@@ -139,7 +140,7 @@
139
140
  "template": {
140
141
  "inheritFrom": [
141
142
  "arlac77/template-css",
142
- "arlac77/template-pacman",
143
+ "arlac77/template-npm-pkgbuild",
143
144
  "arlac77/template-testcafe",
144
145
  "arlac77/template-vite",
145
146
  "arlac77/template-web-app"
@@ -147,10 +148,5 @@
147
148
  },
148
149
  "browserslist": [
149
150
  "last 1 version"
150
- ],
151
- "postcss": {
152
- "plugins": {
153
- "autoprefixer": {}
154
- }
155
- }
151
+ ]
156
152
  }
package/src/form.css CHANGED
@@ -36,10 +36,16 @@ input:disabled {
36
36
  pointer-events: none;
37
37
  }
38
38
 
39
- input:invalid {
39
+ input:user-invalid {
40
40
  background-color: var(--color-warn-200-80);
41
41
  }
42
42
 
43
+ @supports not selector(:user-invalid) {
44
+ input:invalid {
45
+ background-color: var(--color-warn-200-80);
46
+ }
47
+ }
48
+
43
49
  input:optional {
44
50
  background-color: var(--color-neutral-100);
45
51
  }