dune-react 0.0.22 → 0.0.24

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.
Files changed (131) hide show
  1. package/dist/components/puck-base/image.js +1 -1
  2. package/dist/components/puck-block/banner-sections/css-marquee-banner/css-marquee-banner.js +13 -13
  3. package/dist/components/puck-block/banner-sections/dual-row-marquee/dual-row-marquee.js +77 -53
  4. package/dist/components/puck-block/banner-sections/scroll-driven-marquee/scroll-driven-marquee.js +8 -6
  5. package/dist/components/puck-block/banner-sections/scroll-parallax-text/scroll-parallax-text.js +3 -1
  6. package/dist/components/puck-block/contact-sections/contact-cards-grid/contact-cards-grid.js +1 -1
  7. package/dist/components/puck-block/contact-sections/form-with-media/form-with-media.js +1 -1
  8. package/dist/components/puck-block/contact-sections/header-form-cards/header-form-cards.js +1 -1
  9. package/dist/components/puck-block/contact-sections/header-info-fullwidth/header-info-fullwidth.js +2 -2
  10. package/dist/components/puck-block/contact-sections/info-cards-media/info-cards-media.js +2 -2
  11. package/dist/components/puck-block/contact-sections/split-info-form/split-info-form.js +1 -1
  12. package/dist/components/puck-block/contact-sections/tab-locations/tab-locations.js +71 -55
  13. package/dist/components/puck-block/cta-sections/mouse-track-cta/mouse-track-cta.js +4 -4
  14. package/dist/components/puck-block/cta-sections/side-media-cta/side-media-cta.js +1 -1
  15. package/dist/components/puck-block/cta-sections/text-block-cta/text-block-cta.js +2 -2
  16. package/dist/components/puck-block/feature-sections/feature-cards-grid/component.js +1 -1
  17. package/dist/components/puck-block/feature-sections/feature-list-split/component.js +1 -1
  18. package/dist/components/puck-block/feature-sections/tab-feature/component.js +4 -4
  19. package/dist/components/puck-block/feature-sections/text-media-split/component.js +1 -1
  20. package/dist/components/puck-block/footer-sections/centered-minimal-footer/centered-minimal-footer.js +72 -18
  21. package/dist/components/puck-block/footer-sections/centered-minimal-footer/index.d.ts +79 -0
  22. package/dist/components/puck-block/footer-sections/centered-minimal-footer/index.js +43 -1
  23. package/dist/components/puck-block/footer-sections/compact-newsletter-footer/index.d.ts +41 -0
  24. package/dist/components/puck-block/footer-sections/contact-links-footer/contact-links-footer.js +4 -3
  25. package/dist/components/puck-block/footer-sections/contact-links-footer/index.d.ts +86 -0
  26. package/dist/components/puck-block/footer-sections/contact-links-footer/index.js +1 -1
  27. package/dist/components/puck-block/footer-sections/cta-links-footer/cta-links-footer.js +3 -2
  28. package/dist/components/puck-block/footer-sections/cta-links-footer/index.d.ts +37 -0
  29. package/dist/components/puck-block/footer-sections/cta-links-footer/index.js +1 -1
  30. package/dist/components/puck-block/footer-sections/links-newsletter-footer/index.d.ts +54 -0
  31. package/dist/components/puck-block/footer-sections/newsletter-links-footer/index.d.ts +41 -0
  32. package/dist/components/puck-block/footer-sections/newsletter-top-links-footer/index.d.ts +54 -0
  33. package/dist/components/puck-block/footer-sections/props.d.ts +3 -0
  34. package/dist/components/puck-block/gallery-sections/fullscreen-portfolio/fullscreen-portfolio.js +1 -1
  35. package/dist/components/puck-block/gallery-sections/image-carousel/index.d.ts +14 -1
  36. package/dist/components/puck-block/gallery-sections/interactive-portfolio/interactive-portfolio.js +166 -105
  37. package/dist/components/puck-block/gallery-sections/masonry-grid/index.d.ts +17 -1
  38. package/dist/components/puck-block/gallery-sections/masonry-grid/masonry-grid.js +56 -31
  39. package/dist/components/puck-block/gallery-sections/portfolio-cards/index.d.ts +17 -1
  40. package/dist/components/puck-block/gallery-sections/portfolio-cards/portfolio-cards.js +41 -13
  41. package/dist/components/puck-block/gallery-sections/portfolio-divider/portfolio-divider.js +1 -1
  42. package/dist/components/puck-block/gallery-sections/props.d.ts +42 -3
  43. package/dist/components/puck-block/gallery-sections/props.js +24 -6
  44. package/dist/components/puck-block/gallery-sections/scroll-parallax/scroll-parallax.js +71 -22
  45. package/dist/components/puck-block/gallery-sections/scroll-parallax-portfolio/scroll-parallax-portfolio.js +284 -159
  46. package/dist/components/puck-block/gallery-sections/split-carousel/index.d.ts +11 -1
  47. package/dist/components/puck-block/gallery-sections/static-grid/index.d.ts +17 -1
  48. package/dist/components/puck-block/header-sections/centered-navbar/centered-navbar.js +95 -14
  49. package/dist/components/puck-block/header-sections/drawer-navbar/drawer-navbar.js +4 -3
  50. package/dist/components/puck-block/header-sections/floating-bordered-navbar/floating-bordered-navbar.js +5 -4
  51. package/dist/components/puck-block/header-sections/fullscreen-overlay-navbar/fullscreen-overlay-navbar.js +4 -3
  52. package/dist/components/puck-block/header-sections/mega-menu-navbar/mega-menu-navbar.js +3 -2
  53. package/dist/components/puck-block/header-sections/props.d.ts +3 -0
  54. package/dist/components/puck-block/header-sections/standard-navbar/standard-navbar.js +3 -2
  55. package/dist/components/puck-block/hero-sections/carousel-hero/component.js +3 -3
  56. package/dist/components/puck-block/hero-sections/column-scroll-hero/component.js +8 -8
  57. package/dist/components/puck-block/hero-sections/dual-marquee-hero/component.js +6 -6
  58. package/dist/components/puck-block/hero-sections/fullscreen-video-hero/component.js +1 -1
  59. package/dist/components/puck-block/hero-sections/grid-expand-hero/component.js +26 -17
  60. package/dist/components/puck-block/hero-sections/grid-expand-hero/index.d.ts +17 -1
  61. package/dist/components/puck-block/hero-sections/horizontal-marquee-hero/component.js +3 -3
  62. package/dist/components/puck-block/hero-sections/inline-image-hero/inline-image-hero.js +59 -28
  63. package/dist/components/puck-block/hero-sections/mouse-track-hero/component.js +60 -19
  64. package/dist/components/puck-block/hero-sections/multi-image-grid-hero/index.d.ts +17 -1
  65. package/dist/components/puck-block/hero-sections/multi-image-grid-hero/multi-image-grid-hero.js +2 -2
  66. package/dist/components/puck-block/hero-sections/overlapping-image-hero/overlapping-image-hero.js +3 -3
  67. package/dist/components/puck-block/hero-sections/parallax-images-hero/component.js +18 -6
  68. package/dist/components/puck-block/hero-sections/props.d.ts +34 -2
  69. package/dist/components/puck-block/hero-sections/props.js +18 -4
  70. package/dist/components/puck-block/hero-sections/scatter-parallax-hero/component.js +9 -7
  71. package/dist/components/puck-block/hero-sections/scroll-expand-video-hero/component.js +7 -5
  72. package/dist/components/puck-block/hero-sections/scroll-zoom-hero/component.js +5 -3
  73. package/dist/components/puck-block/hero-sections/sticky-expand-hero/component.js +1 -1
  74. package/dist/components/puck-block/hero-sections/sticky-expand-hero/index.d.ts +13 -5
  75. package/dist/components/puck-block/hero-sections/sticky-expand-hero/index.js +2 -2
  76. package/dist/components/puck-block/hero-sections/sticky-video-hero/component.js +2 -2
  77. package/dist/components/puck-block/hero-sections/tab-hero/component.js +5 -5
  78. package/dist/components/puck-block/hero-sections/three-image-parallax-hero/component.js +3 -3
  79. package/dist/components/puck-block/hero-sections/vertical-gallery-hero/component.js +6 -6
  80. package/dist/components/puck-block/hero-sections/zoom-grid-hero/component.js +14 -12
  81. package/dist/components/puck-block/index.d.ts +1 -0
  82. package/dist/components/puck-block/location-sections/index.d.ts +3 -0
  83. package/dist/components/puck-block/location-sections/location-1/index.js +102 -0
  84. package/dist/components/puck-block/location-sections/location-1/location.d.ts +0 -3
  85. package/dist/components/puck-block/location-sections/location-1/location.js +139 -0
  86. package/dist/components/puck-block/location-sections/location-2/index.js +126 -0
  87. package/dist/components/puck-block/location-sections/location-2/location.d.ts +0 -3
  88. package/dist/components/puck-block/location-sections/location-2/location.js +133 -0
  89. package/dist/components/puck-block/location-sections/location-3/index.js +109 -0
  90. package/dist/components/puck-block/location-sections/location-3/location.d.ts +0 -3
  91. package/dist/components/puck-block/location-sections/location-3/location.js +140 -0
  92. package/dist/components/puck-block/location-sections/props.d.ts +0 -3
  93. package/dist/components/puck-block/metrics-sections/center-media-stats/center-media-stats.js +1 -1
  94. package/dist/components/puck-block/metrics-sections/header-stats-row/header-stats-row.js +1 -1
  95. package/dist/components/puck-block/metrics-sections/mixed-grid-stats/mixed-grid-stats.js +2 -2
  96. package/dist/components/puck-block/metrics-sections/split-stats/split-stats.js +1 -1
  97. package/dist/components/puck-block/metrics-sections/tab-stats/tab-stats.js +4 -4
  98. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/component.js +134 -33
  99. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/index.d.ts +47 -0
  100. package/dist/components/puck-block/pricing-sections/pricing-comparison-table/index.js +34 -0
  101. package/dist/components/puck-block/pricing-sections/split-pricing/component.js +3 -3
  102. package/dist/components/puck-block/pricing-sections/tab-pricing-grid/component.js +86 -40
  103. package/dist/components/puck-block/pricing-sections/tab-single-pricing/component.js +1 -1
  104. package/dist/components/puck-block/registry.generated.d.ts +501 -12
  105. package/dist/components/puck-block/registry.generated.js +157 -138
  106. package/dist/components/puck-block/showcase-sections/tab-timeline/component.js +2 -2
  107. package/dist/components/puck-block/testimonial-sections/bento-testimonial/component.js +157 -83
  108. package/dist/components/puck-block/testimonial-sections/centered-testimonial/component.js +71 -28
  109. package/dist/components/puck-block/testimonial-sections/image-testimonial/component.js +66 -29
  110. package/dist/components/puck-block/testimonial-sections/image-testimonial-carousel/component.js +1 -1
  111. package/dist/components/puck-block/testimonial-sections/tab-testimonial/component.js +6 -6
  112. package/dist/components/puck-block/testimonial-sections/testimonial-card-grid/component.js +2 -2
  113. package/dist/components/puck-block/testimonial-sections/testimonial-carousel/component.js +1 -1
  114. package/dist/components/puck-block/text-sections/prose-content/component.js +1 -1
  115. package/dist/components/puck-block/text-sections/side-media-content/component.js +1 -1
  116. package/dist/components/puck-block/text-sections/sticky-text-multi-image/component.js +3 -3
  117. package/dist/components/puck-core/core/props/form.js +25 -1
  118. package/dist/components/puck-core/core/props/media.js +6 -1
  119. package/dist/components/puck-core/fields/array-field.d.ts +7 -0
  120. package/dist/components/puck-core/fields/array-field.js +229 -0
  121. package/dist/components/puck-core/fields/auto-field.js +11 -0
  122. package/dist/components/puck-core/fields/image-upload-field.js +1 -1
  123. package/dist/components/puck-core/fields/index.d.ts +1 -0
  124. package/dist/components/puck-core/fields/location-field.js +4 -1
  125. package/dist/components/puck-core/fields/object-field.js +1 -1
  126. package/dist/index.js +6 -0
  127. package/dist/node_modules/.pnpm/@dnd-kit_accessibility@3.1.1_react@19.2.4/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +59 -0
  128. package/dist/node_modules/.pnpm/@dnd-kit_core@6.3.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/@dnd-kit/core/dist/core.esm.js +3093 -0
  129. package/dist/node_modules/.pnpm/@dnd-kit_sortable@10.0.0_@dnd-kit_core@6.3.1_react-dom@19.2.4_react@19.2.4__react@19.2.4__react@19.2.4/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +592 -0
  130. package/dist/node_modules/.pnpm/@dnd-kit_utilities@3.2.2_react@19.2.4/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +301 -0
  131. package/package.json +7 -1
