@wix/auto_sdk_events_forms 1.0.102 → 1.0.104
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +113 -4
- package/build/cjs/index.typings.js +36 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +113 -4
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +34 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +113 -4
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +113 -4
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +36 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +321 -7
- package/build/internal/cjs/index.typings.js +36 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +357 -8
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +34 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +321 -7
- package/build/internal/es/index.typings.mjs +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +357 -8
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -663,6 +663,7 @@ var EventStatus = /* @__PURE__ */ ((EventStatus2) => {
|
|
|
663
663
|
EventStatus2["STARTED"] = "STARTED";
|
|
664
664
|
EventStatus2["ENDED"] = "ENDED";
|
|
665
665
|
EventStatus2["CANCELED"] = "CANCELED";
|
|
666
|
+
EventStatus2["DRAFT"] = "DRAFT";
|
|
666
667
|
return EventStatus2;
|
|
667
668
|
})(EventStatus || {});
|
|
668
669
|
var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
@@ -671,6 +672,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
671
672
|
EventType2["TICKETS"] = "TICKETS";
|
|
672
673
|
EventType2["EXTERNAL"] = "EXTERNAL";
|
|
673
674
|
EventType2["NO_REGISTRATION"] = "NO_REGISTRATION";
|
|
675
|
+
EventType2["RSVP_AND_TICKETS"] = "RSVP_AND_TICKETS";
|
|
674
676
|
return EventType2;
|
|
675
677
|
})(EventType || {});
|
|
676
678
|
var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
|
|
@@ -682,6 +684,7 @@ var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
|
|
|
682
684
|
RegistrationStatus2["OPEN_TICKETS"] = "OPEN_TICKETS";
|
|
683
685
|
RegistrationStatus2["OPEN_EXTERNAL"] = "OPEN_EXTERNAL";
|
|
684
686
|
RegistrationStatus2["SCHEDULED_RSVP"] = "SCHEDULED_RSVP";
|
|
687
|
+
RegistrationStatus2["OPEN_RSVP_AND_TICKETS"] = "OPEN_RSVP_AND_TICKETS";
|
|
685
688
|
return RegistrationStatus2;
|
|
686
689
|
})(RegistrationStatus || {});
|
|
687
690
|
var RsvpStatusOptions = /* @__PURE__ */ ((RsvpStatusOptions2) => {
|
|
@@ -722,6 +725,7 @@ var State = /* @__PURE__ */ ((State2) => {
|
|
|
722
725
|
State2["AUTO"] = "AUTO";
|
|
723
726
|
State2["RECURRING_EVENT"] = "RECURRING_EVENT";
|
|
724
727
|
State2["HIDDEN"] = "HIDDEN";
|
|
728
|
+
State2["COMPONENT"] = "COMPONENT";
|
|
725
729
|
return State2;
|
|
726
730
|
})(State || {});
|
|
727
731
|
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
@@ -803,6 +807,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
|
|
|
803
807
|
})(Target || {});
|
|
804
808
|
var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
|
|
805
809
|
AnimationType2["VIEW"] = "VIEW";
|
|
810
|
+
AnimationType2["POINTER"] = "POINTER";
|
|
806
811
|
return AnimationType2;
|
|
807
812
|
})(AnimationType || {});
|
|
808
813
|
var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
@@ -826,6 +831,34 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
|
826
831
|
EntranceEffectType2["WINK"] = "WINK";
|
|
827
832
|
return EntranceEffectType2;
|
|
828
833
|
})(EntranceEffectType || {});
|
|
834
|
+
var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
835
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
836
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
837
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
838
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
839
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
840
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
841
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
842
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
843
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
844
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
845
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
846
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
847
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
848
|
+
return LoopEffectType2;
|
|
849
|
+
})(LoopEffectType || {});
|
|
850
|
+
var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
|
|
851
|
+
PointerEffectType2["AIRY"] = "AIRY";
|
|
852
|
+
PointerEffectType2["BLOB"] = "BLOB";
|
|
853
|
+
PointerEffectType2["BLUR"] = "BLUR";
|
|
854
|
+
PointerEffectType2["SCALE"] = "SCALE";
|
|
855
|
+
PointerEffectType2["SKEW"] = "SKEW";
|
|
856
|
+
PointerEffectType2["SWIVEL"] = "SWIVEL";
|
|
857
|
+
PointerEffectType2["TILT_3D"] = "TILT_3D";
|
|
858
|
+
PointerEffectType2["TRACK"] = "TRACK";
|
|
859
|
+
PointerEffectType2["TRACK_3D"] = "TRACK_3D";
|
|
860
|
+
return PointerEffectType2;
|
|
861
|
+
})(PointerEffectType || {});
|
|
829
862
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
830
863
|
TextAlignment2["AUTO"] = "AUTO";
|
|
831
864
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1350,6 +1383,7 @@ export {
|
|
|
1350
1383
|
LineStyle as LineStyleOriginal,
|
|
1351
1384
|
ListStyle as ListStyleOriginal,
|
|
1352
1385
|
LocationType as LocationTypeOriginal,
|
|
1386
|
+
LoopEffectType as LoopEffectTypeOriginal,
|
|
1353
1387
|
MapType as MapTypeOriginal,
|
|
1354
1388
|
NodeType as NodeTypeOriginal,
|
|
1355
1389
|
NullValue as NullValueOriginal,
|
|
@@ -1357,6 +1391,7 @@ export {
|
|
|
1357
1391
|
Origin as OriginOriginal,
|
|
1358
1392
|
Placement as PlacementOriginal,
|
|
1359
1393
|
PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal,
|
|
1394
|
+
PointerEffectType as PointerEffectTypeOriginal,
|
|
1360
1395
|
PollDesignBackgroundType as PollDesignBackgroundTypeOriginal,
|
|
1361
1396
|
PollLayoutDirection as PollLayoutDirectionOriginal,
|
|
1362
1397
|
PollLayoutType as PollLayoutTypeOriginal,
|