exodeui 2.6.42 → 6.0.8
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/engine.d.ts +2 -0
- package/dist/index.js +6 -6
- package/dist/index.mjs +1420 -1402
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -130,6 +130,13 @@ export interface Fill {
|
|
|
130
130
|
rotation?: number;
|
|
131
131
|
gradientTransform?: number[];
|
|
132
132
|
}
|
|
133
|
+
export interface Adjustments {
|
|
134
|
+
exposure?: number;
|
|
135
|
+
contrast?: number;
|
|
136
|
+
saturation?: number;
|
|
137
|
+
hue?: number;
|
|
138
|
+
negative?: number;
|
|
139
|
+
}
|
|
133
140
|
export interface Style {
|
|
134
141
|
fill?: Fill;
|
|
135
142
|
stroke?: {
|
|
@@ -150,6 +157,7 @@ export interface Style {
|
|
|
150
157
|
};
|
|
151
158
|
shadow?: Shadow;
|
|
152
159
|
blur?: Blur;
|
|
160
|
+
adjustments?: Adjustments;
|
|
153
161
|
liquidMorph?: LiquidMorphConfig;
|
|
154
162
|
liquidFill?: LiquidFillConfig;
|
|
155
163
|
artEffect?: ArtEffectConfig;
|