@@ -3631,9 +3631,88 @@ declare const confMap: {
3631
3631
  };
3632
3632
  };
3633
3633
  };
3634
+ columnLinks: {
3635
+ type: string;
3636
+ label: string;
3637
+ getItemSummary: (_item: unknown, index?: number) => string;
3638
+ defaultItemProps: {
3639
+ links: {
3640
+ title: string;
3641
+ url: string;
3642
+ }[];
3643
+ };
3644
+ arrayFields: {
3645
+ links: {
3646
+ type: string;
3647
+ label: string;
3648
+ getItemSummary: (item: {
3649
+ title?: string;
3650
+ }, index?: number) => string;
3651
+ defaultItemProps: {
3652
+ title: string;
3653
+ url: string;
3654
+ };
3655
+ arrayFields: {
3656
+ title: {
3657
+ type: string;
3658
+ label: string;
3659
+ };
3660
+ url: {
3661
+ type: string;
3662
+ label: string;
3663
+ };
3664
+ };
3665
+ };
3666
+ };
3667
+ };
3634
3668
  footerText: {
3635
3669
  type: string;
3636
3670
  };
3671
+ footerLinks: {
3672
+ type: string;
3673
+ label: string;
3674
+ getItemSummary: (item: {
3675
+ title?: string;
3676
+ }, index?: number) => string;
3677
+ arrayFields: {
3678
+ title: {
3679
+ type: string;
3680
+ label: string;
3681
+ };
3682
+ url: {
3683
+ type: string;
3684
+ label: string;
3685
+ };
3686
+ };
3687
+ };
3688
+ styles: {
3689
+ type: string;
3690
+ label: string;
3691
+ objectFields: {
3692
+ className: {
3693
+ readonly type: "text";
3694
+ readonly label: "Class Name";
3695
+ readonly ai: {
3696
+ readonly instructions: "Additional Tailwind CSS classes to apply to the section wrapper.";
3697
+ };
3698
+ };
3699
+ style: {
3700
+ readonly type: "object";
3701
+ readonly label: "Style";
3702
+ readonly objectFields: {};
3703
+ readonly ai: {
3704
+ readonly instructions: "Inline CSSProperties object for the section wrapper, e.g. { backgroundColor: 'red', minHeight: '100vh' }.";
3705
+ };
3706
+ };
3707
+ css: {
3708
+ readonly type: "textarea";
3709
+ readonly label: "Custom CSS";
3710
+ readonly ai: {
3711
+ readonly instructions: "Custom CSS rules. Use & as a placeholder for the section selector.";
3712
+ };
3713
+ };
3714
+ };
3715
+ };
3637
3716
  };
