@sveltia/cms 0.87.0 → 0.87.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/dist/sveltia-cms.js +1 -1
- package/dist/sveltia-cms.mjs +1 -1
- package/package.json +2 -1
- package/schema/sveltia-cms.json +4136 -0
- package/types/public.d.ts +33 -2
package/types/public.d.ts
CHANGED
|
@@ -51,7 +51,33 @@ export type RasterImageTransformationOptions = {
|
|
|
51
51
|
/**
|
|
52
52
|
* Raster image transformation option map.
|
|
53
53
|
*/
|
|
54
|
-
export type RasterImageTransformations =
|
|
54
|
+
export type RasterImageTransformations = {
|
|
55
|
+
/**
|
|
56
|
+
* Raster image transformation options
|
|
57
|
+
* that apply to any supported raster image format.
|
|
58
|
+
*/
|
|
59
|
+
raster_image?: RasterImageTransformationOptions;
|
|
60
|
+
/**
|
|
61
|
+
* AVIF image transformation options.
|
|
62
|
+
*/
|
|
63
|
+
avif?: RasterImageTransformationOptions;
|
|
64
|
+
/**
|
|
65
|
+
* GIF image transformation options.
|
|
66
|
+
*/
|
|
67
|
+
gif?: RasterImageTransformationOptions;
|
|
68
|
+
/**
|
|
69
|
+
* JPEG image transformation options.
|
|
70
|
+
*/
|
|
71
|
+
jpeg?: RasterImageTransformationOptions;
|
|
72
|
+
/**
|
|
73
|
+
* PNG image transformation options.
|
|
74
|
+
*/
|
|
75
|
+
png?: RasterImageTransformationOptions;
|
|
76
|
+
/**
|
|
77
|
+
* WebP image transformation options.
|
|
78
|
+
*/
|
|
79
|
+
webp?: RasterImageTransformationOptions;
|
|
80
|
+
};
|
|
55
81
|
/**
|
|
56
82
|
* Vector image transformation option map.
|
|
57
83
|
*/
|
|
@@ -64,7 +90,12 @@ export type VectorImageTransformationOptions = {
|
|
|
64
90
|
/**
|
|
65
91
|
* Vector image transformation option map.
|
|
66
92
|
*/
|
|
67
|
-
export type VectorImageTransformations =
|
|
93
|
+
export type VectorImageTransformations = {
|
|
94
|
+
/**
|
|
95
|
+
* SVG image transformation options.
|
|
96
|
+
*/
|
|
97
|
+
svg?: VectorImageTransformationOptions;
|
|
98
|
+
};
|
|
68
99
|
/**
|
|
69
100
|
* Image transformation option map.
|
|
70
101
|
*/
|