create-prisma-php-app 1.26.538 → 1.26.539
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.
|
@@ -74,6 +74,9 @@ class TwMerge
|
|
|
74
74
|
// **Flexbox alignment classes**
|
|
75
75
|
"justify" => "/^justify-(start|end|center|between|around|evenly)$/",
|
|
76
76
|
|
|
77
|
+
// **Width classes**
|
|
78
|
+
"w" => "/^w-(full|[0-9]+|\\[.+\\])$/",
|
|
79
|
+
|
|
77
80
|
// **Other utility classes can be added here**
|
|
78
81
|
];
|
|
79
82
|
|
|
@@ -123,6 +126,9 @@ class TwMerge
|
|
|
123
126
|
// **Flexbox alignment conflict group**
|
|
124
127
|
"justify" => ["justify"],
|
|
125
128
|
|
|
129
|
+
// **Width conflict group**
|
|
130
|
+
"w" => ["w"],
|
|
131
|
+
|
|
126
132
|
// **Add other conflict groups as needed**
|
|
127
133
|
];
|
|
128
134
|
|