3638
3717
  defaultProps: import("./footer-sections/props").FooterSectionBaseProps;
3639
3718
  render: (props: import("./footer-sections/centered-minimal-footer").CenteredMinimalFooterProps) => import("react/jsx-runtime").JSX.Element;
@@ -3649,6 +3728,92 @@ declare const confMap: {
3649
3728
  };
3650
3729
  };
3651
3730
  };
3731
+ address: {
3732
+ type: string;
3733
+ label: string;
3734
+ objectFields: {
3735
+ label: {
3736
+ type: string;
3737
+ label: string;
3738
+ };
3739
+ value: {
3740
+ type: string;
3741
+ label: string;
3742
+ };
3743
+ };
3744
+ };
3745
+ columnLinks: {
3746
+ type: string;
3747
+ label: string;
3748
+ getItemSummary: (_item: unknown, index?: number) => string;
3749
+ arrayFields: {
3750
+ links: {
3751
+ type: string;
3752
+ label: string;
3753
+ getItemSummary: (item: {
3754
+ title?: string;
3755
+ }, index?: number) => string;
3756
+ arrayFields: {
3757
+ title: {
3758
+ type: string;
3759
+ label: string;
3760
+ };
3761
+ url: {
3762
+ type: string;
3763
+ label: string;
3764
+ };
3765
+ };
3766
+ };
3767
+ };
3768
+ };
3769
+ contact: {
3770
+ type: string;
3771
+ label: string;
3772
+ objectFields: {
3773
+ label: {
3774
+ type: string;
3775
+ label: string;
3776
+ };
3777
+ phone: {
3778
+ type: string;
3779
+ label: string;
3780
+ };
3781
+ email: {
3782
+ type: string;
3783
+ label: string;
3784
+ };
3785
+ };
3786
+ };
3787
+ footerLinks: {
3788
+ type: string;
3789
+ label: string;
3790
+ getItemSummary: (item: {
3791
+ title?: string;
3792
+ }, index?: number) => string;
3793
+ arrayFields: {
3794
+ title: {
3795
+ type: string;
3796
+ label: string;
3797
+ };
3798
+ url: {
3799
+ type: string;
3800
+ label: string;
3801
+ };
3802
+ };
3803
+ };
3804
+ socialMediaLinks: {
3805
+ type: string;
3806
+ label: string;
3807
+ getItemSummary: (item: {
3808
+ url?: string;
3809
+ }, index?: number) => string;
3810
+ arrayFields: {
3811
+ url: {
3812
+ type: string;
3813
+ label: string;
3814
+ };
3815
+ };
3816
+ };
3652
3817
  footerText: {
3653
3818
  type: string;
3654
3819
  };
