@thi.ng/meta-css 0.14.2 → 0.15.1
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 +7 -1
- package/README.md +8 -1
- package/package.json +5 -5
- package/specs/typography.mcss.json +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-08-
|
|
3
|
+
- **Last updated**: 2024-08-28T14:01:19Z
|
|
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.15.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/meta-css@0.15.0) (2024-08-28)
|
|
13
|
+
|
|
14
|
+
#### 🚀 Features
|
|
15
|
+
|
|
16
|
+
- update font-family tpl ([56dd1d3](https://github.com/thi-ng/umbrella/commit/56dd1d3))
|
|
17
|
+
|
|
12
18
|
## [0.14.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/meta-css@0.14.0) (2024-08-18)
|
|
13
19
|
|
|
14
20
|
#### 🚀 Features
|
package/README.md
CHANGED
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
- [Color scheme](#color-scheme)
|
|
103
103
|
- [Dimensions](#dimensions)
|
|
104
104
|
- [Font families](#font-families)
|
|
105
|
+
- [Font size](#font-size)
|
|
105
106
|
- [Fx](#fx)
|
|
106
107
|
- [Grid layout](#grid-layout)
|
|
107
108
|
- [Layout](#layout)
|
|
@@ -1115,7 +1116,7 @@ These are readily usable (and used by a growing number of example projects in
|
|
|
1115
1116
|
this repo), but also are provided as starting point to define your own custom
|
|
1116
1117
|
framework(s)...
|
|
1117
1118
|
|
|
1118
|
-
Currently, there are
|
|
1119
|
+
Currently, there are 953 CSS utility classes (incl. 73 templates) defined in "MetaCSS base" (v0.13.0):
|
|
1119
1120
|
|
|
1120
1121
|
### Classes by category
|
|
1121
1122
|
|
|
@@ -2578,6 +2579,12 @@ Sets width to given value
|
|
|
2578
2579
|
|
|
2579
2580
|
- **body**: CSS value/definition
|
|
2580
2581
|
|
|
2582
|
+
#### Font size
|
|
2583
|
+
|
|
2584
|
+
##### `font-size(body)`
|
|
2585
|
+
|
|
2586
|
+
- **body**: CSS value/definition
|
|
2587
|
+
|
|
2581
2588
|
#### Fx
|
|
2582
2589
|
|
|
2583
2590
|
##### `bg-blur(radius)`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/meta-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Data-driven CSS framework codegen, transpiler & bundler",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"@thi.ng/compare": "^2.4.1",
|
|
49
49
|
"@thi.ng/errors": "^2.5.15",
|
|
50
50
|
"@thi.ng/file-io": "^2.1.11",
|
|
51
|
-
"@thi.ng/hiccup-css": "^2.7.
|
|
51
|
+
"@thi.ng/hiccup-css": "^2.7.22",
|
|
52
52
|
"@thi.ng/logger": "^3.0.19",
|
|
53
53
|
"@thi.ng/memoize": "^3.3.11",
|
|
54
|
-
"@thi.ng/rstream": "^9.0.
|
|
54
|
+
"@thi.ng/rstream": "^9.0.2",
|
|
55
55
|
"@thi.ng/strings": "^3.8.4",
|
|
56
56
|
"@thi.ng/text-format": "^2.2.12",
|
|
57
|
-
"@thi.ng/transducers": "^9.2.
|
|
57
|
+
"@thi.ng/transducers": "^9.2.2"
|
|
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": "
|
|
113
|
+
"gitHead": "9f71f7f82fed2a980078a96bdafd2e706f526c75\n"
|
|
114
114
|
}
|