@udixio/tailwind 2.3.1 → 2.3.2
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 +10 -0
- package/dist/browser.cjs +1 -1
- package/dist/browser.js +2 -2
- package/dist/node.cjs +1 -1
- package/dist/node.js +2 -2
- package/dist/{tailwind.plugin-Bv15RDPq.js → tailwind.plugin-Bb39ytUc.js} +3 -3
- package/dist/{tailwind.plugin-DNLSzX2F.cjs → tailwind.plugin-CKDthKVL.cjs} +3 -3
- package/package.json +1 -1
- package/src/plugins-tailwind/animation.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 2.3.2 (2025-10-16)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **animation:** update variable names for consistency with CSS conventions ([b13c01c](https://github.com/Udixio/UI/commit/b13c01c))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Joël VIGREUX
|
|
10
|
+
|
|
1
11
|
## 2.3.1 (2025-10-16)
|
|
2
12
|
|
|
3
13
|
### 🩹 Fixes
|
package/dist/browser.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
-
const tailwind_plugin = require("./tailwind.plugin-
|
|
3
|
+
const tailwind_plugin = require("./tailwind.plugin-CKDthKVL.cjs");
|
|
4
4
|
exports.TailwindImplPluginBrowser = tailwind_plugin.TailwindImplPluginBrowser;
|
|
5
5
|
exports.TailwindPlugin = tailwind_plugin.TailwindPlugin;
|
|
6
6
|
exports.animation = tailwind_plugin.animation;
|
package/dist/browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { m as main } from "./tailwind.plugin-
|
|
2
|
-
import { T, b, a, f, s } from "./tailwind.plugin-
|
|
1
|
+
import { m as main } from "./tailwind.plugin-Bb39ytUc.js";
|
|
2
|
+
import { T, b, a, f, s } from "./tailwind.plugin-Bb39ytUc.js";
|
|
3
3
|
export {
|
|
4
4
|
T as TailwindImplPluginBrowser,
|
|
5
5
|
b as TailwindPlugin,
|
package/dist/node.cjs
CHANGED
|
@@ -24,7 +24,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
24
|
));
|
|
25
25
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
26
26
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
27
|
-
const tailwind_plugin = require("./tailwind.plugin-
|
|
27
|
+
const tailwind_plugin = require("./tailwind.plugin-CKDthKVL.cjs");
|
|
28
28
|
const theme = require("@udixio/theme");
|
|
29
29
|
const fs = require("fs");
|
|
30
30
|
const console = require("node:console");
|
package/dist/node.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
|
-
import { T as TailwindImplPluginBrowser, m as main } from "./tailwind.plugin-
|
|
5
|
-
import { a, f, s } from "./tailwind.plugin-
|
|
4
|
+
import { T as TailwindImplPluginBrowser, m as main } from "./tailwind.plugin-Bb39ytUc.js";
|
|
5
|
+
import { a, f, s } from "./tailwind.plugin-Bb39ytUc.js";
|
|
6
6
|
import { PluginAbstract, FontPlugin } from "@udixio/theme";
|
|
7
7
|
import * as fs from "fs";
|
|
8
8
|
import * as console from "node:console";
|
|
@@ -337,7 +337,7 @@ const animation = plugin.withOptions(
|
|
|
337
337
|
matchUtilities(
|
|
338
338
|
{
|
|
339
339
|
[`${prefix}-duration`]: (value) => ({
|
|
340
|
-
[
|
|
340
|
+
[`--${prefix}-duration`]: value
|
|
341
341
|
})
|
|
342
342
|
},
|
|
343
343
|
{
|
|
@@ -357,7 +357,7 @@ const animation = plugin.withOptions(
|
|
|
357
357
|
}
|
|
358
358
|
);
|
|
359
359
|
matchUtilities(
|
|
360
|
-
{ [`${prefix}-delay`]: (value) => ({ [
|
|
360
|
+
{ [`${prefix}-delay`]: (value) => ({ [`--${prefix}-delay`]: value }) },
|
|
361
361
|
{
|
|
362
362
|
values: {
|
|
363
363
|
0: "0ms",
|
|
@@ -376,7 +376,7 @@ const animation = plugin.withOptions(
|
|
|
376
376
|
}
|
|
377
377
|
);
|
|
378
378
|
matchUtilities(
|
|
379
|
-
{ [`${prefix}-ease`]: (value) => ({ [
|
|
379
|
+
{ [`${prefix}-ease`]: (value) => ({ [`--${prefix}-ease`]: value }) },
|
|
380
380
|
{
|
|
381
381
|
values: {
|
|
382
382
|
linear: "linear",
|
|
@@ -338,7 +338,7 @@ const animation = plugin.withOptions(
|
|
|
338
338
|
matchUtilities(
|
|
339
339
|
{
|
|
340
340
|
[`${prefix}-duration`]: (value) => ({
|
|
341
|
-
[
|
|
341
|
+
[`--${prefix}-duration`]: value
|
|
342
342
|
})
|
|
343
343
|
},
|
|
344
344
|
{
|
|
@@ -358,7 +358,7 @@ const animation = plugin.withOptions(
|
|
|
358
358
|
}
|
|
359
359
|
);
|
|
360
360
|
matchUtilities(
|
|
361
|
-
{ [`${prefix}-delay`]: (value) => ({ [
|
|
361
|
+
{ [`${prefix}-delay`]: (value) => ({ [`--${prefix}-delay`]: value }) },
|
|
362
362
|
{
|
|
363
363
|
values: {
|
|
364
364
|
0: "0ms",
|
|
@@ -377,7 +377,7 @@ const animation = plugin.withOptions(
|
|
|
377
377
|
}
|
|
378
378
|
);
|
|
379
379
|
matchUtilities(
|
|
380
|
-
{ [`${prefix}-ease`]: (value) => ({ [
|
|
380
|
+
{ [`${prefix}-ease`]: (value) => ({ [`--${prefix}-ease`]: value }) },
|
|
381
381
|
{
|
|
382
382
|
values: {
|
|
383
383
|
linear: "linear",
|
package/package.json
CHANGED
|
@@ -433,7 +433,7 @@ export const animation = plugin.withOptions(
|
|
|
433
433
|
matchUtilities(
|
|
434
434
|
{
|
|
435
435
|
[`${prefix}-duration`]: (value) => ({
|
|
436
|
-
[
|
|
436
|
+
[`--${prefix}-duration`]: value,
|
|
437
437
|
}),
|
|
438
438
|
},
|
|
439
439
|
{
|
|
@@ -454,7 +454,7 @@ export const animation = plugin.withOptions(
|
|
|
454
454
|
);
|
|
455
455
|
|
|
456
456
|
matchUtilities(
|
|
457
|
-
{ [`${prefix}-delay`]: (value) => ({ [
|
|
457
|
+
{ [`${prefix}-delay`]: (value) => ({ [`--${prefix}-delay`]: value }) },
|
|
458
458
|
{
|
|
459
459
|
values: {
|
|
460
460
|
0: '0ms',
|
|
@@ -474,7 +474,7 @@ export const animation = plugin.withOptions(
|
|
|
474
474
|
);
|
|
475
475
|
|
|
476
476
|
matchUtilities(
|
|
477
|
-
{ [`${prefix}-ease`]: (value) => ({ [
|
|
477
|
+
{ [`${prefix}-ease`]: (value) => ({ [`--${prefix}-ease`]: value }) },
|
|
478
478
|
{
|
|
479
479
|
values: {
|
|
480
480
|
linear: 'linear',
|