@@ -3804,6 +3969,43 @@ declare const confMap: {
3804
3969
  readonly instructions: "Buttons must use the same size";
3805
3970
  };
3806
3971
  };
3972
+ columnLinks: {
3973
+ type: string;
3974
+ label: string;
3975
+ getItemSummary: (_item: unknown, index?: number) => string;
3976
+ arrayFields: {
3977
+ links: {
3978
+ type: string;
3979
+ label: string;
3980
+ getItemSummary: (item: {
3981
+ title?: string;
3982
+ }, index?: number) => string;
3983
+ arrayFields: {
3984
+ title: {
3985
+ type: string;
3986
+ label: string;
3987
+ };
3988
+ url: {
3989
+ type: string;
3990
+ label: string;
3991
+ };
3992
+ };
3993
+ };
3994
+ };
3995
+ };
3996
+ socialMediaLinks: {
3997
+ type: string;
3998
+ label: string;
3999
+ getItemSummary: (item: {
4000
+ url?: string;
4001
+ }, index?: number) => string;
4002
+ arrayFields: {
4003
+ url: {
4004
+ type: string;
4005
+ label: string;
4006
+ };
4007
+ };
4008
+ };
3807
4009
  footerText: {
3808
4010
  type: string;
3809
4011
  };
@@ -4128,8 +4330,21 @@ declare const confMap: {
4128
4330
  }];
