dune-react 0.0.23 → 0.0.25
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/components/puck-base/image.js +1 -1
- package/dist/components/puck-block/banner-sections/dual-row-marquee/dual-row-marquee.js +77 -53
- package/dist/components/puck-block/contact-sections/tab-locations/tab-locations.js +71 -55
- package/dist/components/puck-block/feature-sections/tab-feature/component.js +1 -1
- package/dist/components/puck-block/gallery-sections/image-carousel/index.d.ts +14 -1
- package/dist/components/puck-block/gallery-sections/interactive-portfolio/interactive-portfolio.js +165 -104
- package/dist/components/puck-block/gallery-sections/masonry-grid/index.d.ts +17 -1
- package/dist/components/puck-block/gallery-sections/masonry-grid/masonry-grid.js +56 -31
- package/dist/components/puck-block/gallery-sections/portfolio-cards/index.d.ts +17 -1
- package/dist/components/puck-block/gallery-sections/portfolio-cards/portfolio-cards.js +40 -12
- package/dist/components/puck-block/gallery-sections/props.d.ts +31 -2
- package/dist/components/puck-block/gallery-sections/props.js +17 -4
- package/dist/components/puck-block/gallery-sections/scroll-parallax/scroll-parallax.js +68 -37
- package/dist/components/puck-block/gallery-sections/scroll-parallax-portfolio/scroll-parallax-portfolio.js +308 -151
- package/dist/components/puck-block/gallery-sections/static-grid/index.d.ts +17 -1
- package/dist/components/puck-block/header-sections/centered-navbar/centered-navbar.js +94 -14
- package/dist/components/puck-block/hero-sections/grid-expand-hero/index.d.ts +17 -1
- package/dist/components/puck-block/hero-sections/inline-image-hero/inline-image-hero.js +59 -28
- package/dist/components/puck-block/hero-sections/multi-image-grid-hero/index.d.ts +17 -1
- package/dist/components/puck-block/hero-sections/props.d.ts +34 -2
- package/dist/components/puck-block/hero-sections/props.js +18 -4
- package/dist/components/puck-block/hero-sections/tab-hero/component.js +1 -1
- package/dist/components/puck-block/index.d.ts +1 -0
- package/dist/components/puck-block/location-sections/index.d.ts +3 -0
- package/dist/components/puck-block/location-sections/location-1/index.js +102 -0
- package/dist/components/puck-block/location-sections/location-1/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-1/location.js +139 -0
- package/dist/components/puck-block/location-sections/location-2/index.js +126 -0
- package/dist/components/puck-block/location-sections/location-2/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-2/location.js +133 -0
- package/dist/components/puck-block/location-sections/location-3/index.js +109 -0
- package/dist/components/puck-block/location-sections/location-3/location.d.ts +0 -3
- package/dist/components/puck-block/location-sections/location-3/location.js +140 -0
- package/dist/components/puck-block/location-sections/props.d.ts +0 -3
- package/dist/components/puck-block/metrics-sections/tab-stats/tab-stats.js +1 -1
- package/dist/components/puck-block/pricing-sections/pricing-comparison-table/component.js +134 -33
- package/dist/components/puck-block/pricing-sections/tab-pricing-grid/component.js +86 -40
- package/dist/components/puck-block/pricing-sections/tab-single-pricing/component.js +1 -1
- package/dist/components/puck-block/registry.generated.d.ts +228 -6
- package/dist/components/puck-block/registry.generated.js +157 -138
- package/dist/components/puck-block/showcase-sections/tab-timeline/component.js +1 -1
- package/dist/components/puck-block/testimonial-sections/bento-testimonial/component.js +157 -83
- package/dist/components/puck-block/testimonial-sections/centered-testimonial/component.js +71 -28
- package/dist/components/puck-block/testimonial-sections/image-testimonial/component.js +66 -29
- package/dist/components/puck-block/testimonial-sections/image-testimonial-carousel/component.js +1 -1
- package/dist/components/puck-block/testimonial-sections/tab-testimonial/component.js +4 -4
- package/dist/components/puck-block/testimonial-sections/testimonial-card-grid/component.js +2 -2
- package/dist/components/puck-block/testimonial-sections/testimonial-carousel/component.js +1 -1
- package/dist/components/puck-core/core/props/form.js +25 -1
- package/dist/components/puck-core/fields/location-field.js +4 -1
- package/dist/index.js +6 -0
- package/package.json +4 -1
|
@@ -4330,8 +4330,21 @@ declare const confMap: {
|
|
|
4330
4330
|
}];
|
|
4331
4331
|
};
|
|
4332
4332
|
slidesPerView: {
|
|
4333
|
-
readonly type: "
|
|
4333
|
+
readonly type: "select";
|
|
4334
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
|
+
}];
|
|
4335
4348
|
};
|
|
4336
4349
|
slideOverflow: {
|
|
4337
4350
|
readonly type: "radio";
|
|
@@ -4493,8 +4506,24 @@ declare const confMap: {
|
|
|
4493
4506
|
};
|
|
4494
4507
|
};
|
|
4495
4508
|
columns: {
|
|
4496
|
-
readonly type: "
|
|
4509
|
+
readonly type: "select";
|
|
4497
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
|
+
}];
|
|
4498
4527
|
};
|
|
4499
4528
|
};
|
|
4500
4529
|
};
|
|
@@ -4679,8 +4708,24 @@ declare const confMap: {
|
|
|
4679
4708
|
};
|
|
4680
4709
|
};
|
|
4681
4710
|
columns: {
|
|
4682
|
-
readonly type: "
|
|
4711
|
+
readonly type: "select";
|
|
4683
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
|
+
}];
|
|
4684
4729
|
};
|
|
4685
4730
|
bordered: {
|
|
4686
4731
|
readonly type: "radio";
|
|
@@ -5174,8 +5219,24 @@ declare const confMap: {
|
|
|
5174
5219
|
};
|
|
5175
5220
|
};
|
|
5176
5221
|
columns: {
|
|
5177
|
-
readonly type: "
|
|
5222
|
+
readonly type: "select";
|
|
5178
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
|
+
}];
|
|
5179
5240
|
};
|
|
5180
5241
|
gap: {
|
|
5181
5242
|
readonly type: "radio";
|
|
@@ -6589,8 +6650,24 @@ declare const confMap: {
|
|
|
6589
6650
|
}];
|
|
6590
6651
|
};
|
|
6591
6652
|
gridRatio: {
|
|
6592
|
-
readonly type: "
|
|
6653
|
+
readonly type: "select";
|
|
6593
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
|
+
}];
|
|
6594
6671
|
};
|
|
6595
6672
|
};
|
|
6596
6673
|
};
|
|
@@ -7122,8 +7199,24 @@ declare const confMap: {
|
|
|
7122
7199
|
}[];
|
|
7123
7200
|
};
|
|
7124
7201
|
imageGridRatio: {
|
|
7125
|
-
readonly type: "
|
|
7202
|
+
readonly type: "select";
|
|
7126
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
|
+
}];
|
|
7127
7220
|
};
|
|
7128
7221
|
};
|
|
7129
7222
|
};
|
|
@@ -8551,6 +8644,135 @@ declare const confMap: {
|
|
|
8551
8644
|
defaultProps: import("./hero-sections/zoom-grid-hero").ZoomGridHeroProps;
|
|
8552
8645
|
render: (props: import("./hero-sections/zoom-grid-hero").ZoomGridHeroProps) => import("react/jsx-runtime").JSX.Element;
|
|
8553
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;
|
|
8554
8776
|
CenterMediaStats: {
|
|
8555
8777
|
fields: {
|
|
8556
8778
|
tagline: {
|
|
@@ -36,75 +36,78 @@ import conf$y from "./metrics-sections/split-stats/index.js";
|
|
|
36
36
|
import conf$z from "./metrics-sections/mixed-grid-stats/index.js";
|
|
37
37
|
import conf$A from "./metrics-sections/header-stats-row/index.js";
|
|
38
38
|
import conf$B from "./metrics-sections/center-media-stats/index.js";
|
|
39
|
-
import conf$C from "./
|
|
40
|
-
import conf$D from "./
|
|
41
|
-
import conf$E from "./
|
|
42
|
-
import conf$F from "./hero-sections/
|
|
43
|
-
import conf$G from "./hero-sections/
|
|
44
|
-
import conf$H from "./hero-sections/
|
|
45
|
-
import conf$I from "./hero-sections/
|
|
46
|
-
import conf$J from "./hero-sections/
|
|
47
|
-
import conf$K from "./hero-sections/
|
|
48
|
-
import conf$L from "./hero-sections/
|
|
49
|
-
import conf$M from "./hero-sections/
|
|
50
|
-
import conf$N from "./hero-sections/
|
|
51
|
-
import conf$O from "./hero-sections/
|
|
52
|
-
import conf$P from "./hero-sections/
|
|
53
|
-
import conf$Q from "./hero-sections/
|
|
54
|
-
import conf$R from "./hero-sections/
|
|
55
|
-
import conf$S from "./hero-sections/
|
|
56
|
-
import conf$T from "./hero-sections/
|
|
57
|
-
import conf$U from "./hero-sections/
|
|
58
|
-
import conf$V from "./hero-sections/
|
|
59
|
-
import conf$W from "./
|
|
60
|
-
import conf$X from "./
|
|
61
|
-
import conf$Y from "./
|
|
62
|
-
import conf$Z from "./header-sections/
|
|
63
|
-
import conf$_ from "./header-sections/
|
|
64
|
-
import conf$$ from "./header-sections/
|
|
65
|
-
import conf$10 from "./
|
|
66
|
-
import conf$11 from "./
|
|
67
|
-
import conf$12 from "./
|
|
68
|
-
import conf$13 from "./gallery-sections/
|
|
69
|
-
import conf$14 from "./gallery-sections/
|
|
70
|
-
import conf$15 from "./gallery-sections/portfolio
|
|
71
|
-
import conf$16 from "./gallery-sections/
|
|
72
|
-
import conf$17 from "./gallery-sections/
|
|
73
|
-
import conf$18 from "./gallery-sections/
|
|
74
|
-
import conf$19 from "./gallery-sections/
|
|
75
|
-
import conf$1a from "./gallery-sections/
|
|
76
|
-
import conf$1b from "./
|
|
77
|
-
import conf$1c from "./
|
|
78
|
-
import conf$1d from "./
|
|
79
|
-
import conf$1e from "./
|
|
80
|
-
import conf$1f from "./
|
|
81
|
-
import conf$1g from "./
|
|
82
|
-
import conf$1h from "./feature-sections/
|
|
83
|
-
import conf$1i from "./feature-sections/
|
|
84
|
-
import conf$1j from "./
|
|
85
|
-
import conf$1k from "./
|
|
86
|
-
import conf$1l from "./
|
|
87
|
-
import conf$1m from "./faq-sections/
|
|
88
|
-
import conf$1n from "./faq-sections/
|
|
89
|
-
import conf$1o from "./faq-sections/
|
|
90
|
-
import conf$1p from "./
|
|
91
|
-
import conf$1q from "./
|
|
92
|
-
import conf$1r from "./
|
|
93
|
-
import conf$1s from "./cta-sections/
|
|
94
|
-
import conf$1t from "./
|
|
95
|
-
import conf$1u from "./
|
|
96
|
-
import conf$1v from "./
|
|
97
|
-
import conf$1w from "./contact-sections/
|
|
98
|
-
import conf$1x from "./contact-sections/
|
|
99
|
-
import conf$1y from "./contact-sections/
|
|
100
|
-
import conf$1z from "./contact-sections/
|
|
101
|
-
import conf$1A from "./contact-sections/
|
|
102
|
-
import conf$1B from "./contact-sections/
|
|
103
|
-
import conf$1C from "./contact-sections/
|
|
104
|
-
import conf$1D from "./
|
|
105
|
-
import conf$1E from "./
|
|
106
|
-
import conf$1F from "./
|
|
107
|
-
import conf$1G from "./banner-sections/
|
|
39
|
+
import { conf as conf$C } from "./location-sections/location-3/index.js";
|
|
40
|
+
import { conf as conf$D } from "./location-sections/location-2/index.js";
|
|
41
|
+
import { conf as conf$E } from "./location-sections/location-1/index.js";
|
|
42
|
+
import conf$F from "./hero-sections/zoom-grid-hero/index.js";
|
|
43
|
+
import conf$G from "./hero-sections/vertical-gallery-hero/index.js";
|
|
44
|
+
import conf$H from "./hero-sections/three-image-parallax-hero/index.js";
|
|
45
|
+
import conf$I from "./hero-sections/tab-hero/index.js";
|
|
46
|
+
import conf$J from "./hero-sections/sticky-video-hero/index.js";
|
|
47
|
+
import conf$K from "./hero-sections/sticky-expand-hero/index.js";
|
|
48
|
+
import conf$L from "./hero-sections/scroll-zoom-hero/index.js";
|
|
49
|
+
import conf$M from "./hero-sections/scroll-expand-video-hero/index.js";
|
|
50
|
+
import conf$N from "./hero-sections/scatter-parallax-hero/index.js";
|
|
51
|
+
import conf$O from "./hero-sections/parallax-images-hero/index.js";
|
|
52
|
+
import conf$P from "./hero-sections/overlapping-image-hero/index.js";
|
|
53
|
+
import conf$Q from "./hero-sections/multi-image-grid-hero/index.js";
|
|
54
|
+
import conf$R from "./hero-sections/mouse-track-hero/index.js";
|
|
55
|
+
import conf$S from "./hero-sections/inline-image-hero/index.js";
|
|
56
|
+
import conf$T from "./hero-sections/horizontal-marquee-hero/index.js";
|
|
57
|
+
import conf$U from "./hero-sections/grid-expand-hero/index.js";
|
|
58
|
+
import conf$V from "./hero-sections/fullscreen-video-hero/index.js";
|
|
59
|
+
import conf$W from "./hero-sections/dual-marquee-hero/index.js";
|
|
60
|
+
import conf$X from "./hero-sections/column-scroll-hero/index.js";
|
|
61
|
+
import conf$Y from "./hero-sections/carousel-hero/index.js";
|
|
62
|
+
import conf$Z from "./header-sections/standard-navbar/index.js";
|
|
63
|
+
import conf$_ from "./header-sections/mega-menu-navbar/index.js";
|
|
64
|
+
import conf$$ from "./header-sections/fullscreen-overlay-navbar/index.js";
|
|
65
|
+
import conf$10 from "./header-sections/floating-bordered-navbar/index.js";
|
|
66
|
+
import conf$11 from "./header-sections/drawer-navbar/index.js";
|
|
67
|
+
import conf$12 from "./header-sections/centered-navbar/index.js";
|
|
68
|
+
import conf$13 from "./gallery-sections/static-grid/index.js";
|
|
69
|
+
import conf$14 from "./gallery-sections/split-carousel/index.js";
|
|
70
|
+
import conf$15 from "./gallery-sections/scroll-parallax-portfolio/index.js";
|
|
71
|
+
import conf$16 from "./gallery-sections/scroll-parallax/index.js";
|
|
72
|
+
import conf$17 from "./gallery-sections/portfolio-divider/index.js";
|
|
73
|
+
import conf$18 from "./gallery-sections/portfolio-cards/index.js";
|
|
74
|
+
import conf$19 from "./gallery-sections/masonry-grid/index.js";
|
|
75
|
+
import conf$1a from "./gallery-sections/interactive-portfolio/index.js";
|
|
76
|
+
import conf$1b from "./gallery-sections/image-carousel/index.js";
|
|
77
|
+
import conf$1c from "./gallery-sections/fullscreen-portfolio/index.js";
|
|
78
|
+
import conf$1d from "./gallery-sections/asymmetric-grid/index.js";
|
|
79
|
+
import conf$1e from "./footer-sections/cta-links-footer/index.js";
|
|
80
|
+
import conf$1f from "./footer-sections/contact-links-footer/index.js";
|
|
81
|
+
import conf$1g from "./footer-sections/centered-minimal-footer/index.js";
|
|
82
|
+
import conf$1h from "./feature-sections/text-only-section/index.js";
|
|
83
|
+
import conf$1i from "./feature-sections/text-media-split/index.js";
|
|
84
|
+
import conf$1j from "./feature-sections/tab-feature/index.js";
|
|
85
|
+
import conf$1k from "./feature-sections/feature-list-split/index.js";
|
|
86
|
+
import conf$1l from "./feature-sections/feature-cards-grid/index.js";
|
|
87
|
+
import conf$1m from "./faq-sections/two-column-static-faq/index.js";
|
|
88
|
+
import conf$1n from "./faq-sections/two-column-accordion-faq/index.js";
|
|
89
|
+
import conf$1o from "./faq-sections/stacked-static-faq/index.js";
|
|
90
|
+
import conf$1p from "./faq-sections/stacked-accordion-faq/index.js";
|
|
91
|
+
import conf$1q from "./faq-sections/icon-card-faq/index.js";
|
|
92
|
+
import conf$1r from "./faq-sections/dual-column-accordion-faq/index.js";
|
|
93
|
+
import conf$1s from "./cta-sections/text-block-cta/index.js";
|
|
94
|
+
import conf$1t from "./cta-sections/side-media-cta/index.js";
|
|
95
|
+
import conf$1u from "./cta-sections/mouse-track-cta/index.js";
|
|
96
|
+
import conf$1v from "./cta-sections/feature-card-cta/index.js";
|
|
97
|
+
import conf$1w from "./contact-sections/tab-locations/index.js";
|
|
98
|
+
import conf$1x from "./contact-sections/split-info-form/index.js";
|
|
99
|
+
import conf$1y from "./contact-sections/location-cards-grid/index.js";
|
|
100
|
+
import conf$1z from "./contact-sections/info-cards-media/index.js";
|
|
101
|
+
import conf$1A from "./contact-sections/header-info-fullwidth/index.js";
|
|
102
|
+
import conf$1B from "./contact-sections/header-form-cards/index.js";
|
|
103
|
+
import conf$1C from "./contact-sections/form-with-media/index.js";
|
|
104
|
+
import conf$1D from "./contact-sections/contact-modal/index.js";
|
|
105
|
+
import conf$1E from "./contact-sections/contact-cards-grid/index.js";
|
|
106
|
+
import conf$1F from "./contact-sections/centered-form/index.js";
|
|
107
|
+
import conf$1G from "./banner-sections/scroll-parallax-text/index.js";
|
|
108
|
+
import conf$1H from "./banner-sections/scroll-driven-marquee/index.js";
|
|
109
|
+
import conf$1I from "./banner-sections/dual-row-marquee/index.js";
|
|
110
|
+
import conf$1J from "./banner-sections/css-marquee-banner/index.js";
|
|
108
111
|
const categories = {
|
|
109
112
|
banner: {
|
|
110
113
|
title: "Banner",
|
|
@@ -220,6 +223,14 @@ const categories = {
|
|
|
220
223
|
"ZoomGridHero"
|
|
221
224
|
]
|
|
222
225
|
},
|
|
226
|
+
location: {
|
|
227
|
+
title: "Location",
|
|
228
|
+
components: [
|
|
229
|
+
"Location",
|
|
230
|
+
"Location2",
|
|
231
|
+
"Location3"
|
|
232
|
+
]
|
|
233
|
+
},
|
|
223
234
|
metrics: {
|
|
224
235
|
title: "Stats",
|
|
225
236
|
components: [
|
|
@@ -377,6 +388,11 @@ const sectionsMap = {
|
|
|
377
388
|
"VerticalGalleryHero",
|
|
378
389
|
"ZoomGridHero"
|
|
379
390
|
],
|
|
391
|
+
"location-sections": [
|
|
392
|
+
"Location",
|
|
393
|
+
"Location2",
|
|
394
|
+
"Location3"
|
|
395
|
+
],
|
|
380
396
|
"metrics-section": [
|
|
381
397
|
"CenterMediaStats",
|
|
382
398
|
"HeaderStatsRow",
|
|
@@ -429,75 +445,78 @@ const sectionsMap = {
|
|
|
429
445
|
]
|
|
430
446
|
};
|
|
431
447
|
const confMap = {
|
|
432
|
-
CssMarqueeBanner: conf$
|
|
433
|
-
DualRowMarquee: conf$
|
|
434
|
-
ScrollDrivenMarquee: conf$
|
|
435
|
-
ScrollParallaxText: conf$
|
|
436
|
-
CenteredForm: conf$
|
|
437
|
-
ContactCardsGrid: conf$
|
|
438
|
-
ContactModal: conf$
|
|
439
|
-
FormWithMedia: conf$
|
|
440
|
-
HeaderFormCards: conf$
|
|
441
|
-
HeaderInfoFullwidth: conf$
|
|
442
|
-
InfoCardsMedia: conf$
|
|
443
|
-
LocationCardsGrid: conf$
|
|
444
|
-
SplitInfoForm: conf$
|
|
445
|
-
TabLocations: conf$
|
|
446
|
-
FeatureCardCta: conf$
|
|
447
|
-
MouseTrackCta: conf$
|
|
448
|
-
SideMediaCta: conf$
|
|
449
|
-
TextBlockCta: conf$
|
|
450
|
-
DualColumnAccordionFaq: conf$
|
|
451
|
-
IconCardFaq: conf$
|
|
452
|
-
StackedAccordionFaq: conf$
|
|
453
|
-
StackedStaticFaq: conf$
|
|
454
|
-
TwoColumnAccordionFaq: conf$
|
|
455
|
-
TwoColumnStaticFaq: conf$
|
|
456
|
-
FeatureCardsGrid: conf$
|
|
457
|
-
FeatureListSplit: conf$
|
|
458
|
-
TabFeature: conf$
|
|
459
|
-
TextMediaSplit: conf$
|
|
460
|
-
TextOnlySection: conf$
|
|
461
|
-
CenteredMinimalFooter: conf$
|
|
462
|
-
ContactLinksFooter: conf$
|
|
463
|
-
CtaLinksFooter: conf$
|
|
464
|
-
AsymmetricGrid: conf$
|
|
465
|
-
FullscreenPortfolio: conf$
|
|
466
|
-
ImageCarousel: conf$
|
|
467
|
-
InteractivePortfolio: conf$
|
|
468
|
-
MasonryGrid: conf$
|
|
469
|
-
PortfolioCards: conf$
|
|
470
|
-
PortfolioDivider: conf$
|
|
471
|
-
ScrollParallax: conf$
|
|
472
|
-
ScrollParallaxPortfolio: conf$
|
|
473
|
-
SplitCarousel: conf$
|
|
474
|
-
StaticGrid: conf$
|
|
475
|
-
CenteredNavbar: conf
|
|
476
|
-
DrawerNavbar: conf$
|
|
477
|
-
FloatingBorderedNavbar: conf$
|
|
478
|
-
FullscreenOverlayNavbar: conf
|
|
479
|
-
MegaMenuNavbar: conf$
|
|
480
|
-
StandardNavbar: conf$
|
|
481
|
-
CarouselHero: conf$
|
|
482
|
-
ColumnScrollHero: conf$
|
|
483
|
-
DualMarqueeHero: conf$
|
|
484
|
-
FullscreenVideoHero: conf$
|
|
485
|
-
GridExpandHero: conf$
|
|
486
|
-
HorizontalMarqueeHero: conf$
|
|
487
|
-
InlineImageHero: conf$
|
|
488
|
-
MouseTrackHero: conf$
|
|
489
|
-
MultiImageGridHero: conf$
|
|
490
|
-
OverlappingImageHero: conf$
|
|
491
|
-
ParallaxImagesHero: conf$
|
|
492
|
-
ScatterParallaxHero: conf$
|
|
493
|
-
ScrollExpandVideoHero: conf$
|
|
494
|
-
ScrollZoomHero: conf$
|
|
495
|
-
StickyExpandHero: conf$
|
|
496
|
-
StickyVideoHero: conf$
|
|
497
|
-
TabHero: conf$
|
|
498
|
-
ThreeImageParallaxHero: conf$
|
|
499
|
-
VerticalGalleryHero: conf$
|
|
500
|
-
ZoomGridHero: conf$
|
|
448
|
+
CssMarqueeBanner: conf$1J,
|
|
449
|
+
DualRowMarquee: conf$1I,
|
|
450
|
+
ScrollDrivenMarquee: conf$1H,
|
|
451
|
+
ScrollParallaxText: conf$1G,
|
|
452
|
+
CenteredForm: conf$1F,
|
|
453
|
+
ContactCardsGrid: conf$1E,
|
|
454
|
+
ContactModal: conf$1D,
|
|
455
|
+
FormWithMedia: conf$1C,
|
|
456
|
+
HeaderFormCards: conf$1B,
|
|
457
|
+
HeaderInfoFullwidth: conf$1A,
|
|
458
|
+
InfoCardsMedia: conf$1z,
|
|
459
|
+
LocationCardsGrid: conf$1y,
|
|
460
|
+
SplitInfoForm: conf$1x,
|
|
461
|
+
TabLocations: conf$1w,
|
|
462
|
+
FeatureCardCta: conf$1v,
|
|
463
|
+
MouseTrackCta: conf$1u,
|
|
464
|
+
SideMediaCta: conf$1t,
|
|
465
|
+
TextBlockCta: conf$1s,
|
|
466
|
+
DualColumnAccordionFaq: conf$1r,
|
|
467
|
+
IconCardFaq: conf$1q,
|
|
468
|
+
StackedAccordionFaq: conf$1p,
|
|
469
|
+
StackedStaticFaq: conf$1o,
|
|
470
|
+
TwoColumnAccordionFaq: conf$1n,
|
|
471
|
+
TwoColumnStaticFaq: conf$1m,
|
|
472
|
+
FeatureCardsGrid: conf$1l,
|
|
473
|
+
FeatureListSplit: conf$1k,
|
|
474
|
+
TabFeature: conf$1j,
|
|
475
|
+
TextMediaSplit: conf$1i,
|
|
476
|
+
TextOnlySection: conf$1h,
|
|
477
|
+
CenteredMinimalFooter: conf$1g,
|
|
478
|
+
ContactLinksFooter: conf$1f,
|
|
479
|
+
CtaLinksFooter: conf$1e,
|
|
480
|
+
AsymmetricGrid: conf$1d,
|
|
481
|
+
FullscreenPortfolio: conf$1c,
|
|
482
|
+
ImageCarousel: conf$1b,
|
|
483
|
+
InteractivePortfolio: conf$1a,
|
|
484
|
+
MasonryGrid: conf$19,
|
|
485
|
+
PortfolioCards: conf$18,
|
|
486
|
+
PortfolioDivider: conf$17,
|
|
487
|
+
ScrollParallax: conf$16,
|
|
488
|
+
ScrollParallaxPortfolio: conf$15,
|
|
489
|
+
SplitCarousel: conf$14,
|
|
490
|
+
StaticGrid: conf$13,
|
|
491
|
+
CenteredNavbar: conf$12,
|
|
492
|
+
DrawerNavbar: conf$11,
|
|
493
|
+
FloatingBorderedNavbar: conf$10,
|
|
494
|
+
FullscreenOverlayNavbar: conf$$,
|
|
495
|
+
MegaMenuNavbar: conf$_,
|
|
496
|
+
StandardNavbar: conf$Z,
|
|
497
|
+
CarouselHero: conf$Y,
|
|
498
|
+
ColumnScrollHero: conf$X,
|
|
499
|
+
DualMarqueeHero: conf$W,
|
|
500
|
+
FullscreenVideoHero: conf$V,
|
|
501
|
+
GridExpandHero: conf$U,
|
|
502
|
+
HorizontalMarqueeHero: conf$T,
|
|
503
|
+
InlineImageHero: conf$S,
|
|
504
|
+
MouseTrackHero: conf$R,
|
|
505
|
+
MultiImageGridHero: conf$Q,
|
|
506
|
+
OverlappingImageHero: conf$P,
|
|
507
|
+
ParallaxImagesHero: conf$O,
|
|
508
|
+
ScatterParallaxHero: conf$N,
|
|
509
|
+
ScrollExpandVideoHero: conf$M,
|
|
510
|
+
ScrollZoomHero: conf$L,
|
|
511
|
+
StickyExpandHero: conf$K,
|
|
512
|
+
StickyVideoHero: conf$J,
|
|
513
|
+
TabHero: conf$I,
|
|
514
|
+
ThreeImageParallaxHero: conf$H,
|
|
515
|
+
VerticalGalleryHero: conf$G,
|
|
516
|
+
ZoomGridHero: conf$F,
|
|
517
|
+
Location: conf$E,
|
|
518
|
+
Location2: conf$D,
|
|
519
|
+
Location3: conf$C,
|
|
501
520
|
CenterMediaStats: conf$B,
|
|
502
521
|
HeaderStatsRow: conf$A,
|
|
503
522
|
MixedGridStats: conf$z,
|
|
@@ -76,7 +76,7 @@ const TabTimeline = (props) => {
|
|
|
76
76
|
{
|
|
77
77
|
value: tab.value,
|
|
78
78
|
className: cn(
|
|
79
|
-
"
|
|
79
|
+
"animate-tabs",
|
|
80
80
|
contentLayout === "text+image" ? "grid grid-cols-1 gap-x-12 gap-y-12 md:grid-cols-2 md:items-center md:gap-y-16 lg:gap-x-20" : ""
|
|
81
81
|
),
|
|
82
82
|
children: contentLayout === "text+image" ? /* @__PURE__ */ jsxs(Fragment, { children: [
|