mf-styling 3.0.5 → 3.1.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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/src/table.css +21 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-styling",
3
- "version": "3.0.5",
3
+ "version": "3.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -47,26 +47,26 @@
47
47
  "prepare": "vite build",
48
48
  "start": "vite",
49
49
  "test": "npm run test:cafe",
50
- "test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs --esm -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
50
+ "test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
51
51
  "lint:css": "stylelint ./src/*.css",
52
52
  "lint": "npm run lint:css",
53
53
  "preview": "vite preview"
54
54
  },
55
55
  "devDependencies": {
56
- "@semantic-release/commit-analyzer": "^10.0.4",
56
+ "@semantic-release/commit-analyzer": "^11.0.0",
57
57
  "@semantic-release/exec": "^6.0.3",
58
- "@semantic-release/release-notes-generator": "^11.0.7",
58
+ "@semantic-release/release-notes-generator": "^12.0.0",
59
59
  "autoprefixer": "^10.4.15",
60
- "npm-pkgbuild": "^12.1.1",
61
- "semantic-release": "^21.1.1",
62
- "stylelint": "^15.10.3",
60
+ "npm-pkgbuild": "^12.3.1",
61
+ "semantic-release": "^22.0.5",
62
+ "stylelint": "^15.11.0",
63
63
  "stylelint-config-standard": "^34.0.0",
64
64
  "testcafe": "^3.3.0",
65
- "vite": "^4.4.9",
66
- "vite-plugin-compression2": "^0.10.4"
65
+ "vite": "^4.5.0",
66
+ "vite-plugin-compression2": "^0.11.0"
67
67
  },
68
68
  "optionalDependencies": {
69
- "mf-hosting-frontend": "^2.2.1"
69
+ "mf-hosting-frontend": "^2.2.4"
70
70
  },
71
71
  "repository": {
72
72
  "type": "git",
package/src/table.css CHANGED
@@ -17,6 +17,23 @@ td {
17
17
  padding: var(--table-padding);
18
18
  }
19
19
 
20
+
21
+ .bordered-light-left {
22
+ border-left: 1px dotted var(--color-neutral-50);
23
+ }
24
+
25
+ .bordered-light-right {
26
+ border-right: 1px dotted var(--color-neutral-50);
27
+ }
28
+
29
+ .bordered-light-bottom {
30
+ border-bottom: 1px dotted var(--color-neutral-50);
31
+ }
32
+
33
+ .bordered-light-top {
34
+ border-top: 1px dotted var(--color-neutral-50);
35
+ }
36
+
20
37
  .bordered :is(td, th) {
21
38
  border: 1px solid var(--color-neutral-300);
22
39
  }
@@ -39,13 +56,14 @@ td {
39
56
  inset-block-end: 0;
40
57
  }
41
58
 
42
- th > input {
59
+ th input {
43
60
  margin: 0.2rem;
44
61
  padding: 0.1rem;
45
62
  border: 0;
46
63
  border-radius: 0;
64
+ font-size: 0.5rem;
47
65
  }
48
66
 
49
- th > input:not(:focus) {
50
- font-size: 0.5rem;
67
+ th input:is(:focus) {
68
+ font-size: 0.8rem;
51
69
  }