4129
4331
  };
4130
4332
  slidesPerView: {
4131
- readonly type: "text";
4333
+ readonly type: "select";
4132
4334
  readonly label: "Slides Per View";
4335
+ readonly options: readonly [{
4336
+ readonly label: "1";
4337
+ readonly value: "1";
4338
+ }, {
4339
+ readonly label: "1 → 2 (responsive)";
4340
+ readonly value: "1-md2";
4341
+ }, {
4342
+ readonly label: "2 → 3 (responsive)";
4343
+ readonly value: "2-md3";
4344
+ }, {
4345
+ readonly label: "2 → 4 (responsive)";
4346
+ readonly value: "2-md4";
4347
+ }];
4133
4348
  };
4134
4349
  slideOverflow: {
4135
4350
  readonly type: "radio";
@@ -4291,8 +4506,24 @@ declare const confMap: {
4291
4506
  };
4292
4507
  };
4293
4508
  columns: {
4294
- readonly type: "text";
4509
+ readonly type: "select";
4295
4510
  readonly label: "Columns";
4511
+ readonly options: readonly [{
4512
+ readonly label: "1";
4513
+ readonly value: "1";
4514
+ }, {
4515
+ readonly label: "2";
4516
+ readonly value: "2";
4517
+ }, {
4518
+ readonly label: "3";
4519
+ readonly value: "3";
4520
+ }, {
4521
+ readonly label: "2 → 3 (responsive)";
4522
+ readonly value: "2-lg3";
4523
+ }, {
4524
+ readonly label: "2 → 4 (responsive)";
4525
+ readonly value: "2-lg4";
4526
+ }];
4296
4527
  };
4297
4528
  };
4298
4529
  };
@@ -4477,8 +4708,24 @@ declare const confMap: {
4477
4708
  };
4478
4709
  };
4479
4710
  columns: {
4480
- readonly type: "text";
4711
+ readonly type: "select";
4481
4712
  readonly label: "Columns";
4713
+ readonly options: readonly [{
4714
+ readonly label: "1";
4715
+ readonly value: "1";
4716
+ }, {
4717
+ readonly label: "2";
4718
+ readonly value: "2";
4719
+ }, {
4720
+ readonly label: "3";
4721
+ readonly value: "3";
4722
+ }, {
4723
+ readonly label: "2 → 3 (responsive)";
4724
+ readonly value: "2-lg3";
4725
+ }, {
4726
+ readonly label: "2 → 4 (responsive)";
4727
+ readonly value: "2-lg4";
4728
+ }];
4482
4729
  };
4483
4730
  bordered: {
4484
4731
  readonly type: "radio";
@@ -4899,8 +5146,18 @@ declare const confMap: {
4899
5146
  };
4900
5147
  };
4901
5148
  slideBasis: {
4902
- readonly type: "text";
5149
+ readonly type: "select";
4903
5150
  readonly label: "Slide Basis";
5151
+ readonly options: readonly [{
5152
+ readonly label: "4/5";
5153
+ readonly value: "4/5";
5154
+ }, {
5155
+ readonly label: "45%";
5156
+ readonly value: "45%";
5157
+ }, {
5158
+ readonly label: "30%";
5159
+ readonly value: "30%";
5160
+ }];
4904
5161
  };
4905
5162
  };
4906
5163
  };
@@ -4962,8 +5219,24 @@ declare const confMap: {
4962
5219
  };
4963
5220
  };
4964
5221
  columns: {
4965
- readonly type: "text";
5222
+ readonly type: "select";
4966
5223
  readonly label: "Columns";
5224
+ readonly options: readonly [{
5225
+ readonly label: "1";
5226
+ readonly value: "1";
5227
+ }, {
5228
+ readonly label: "2";
5229
+ readonly value: "2";
5230
+ }, {
5231
+ readonly label: "3";
5232
+ readonly value: "3";
5233
+ }, {
5234
+ readonly label: "2 → 3 (responsive)";
5235
+ readonly value: "2-lg3";
5236
+ }, {
5237
+ readonly label: "2 → 4 (responsive)";
5238
+ readonly value: "2-lg4";
5239
+ }];
4967
5240
  };
