@removify/tailwind-preset 0.2.10 → 0.2.11
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/dist/{chunk-ZH7BDNIX.js → chunk-Y7GWGRSA.js} +6 -3
- package/dist/cli/index.cjs +6 -3
- package/dist/cli/index.js +1 -1
- package/dist/index.cjs +6 -3
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
|
@@ -205,9 +205,12 @@ var mainColors = {
|
|
|
205
205
|
950: "#641711"
|
|
206
206
|
},
|
|
207
207
|
rating: {
|
|
208
|
-
high: "#15A46E",
|
|
209
|
-
medium: "#EC5818",
|
|
210
|
-
low: "#
|
|
208
|
+
"high": "#15A46E",
|
|
209
|
+
"medium": "#EC5818",
|
|
210
|
+
"low": "#EA3529",
|
|
211
|
+
"high-star": "#86C1A3",
|
|
212
|
+
"medium-star": "#FCD288",
|
|
213
|
+
"low-star": "#F08C8A"
|
|
211
214
|
}
|
|
212
215
|
};
|
|
213
216
|
var colors = {
|
package/dist/cli/index.cjs
CHANGED
|
@@ -180,9 +180,12 @@ var mainColors = {
|
|
|
180
180
|
950: "#641711"
|
|
181
181
|
},
|
|
182
182
|
rating: {
|
|
183
|
-
high: "#15A46E",
|
|
184
|
-
medium: "#EC5818",
|
|
185
|
-
low: "#
|
|
183
|
+
"high": "#15A46E",
|
|
184
|
+
"medium": "#EC5818",
|
|
185
|
+
"low": "#EA3529",
|
|
186
|
+
"high-star": "#86C1A3",
|
|
187
|
+
"medium-star": "#FCD288",
|
|
188
|
+
"low-star": "#F08C8A"
|
|
186
189
|
}
|
|
187
190
|
};
|
|
188
191
|
var colors = {
|
package/dist/cli/index.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -261,9 +261,12 @@ var mainColors = {
|
|
|
261
261
|
950: "#641711"
|
|
262
262
|
},
|
|
263
263
|
rating: {
|
|
264
|
-
high: "#15A46E",
|
|
265
|
-
medium: "#EC5818",
|
|
266
|
-
low: "#
|
|
264
|
+
"high": "#15A46E",
|
|
265
|
+
"medium": "#EC5818",
|
|
266
|
+
"low": "#EA3529",
|
|
267
|
+
"high-star": "#86C1A3",
|
|
268
|
+
"medium-star": "#FCD288",
|
|
269
|
+
"low-star": "#F08C8A"
|
|
267
270
|
}
|
|
268
271
|
};
|
|
269
272
|
var colors = {
|
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import { Config } from 'tailwindcss';
|
|
|
3
3
|
declare const colorsNames: readonly ["primary", "bateau", "secondary", "pompelmo", "green", "fuchsia", "indigo", "neutral", "orange", "red", "amber", "seafoam"];
|
|
4
4
|
|
|
5
5
|
type ColorsNames = typeof colorsNames[number];
|
|
6
|
-
type RatingVariations = 'low' | 'high' | 'medium'
|
|
6
|
+
type RatingVariations = `${'low' | 'high' | 'medium'}${'' | '-star'}`;
|
|
7
7
|
type ColorsVariations = 'DEFAULT' | 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950;
|
|
8
8
|
interface MainColors {
|
|
9
9
|
black: string;
|
|
@@ -356,6 +356,9 @@ declare const colors: {
|
|
|
356
356
|
high: string;
|
|
357
357
|
medium: string;
|
|
358
358
|
low: string;
|
|
359
|
+
'high-star': string;
|
|
360
|
+
'medium-star': string;
|
|
361
|
+
'low-star': string;
|
|
359
362
|
};
|
|
360
363
|
};
|
|
361
364
|
|
|
@@ -640,6 +643,9 @@ declare const unocssTheme: {
|
|
|
640
643
|
high: string;
|
|
641
644
|
medium: string;
|
|
642
645
|
low: string;
|
|
646
|
+
'high-star': string;
|
|
647
|
+
'medium-star': string;
|
|
648
|
+
'low-star': string;
|
|
643
649
|
};
|
|
644
650
|
};
|
|
645
651
|
boxShadow: {
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Config } from 'tailwindcss';
|
|
|
3
3
|
declare const colorsNames: readonly ["primary", "bateau", "secondary", "pompelmo", "green", "fuchsia", "indigo", "neutral", "orange", "red", "amber", "seafoam"];
|
|
4
4
|
|
|
5
5
|
type ColorsNames = typeof colorsNames[number];
|
|
6
|
-
type RatingVariations = 'low' | 'high' | 'medium'
|
|
6
|
+
type RatingVariations = `${'low' | 'high' | 'medium'}${'' | '-star'}`;
|
|
7
7
|
type ColorsVariations = 'DEFAULT' | 50 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950;
|
|
8
8
|
interface MainColors {
|
|
9
9
|
black: string;
|
|
@@ -356,6 +356,9 @@ declare const colors: {
|
|
|
356
356
|
high: string;
|
|
357
357
|
medium: string;
|
|
358
358
|
low: string;
|
|
359
|
+
'high-star': string;
|
|
360
|
+
'medium-star': string;
|
|
361
|
+
'low-star': string;
|
|
359
362
|
};
|
|
360
363
|
};
|
|
361
364
|
|
|
@@ -640,6 +643,9 @@ declare const unocssTheme: {
|
|
|
640
643
|
high: string;
|
|
641
644
|
medium: string;
|
|
642
645
|
low: string;
|
|
646
|
+
'high-star': string;
|
|
647
|
+
'medium-star': string;
|
|
648
|
+
'low-star': string;
|
|
643
649
|
};
|
|
644
650
|
};
|
|
645
651
|
boxShadow: {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@removify/tailwind-preset",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.11",
|
|
5
5
|
"description": "Tailwind CSS preset for Removify",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tailwind"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"tsx": "^4.20.3",
|
|
49
49
|
"typescript": "^5.8.3",
|
|
50
50
|
"vitest": "^3.2.4",
|
|
51
|
-
"@removify/tailwind-preset": "0.2.
|
|
51
|
+
"@removify/tailwind-preset": "0.2.11"
|
|
52
52
|
},
|
|
53
53
|
"lint-staged": {
|
|
54
54
|
"**/*.{js,ts,vue,html}": [
|