Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/homepage.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ Addons may contains any tools, settings and styles. Addons now at the **preview*
- Atomic CSS Deep Dive: [EN](https://dev.to/mr150/atomic-css-deep-dive-1hee), [RU](https://habr.com/ru/articles/833712/)
- [mlut - a new word in the Utility-First CSS approach](https://dev.to/mr150/mlut-a-new-word-in-the-utility-first-css-approach-gbl)
- How to make one plugin for all frontend bundlers at once: [RU](https://habr.com/ru/articles/856028/)
- Interactive lesson: [EN](https://htmlacademy.org/tutorials/17), [RU](https://htmlacademy.ru/demos/183)
- Interactive lesson: [EN](https://htmlacademy.org/tutorials/17), [RU](https://htmlacademy.ru/demos/183/step/17)
- I hired a junior dev for my open source project. This is what happened: [RU](https://habr.com/ru/articles/962468/)

</section>

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mlut/core",
"version": "2.1.3",
"version": "2.2.0",
"description": "Atomic CSS toolkit with Sass and ergonomics for creating styles of any complexity",
"author": "mr150",
"type": "module",
Expand Down
59 changes: 59 additions & 0 deletions packages/core/src/sass/tools/settings/common/_utils.scss
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,27 @@ $utils-db: (
),
),
'Txuo': text-underline-offset,
'Txwm': (
'properties': text-wrap-mode,
'keywords': (
'': nowrap,
'w': wrap,
'n': nowrap,
),
),
'Txws': (
'properties': text-wrap-style,
'keywords': (
'b': balance,
's': stable,
'p': pretty,
),
),
'Txw': (
'properties': text-wrap,
'keywords': (Txwm, Txws),
),

'Txi': (
'properties': text-indent,
'keywords': (
Expand Down Expand Up @@ -755,6 +776,11 @@ $utils-db: (
's': scroll,
),
),
'Bgbm': (
'properties': background-blend-mode,
'keywords': 'blend-mode',
'multi-list-separator': ml.$tULs1,
),
'Bgcl': (
'properties': background-clip,
'keywords': 'box-ext',
Expand Down Expand Up @@ -1373,6 +1399,15 @@ $utils-db: (
'multi-list-separator': ml.$tULs1,
'keywords': 'transition-props'
),
'Tsb':(
'properties':'transition-behavior',
'multi-list-separator':ml.$tULs1,
'keywords':(
'': allow-discrete,
'n': normal,
'ad': allow-discrete,
),
),
'Tsd': (
'properties': transition-duration,
'multi-list-separator': ml.$tULs1,
Expand Down Expand Up @@ -1470,6 +1505,10 @@ $utils-db: (
'': none,
),
),
'Mibm': (
'properties': mix-blend-mode,
'keywords': 'blend-mode'
),
'Us': (
'properties': user-select,
'keywords': (
Expand Down Expand Up @@ -1712,6 +1751,26 @@ $utils-db: (
'pb': padding-box,
't': text,
),
'blend-mode': (
'n': normal,
'm': multiply,
's': screen,
'o': overlay,
'd': darken,
'l': lighten,
'cd': color-dodge,
'cb': color-burn,
'hrl': hard-light,
'sfl': soft-light,
'e': exclusion,
'h': hue,
'st': saturation,
'c': color,
'lm': luminosity,
'pl': plus-lighter,
'pd': plus-darker,

),
'grid-area': (
's': span,
),
Expand Down