exodeui 2.6.42 → 6.0.9

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/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;
@@ -304,7 +312,51 @@ export declare enum BehaviorType {
304
312
  Vortex = "Vortex",
305
313
  Fluid = "Fluid",
306
314
  Holographic = "Holographic",
307
- Sticky = "Sticky"
315
+ Sticky = "Sticky",
316
+ Spotlight = "Spotlight",
317
+ Noise = "Noise",
318
+ Draggable = "Draggable",
319
+ Scroll = "Scroll",
320
+ Follower = "Follower",
321
+ Lens = "Lens",
322
+ LookAt = "LookAt",
323
+ Pulse = "Pulse",
324
+ Wrap = "Wrap",
325
+ Glint = "Glint",
326
+ Gravity = "Gravity",
327
+ Ratchet = "Ratchet",
328
+ Jitter = "Jitter",
329
+ Scan = "Scan",
330
+ Float = "Float",
331
+ Typewriter = "Typewriter",
332
+ Scramble = "Scramble",
333
+ Wave = "Wave",
334
+ Bounce = "Bounce",
335
+ GlitchText = "GlitchText",
336
+ TextTrail = "TextTrail",
337
+ Reveal3D = "Reveal3D",
338
+ RevealSlide = "RevealSlide",
339
+ RevealBlur = "RevealBlur",
340
+ TextLiquid = "TextLiquid",
341
+ TextVortex = "TextVortex",
342
+ TextExplosion = "TextExplosion",
343
+ TextRain = "TextRain",
344
+ TextGravity = "TextGravity",
345
+ TextElastic = "TextElastic",
346
+ TextMatrix = "TextMatrix",
347
+ TextNeon = "TextNeon",
348
+ TextGlitch3D = "TextGlitch3D",
349
+ TextDissolve = "TextDissolve",
350
+ TextOrganic = "TextOrganic",
351
+ TextBreathe = "TextBreathe",
352
+ TextFloral = "TextFloral",
353
+ TextSmoke = "TextSmoke",
354
+ TextVariable = "TextVariable",
355
+ TextMagnet = "TextMagnet",
356
+ TextSpin = "TextSpin",
357
+ TextZing = "TextZing",
358
+ TextPerspective = "TextPerspective",
359
+ TextMirror = "TextMirror"
308
360
  }
309
361
  export declare enum BehaviorSensor {
310
362
  Scale = "Scale",
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "exodeui",
3
- "version": "2.6.42",
3
+ "version": "6.0.9",
4
4
  "description": "React Runtime for ExodeUI Animation Engine",
5
+ "type": "module",
5
6
  "main": "dist/index.js",
6
7
  "module": "dist/index.mjs",
7
8
  "types": "dist/index.d.ts",