mf-styling 3.2.3 → 3.2.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-styling",
3
- "version": "3.2.3",
3
+ "version": "3.2.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -44,31 +44,30 @@
44
44
  ],
45
45
  "license": "BSD-2-Clause",
46
46
  "scripts": {
47
- "prepare": "npm run prepare:vite",
47
+ "prepare": "node --run prepare:vite",
48
48
  "prepare:vite": "vite build",
49
49
  "start": "vite",
50
- "test": "npm run test:cafe",
50
+ "test": "node --run test:cafe",
51
51
  "test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs --esm -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
52
52
  "lint:css": "stylelint ./src/*.css",
53
- "lint": "npm run lint:css",
53
+ "lint": "node --run lint:css",
54
54
  "preview": "vite preview"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@semantic-release/commit-analyzer": "^13.0.0",
58
58
  "@semantic-release/exec": "^6.0.3",
59
- "@semantic-release/github": "^11.0.0",
59
+ "@semantic-release/github": "^11.0.1",
60
60
  "@semantic-release/release-notes-generator": "^14.0.1",
61
- "autoprefixer": "^10.4.20",
62
- "npm-pkgbuild": "^15.5.3",
63
- "semantic-release": "^24.1.1",
64
- "stylelint": "^16.9.0",
61
+ "npm-pkgbuild": "^15.6.5",
62
+ "semantic-release": "^24.2.0",
63
+ "stylelint": "^16.10.0",
65
64
  "stylelint-config-standard": "^36.0.1",
66
- "testcafe": "^3.6.2",
67
- "vite": "^5.4.8",
65
+ "testcafe": "^3.7.0",
66
+ "vite": "^5.4.10",
68
67
  "vite-plugin-compression2": "^1.3.0"
69
68
  },
70
69
  "optionalDependencies": {
71
- "mf-hosting-frontend": "^3.7.1"
70
+ "mf-hosting-frontend": "^3.8.1"
72
71
  },
73
72
  "repository": {
74
73
  "type": "git",
package/src/button.css CHANGED
@@ -53,12 +53,14 @@ button + .failed {
53
53
  }
54
54
 
55
55
  .button-group button:is(:first-child) {
56
- border-radius: var(--border-radius) 0 0 var(--border-radius);
56
+ border-top-left-radius: var(--border-radius);
57
+ border-bottom-left-radius: var(--border-radius);
57
58
  margin: var(--button-margin) 0 var(--button-margin) var(--button-margin);
58
59
  }
59
60
 
60
61
  .button-group button:is(:last-child) {
61
- border-radius: 0 var(--border-radius) var(--border-radius) 0;
62
+ border-top-right-radius: var(--border-radius);
63
+ border-bottom-right-radius: var(--border-radius);
62
64
  margin: var(--button-margin) var(--button-margin) var(--button-margin) 0;
63
65
  }
64
66
 
package/src/card.css CHANGED
@@ -31,12 +31,6 @@
31
31
  cursor: pointer;
32
32
  }
33
33
 
34
- .card.small,
35
- .card.medium,
36
- .card.large {
37
- position: relative;
38
- }
39
-
40
34
  .card.small {
41
35
  height: 300px;
42
36
  }
@@ -15,12 +15,14 @@
15
15
  }
16
16
 
17
17
  [aria-label="pagination"] a:is(:first-child) {
18
- border-radius: var(--border-radius) 0 0 var(--border-radius);
18
+ border-top-left-radius: var(--border-radius);
19
+ border-bottom-left-radius: var(--border-radius);
19
20
  margin: var(--button-margin) 0 var(--button-margin) var(--button-margin);
20
21
  }
21
22
 
22
23
  [aria-label="pagination"] a:is(:last-child) {
23
- border-radius: 0 var(--border-radius) var(--border-radius) 0;
24
+ border-top-right-radius: var(--border-radius);
25
+ border-bottom-right-radius: var(--border-radius);
24
26
  margin: var(--button-margin) var(--button-margin) var(--button-margin) 0;
25
27
  }
26
28