4968
5241
  gap: {
4969
5242
  readonly type: "radio";
@@ -6377,8 +6650,24 @@ declare const confMap: {
6377
6650
  }];
6378
6651
  };
6379
6652
  gridRatio: {
6380
- readonly type: "text";
6653
+ readonly type: "select";
6381
6654
  readonly label: "Grid Ratio";
6655
+ readonly options: readonly [{
6656
+ readonly label: "25% / 50% / 25%";
6657
+ readonly value: "25%_50%_25%";
6658
+ }, {
6659
+ readonly label: "32% / 36% / 32%";
6660
+ readonly value: "32%_36%_32%";
6661
+ }, {
6662
+ readonly label: "33% / 33% / 33%";
6663
+ readonly value: "33%_34%_33%";
6664
+ }, {
6665
+ readonly label: "20% / 60% / 20%";
6666
+ readonly value: "20%_60%_20%";
6667
+ }, {
6668
+ readonly label: "40% / 30% / 30%";
6669
+ readonly value: "40%_30%_30%";
6670
+ }];
6382
6671
  };
6383
6672
  };
6384
6673
  };
@@ -6910,8 +7199,24 @@ declare const confMap: {
6910
7199
  }[];
6911
7200
  };
6912
7201
  imageGridRatio: {
6913
- readonly type: "text";
7202
+ readonly type: "select";
6914
7203
  readonly label: "Image Grid Ratio";
7204
+ readonly options: readonly [{
7205
+ readonly label: "3:1 (宽主图 + 窄侧图)";
7206
+ readonly value: "1fr_0.33fr";
7207
+ }, {
7208
+ readonly label: "1:1 (等宽)";
7209
+ readonly value: "1fr_1fr";
7210
+ }, {
7211
+ readonly label: "2:1";
7212
+ readonly value: "2fr_1fr";
7213
+ }, {
7214
+ readonly label: "1:2";
7215
+ readonly value: "1fr_2fr";
7216
+ }, {
7217
+ readonly label: "3:2";
7218
+ readonly value: "3fr_2fr";
7219
+ }];
6915
7220
  };
6916
7221
  };
6917
7222
  };
@@ -7686,14 +7991,22 @@ declare const confMap: {
7686
7991
  readonly instructions: "Buttons must use the same size";
7687
7992
  };
7688
7993
  };
