@thi.ng/meta-css 0.12.11 → 0.13.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-08-10T15:03:07Z
3
+ - **Last updated**: 2024-08-13T19:40:07Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ## [0.13.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/meta-css@0.13.0) (2024-08-13)
13
+
14
+ #### 🚀 Features
15
+
16
+ - add `br-pill` variations ([c293f5f](https://github.com/thi-ng/umbrella/commit/c293f5f))
17
+
12
18
  ### [0.12.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/meta-css@0.12.2) (2024-06-21)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -1114,7 +1114,7 @@ These are readily usable (and used by a growing number of example projects in
1114
1114
  this repo), but also are provided as starting point to define your own custom
1115
1115
  framework(s)...
1116
1116
 
1117
- Currently, there are 946 CSS utility classes (incl. 70 templates) defined in "MetaCSS base" (v0.12.0):
1117
+ Currently, there are 950 CSS utility classes (incl. 70 templates) defined in "MetaCSS base" (v0.13.0):
1118
1118
 
1119
1119
  ### Classes by category
1120
1120
 
@@ -1268,10 +1268,14 @@ Currently, there are 946 CSS utility classes (incl. 70 templates) defined in "Me
1268
1268
 
1269
1269
  #### Border radius
1270
1270
 
1271
- <details><summary>27 items:</summary>
1271
+ <details><summary>31 items:</summary>
1272
1272
 
1273
1273
  - `br-100` (100%)
1274
1274
  - `br-pill` (9999px)
1275
+ - `br-pill-b` (bottom 50%)
1276
+ - `br-pill-l` (left 50%)
1277
+ - `br-pill-r` (right 50%)
1278
+ - `br-pill-t` (top 50%)
1275
1279
  - `br0` (0rem)
1276
1280
  - `br1` (.125rem)
1277
1281
  - `br2` (.25rem)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/meta-css",
3
- "version": "0.12.11",
3
+ "version": "0.13.0",
4
4
  "description": "Data-driven CSS framework codegen, transpiler & bundler",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -42,19 +42,19 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@thi.ng/api": "^8.11.8",
45
- "@thi.ng/args": "^2.3.40",
45
+ "@thi.ng/args": "^2.3.41",
46
46
  "@thi.ng/arrays": "^2.9.14",
47
47
  "@thi.ng/checks": "^3.6.10",
48
48
  "@thi.ng/compare": "^2.4.0",
49
49
  "@thi.ng/errors": "^2.5.14",
50
50
  "@thi.ng/file-io": "^2.1.10",
51
- "@thi.ng/hiccup-css": "^2.7.17",
51
+ "@thi.ng/hiccup-css": "^2.7.18",
52
52
  "@thi.ng/logger": "^3.0.18",
53
53
  "@thi.ng/memoize": "^3.3.10",
54
- "@thi.ng/rstream": "^8.5.10",
55
- "@thi.ng/strings": "^3.8.2",
54
+ "@thi.ng/rstream": "^8.5.11",
55
+ "@thi.ng/strings": "^3.8.3",
56
56
  "@thi.ng/text-format": "^2.2.11",
57
- "@thi.ng/transducers": "^9.0.13"
57
+ "@thi.ng/transducers": "^9.1.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@microsoft/api-extractor": "^7.47.5",
@@ -110,5 +110,5 @@
110
110
  "status": "alpha",
111
111
  "year": 2023
112
112
  },
113
- "gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
113
+ "gitHead": "e914ebbd81c56783c39cf746548c547cbacadc96\n"
114
114
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "info": {
3
3
  "name": "MetaCSS base",
4
- "version": "0.12.0"
4
+ "version": "0.13.0"
5
5
  },
6
6
  "media": {
7
7
  "ns": { "min-width": "640px" },
@@ -39,6 +39,28 @@
39
39
  "props": "border-radius",
40
40
  "values": { "100": "100%", "pill": "9999px" }
41
41
  },
42
+ {
43
+ "doc": { "group": "border radius", "desc": "<var> <v>" },
44
+ "name": "br-pill-<vid>",
45
+ "props": {
46
+ "border-top<var>-radius": "<v>",
47
+ "border-bottom<var>-radius": "<v>"
48
+ },
49
+ "values": [50],
50
+ "unit": "%",
51
+ "vars": ["l", "r"]
52
+ },
53
+ {
54
+ "doc": { "group": "border radius", "desc": "<var> <v>" },
55
+ "name": "br-pill-<vid>",
56
+ "props": {
57
+ "border<var>-left-radius": "<v>",
58
+ "border<var>-right-radius": "<v>"
59
+ },
60
+ "values": [50],
61
+ "unit": "%",
62
+ "vars": ["t", "b"]
63
+ },
42
64
  {
43
65
  "doc": { "group": "border width", "desc": "<var> <v>" },
44
66
  "name": "bw<vid><k>",