7689
- image: {
7690
- type: "object";
7691
- objectFields: {
7692
- src: import("@puckeditor/core").Field<string>;
7693
- alt: {
7994
+ images: {
7995
+ readonly type: "array";
7996
+ readonly max: 10;
7997
+ readonly getItemSummary: (item: {
7998
+ alt?: string;
7999
+ }, index?: number) => string;
8000
+ readonly arrayFields: {
8001
+ readonly src: import("@puckeditor/core").Field<string>;
8002
+ readonly alt: {
7694
8003
  type: "text";
7695
8004
  };
7696
8005
  };
8006
+ readonly defaultItemProps: {
8007
+ alt: string;
8008
+ src: string;
8009
+ };
7697
8010
  };
7698
8011
  };
7699
8012
  defaultProps: import("./hero-sections/sticky-expand-hero").StickyExpandHeroProps;
@@ -8331,6 +8644,135 @@ declare const confMap: {
8331
8644
  defaultProps: import("./hero-sections/zoom-grid-hero").ZoomGridHeroProps;
8332
8645
  render: (props: import("./hero-sections/zoom-grid-hero").ZoomGridHeroProps) => import("react/jsx-runtime").JSX.Element;
8333
8646
  };
8647
+ Location: {
8648
+ render: import("@puckeditor/core").PuckComponent<import("./location-sections/location-1").LocationSectionProps>;
8649
+ label?: string;
8650
+ defaultProps?: import("./location-sections/location-1").LocationSectionProps | undefined;
8651
+ fields?: import("@puckeditor/core").Fields<import("./location-sections/location-1").LocationSectionProps, {}> | undefined;
8652
+ permissions?: Partial<import("@puckeditor/core").Permissions>;
8653
+ inline?: boolean;
8654
+ resolveFields?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8655
+ changed: Partial<Record<keyof import("./location-sections/location-1").LocationSectionProps, boolean> & {
8656
+ id: string;
8657
+ }>;
8658
+ fields: import("@puckeditor/core").Fields<import("./location-sections/location-1").LocationSectionProps, {}>;
8659
+ lastFields: import("@puckeditor/core").Fields<import("./location-sections/location-1").LocationSectionProps, {}>;
8660
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8661
+ metadata: import("@puckeditor/core").ComponentMetadata;
8662
+ appState: import("@puckeditor/core").AppState;
8663
+ parent: import("@puckeditor/core").ComponentData | null;
8664
+ }) => import("@puckeditor/core").Fields<import("./location-sections/location-1").LocationSectionProps, {}> | Promise<import("@puckeditor/core").Fields<import("./location-sections/location-1").LocationSectionProps, {}>>) | undefined;
8665
+ resolveData?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8666
+ changed: Partial<Record<keyof import("./location-sections/location-1").LocationSectionProps, boolean> & {
8667
+ id: string;
8668
+ }>;
8669
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8670
+ metadata: import("@puckeditor/core").ComponentMetadata;
8671
+ trigger: import("@puckeditor/core").ResolveDataTrigger;
8672
+ parent: import("@puckeditor/core").ComponentData | null;
8673
+ }) => (Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8674
+ props?: Partial<import("./location-sections/location-1").LocationSectionProps> | undefined;
8675
+ }) | Promise<Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8676
+ props?: Partial<import("./location-sections/location-1").LocationSectionProps> | undefined;
8677
+ }>) | undefined;
8678
+ resolvePermissions?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8679
+ changed: Partial<Record<keyof import("./location-sections/location-1").LocationSectionProps, boolean> & {
8680
+ id: string;
8681
+ }>;
8682
+ lastPermissions: Partial<import("@puckeditor/core").Permissions>;
8683
+ permissions: Partial<import("@puckeditor/core").Permissions>;
8684
+ appState: import("@puckeditor/core").AppState;
8685
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-1").LocationSectionProps, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8686
+ parent: import("@puckeditor/core").ComponentData | null;
8687
+ }) => Promise<Partial<import("@puckeditor/core").Permissions>> | Partial<import("@puckeditor/core").Permissions>) | undefined;
8688
+ metadata?: import("@puckeditor/core").ComponentMetadata;
8689
+ } & import("@puckeditor/core").ComponentConfigExtensions;
8690
+ Location2: {
8691
+ render: import("@puckeditor/core").PuckComponent<import("./location-sections/location-2").Location2Props>;
8692
+ label?: string;
8693
+ defaultProps?: import("./location-sections/location-2").Location2Props | undefined;
8694
+ fields?: import("@puckeditor/core").Fields<import("./location-sections/location-2").Location2Props, {}> | undefined;
8695
+ permissions?: Partial<import("@puckeditor/core").Permissions>;
8696
+ inline?: boolean;
8697
+ resolveFields?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8698
+ changed: Partial<Record<keyof import("./location-sections/location-2").Location2Props, boolean> & {
8699
+ id: string;
8700
+ }>;
8701
+ fields: import("@puckeditor/core").Fields<import("./location-sections/location-2").Location2Props, {}>;
8702
+ lastFields: import("@puckeditor/core").Fields<import("./location-sections/location-2").Location2Props, {}>;
8703
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8704
+ metadata: import("@puckeditor/core").ComponentMetadata;
8705
+ appState: import("@puckeditor/core").AppState;
8706
+ parent: import("@puckeditor/core").ComponentData | null;
8707
+ }) => import("@puckeditor/core").Fields<import("./location-sections/location-2").Location2Props, {}> | Promise<import("@puckeditor/core").Fields<import("./location-sections/location-2").Location2Props, {}>>) | undefined;
8708
+ resolveData?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8709
+ changed: Partial<Record<keyof import("./location-sections/location-2").Location2Props, boolean> & {
8710
+ id: string;
8711
+ }>;
8712
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8713
+ metadata: import("@puckeditor/core").ComponentMetadata;
8714
+ trigger: import("@puckeditor/core").ResolveDataTrigger;
8715
+ parent: import("@puckeditor/core").ComponentData | null;
8716
+ }) => (Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8717
+ props?: Partial<import("./location-sections/location-2").Location2Props> | undefined;
8718
+ }) | Promise<Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8719
+ props?: Partial<import("./location-sections/location-2").Location2Props> | undefined;
8720
+ }>) | undefined;
8721
+ resolvePermissions?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8722
+ changed: Partial<Record<keyof import("./location-sections/location-2").Location2Props, boolean> & {
8723
+ id: string;
8724
+ }>;
8725
+ lastPermissions: Partial<import("@puckeditor/core").Permissions>;
8726
+ permissions: Partial<import("@puckeditor/core").Permissions>;
8727
+ appState: import("@puckeditor/core").AppState;
8728
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-2").Location2Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8729
+ parent: import("@puckeditor/core").ComponentData | null;
8730
+ }) => Promise<Partial<import("@puckeditor/core").Permissions>> | Partial<import("@puckeditor/core").Permissions>) | undefined;
8731
+ metadata?: import("@puckeditor/core").ComponentMetadata;
8732
+ } & import("@puckeditor/core").ComponentConfigExtensions;
8733
+ Location3: {
8734
+ render: import("@puckeditor/core").PuckComponent<import("./location-sections/location-3").Location3Props>;
8735
+ label?: string;
8736
+ defaultProps?: import("./location-sections/location-3").Location3Props | undefined;
8737
+ fields?: import("@puckeditor/core").Fields<import("./location-sections/location-3").Location3Props, {}> | undefined;
8738
+ permissions?: Partial<import("@puckeditor/core").Permissions>;
8739
+ inline?: boolean;
8740
+ resolveFields?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8741
+ changed: Partial<Record<keyof import("./location-sections/location-3").Location3Props, boolean> & {
8742
+ id: string;
8743
+ }>;
8744
+ fields: import("@puckeditor/core").Fields<import("./location-sections/location-3").Location3Props, {}>;
8745
+ lastFields: import("@puckeditor/core").Fields<import("./location-sections/location-3").Location3Props, {}>;
8746
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8747
+ metadata: import("@puckeditor/core").ComponentMetadata;
8748
+ appState: import("@puckeditor/core").AppState;
8749
+ parent: import("@puckeditor/core").ComponentData | null;
8750
+ }) => import("@puckeditor/core").Fields<import("./location-sections/location-3").Location3Props, {}> | Promise<import("@puckeditor/core").Fields<import("./location-sections/location-3").Location3Props, {}>>) | undefined;
8751
+ resolveData?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8752
+ changed: Partial<Record<keyof import("./location-sections/location-3").Location3Props, boolean> & {
8753
+ id: string;
8754
+ }>;
8755
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8756
+ metadata: import("@puckeditor/core").ComponentMetadata;
8757
+ trigger: import("@puckeditor/core").ResolveDataTrigger;
8758
+ parent: import("@puckeditor/core").ComponentData | null;
8759
+ }) => (Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8760
+ props?: Partial<import("./location-sections/location-3").Location3Props> | undefined;
8761
+ }) | Promise<Omit<Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, "props"> & {
8762
+ props?: Partial<import("./location-sections/location-3").Location3Props> | undefined;
8763
+ }>) | undefined;
8764
+ resolvePermissions?: ((data: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type">, params: {
8765
+ changed: Partial<Record<keyof import("./location-sections/location-3").Location3Props, boolean> & {
8766
+ id: string;
8767
+ }>;
8768
+ lastPermissions: Partial<import("@puckeditor/core").Permissions>;
8769
+ permissions: Partial<import("@puckeditor/core").Permissions>;
8770
+ appState: import("@puckeditor/core").AppState;
8771
+ lastData: Omit<import("@puckeditor/core").ComponentData<import("./location-sections/location-3").Location3Props, string, Record<string, import("@puckeditor/core").DefaultComponentProps>>, "type"> | null;
8772
+ parent: import("@puckeditor/core").ComponentData | null;
8773
+ }) => Promise<Partial<import("@puckeditor/core").Permissions>> | Partial<import("@puckeditor/core").Permissions>) | undefined;
8774
+ metadata?: import("@puckeditor/core").ComponentMetadata;
8775
+ } & import("@puckeditor/core").ComponentConfigExtensions;
8334
8776
  CenterMediaStats: {
8335
8777
  fields: {
8336
8778
  tagline: {
@@ -9237,6 +9679,53 @@ declare const confMap: {
9237
9679
  };
9238
9680
  };
9239
9681
  };
9682
+ defaultTabValue: {
9683
+ type: "radio";
9684
+ label: string;
9685
+ options: {
9686
+ label: string;
9687
+ value: string;
9688
+ }[];
9689
+ };
9690
+ tabs: {
9691
+ type: "array";
9692
+ label: string;
9693
+ getItemSummary: (item: {
9694
+ tabName?: string;
9695
+ }, index?: number) => string;
9696
+ arrayFields: {
9697
+ value: {
9698
+ type: "radio";
9699
+ label: string;
9700
+ options: {
9701
+ label: string;
9702
+ value: string;
9703
+ }[];
9704
+ };
9705
+ tabName: {
9706
+ type: "text";
9707
+ label: string;
9708
+ };
9709
+ pricingPlans: {
9710
+ type: "array";
9711
+ label: string;
9712
+ getItemSummary: (item: {
9713
+ planName?: string;
9714
+ }, index?: number) => string;
9715
+ arrayFields: {
9716
+ planName: {
9717
+ type: "text";
9718
+ };
9719
+ monthlyPrice: {
9720
+ type: "text";
9721
+ };
9722
+ description: {
9723
+ type: "textarea";
9724
+ };
9725
+ };
9726
+ };
9727
+ };
9728
+ };
9240
9729
  styles: {
9241
9730
  type: string;
9242
9731
  label: string;