@damarkuncoro/landing-page 0.1.6 → 0.1.7

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.
@@ -6,7 +6,7 @@ interface ButtonConfig extends WithBaseConfig<{
6
6
  variant: "primary" | "secondary" | "outline" | "ghost";
7
7
  size?: "sm" | "md" | "lg";
8
8
  target?: "_blank" | "_self";
9
- skin?: "default" | "tailwind";
9
+ skin?: "default" | "tailwind" | "none";
10
10
  padding?: string;
11
11
  fontSize?: string;
12
12
  }> {
@@ -40,7 +40,7 @@ interface HeaderConfig extends WithBaseConfig<{
40
40
  buttons?: ButtonConfig[];
41
41
  fixed?: boolean;
42
42
  scrollEffect?: boolean;
43
- skin?: "default" | "tailwind";
43
+ skin?: "default" | "tailwind" | "modern" | "none";
44
44
  searchPlaceholder?: string;
45
45
  onSearch?: (query: string) => void;
46
46
  initialSearchValue?: string;
@@ -58,7 +58,7 @@ interface HeroConfig extends WithBaseConfig<{
58
58
  captionsSrc?: string;
59
59
  buttons: ButtonConfig[];
60
60
  alignment?: "left" | "center" | "right";
61
- skin?: "default" | "skin2" | "skin3" | "skin4" | "skin5" | "skin6" | "skin7" | "skin8" | "skin9" | "skin10" | "tailwind";
61
+ skin?: "default" | "skin2" | "skin3" | "skin4" | "skin5" | "skin6" | "skin7" | "skin8" | "skin9" | "skin10" | "tailwind" | "none";
62
62
  }> {
63
63
  }
64
64
  interface FeatureConfig extends WithBaseConfig<{
@@ -66,7 +66,7 @@ interface FeatureConfig extends WithBaseConfig<{
66
66
  description: string;
67
67
  icon?: string;
68
68
  image?: string;
69
- skin?: "default" | "tailwind";
69
+ skin?: "default" | "tailwind" | "none";
70
70
  }> {
71
71
  }
72
72
  interface TestimonialConfig extends WithBaseConfig<{
@@ -87,6 +87,7 @@ interface PricingConfig extends WithBaseConfig<{
87
87
  button: ButtonConfig;
88
88
  featured?: boolean;
89
89
  }[];
90
+ skin?: "default" | "tailwind" | "none";
90
91
  }> {
91
92
  }
92
93
  interface FooterConfig extends WithBaseConfig<{
@@ -107,6 +108,7 @@ interface FooterConfig extends WithBaseConfig<{
107
108
  icon?: string;
108
109
  }[];
109
110
  copyright?: string;
111
+ skin?: "default" | "tailwind" | "none";
110
112
  }> {
111
113
  }
112
114
  interface CtaConfig extends WithBaseConfig<{
@@ -114,6 +116,7 @@ interface CtaConfig extends WithBaseConfig<{
114
116
  description: string;
115
117
  button: ButtonConfig;
116
118
  image?: string;
119
+ skin?: "default" | "tailwind" | "none";
117
120
  }> {
118
121
  }
119
122
  interface StatConfig extends WithBaseConfig<{
@@ -130,6 +133,7 @@ interface FaqConfig extends WithBaseConfig<{
130
133
  question: string;
131
134
  answer: string;
132
135
  }[];
136
+ skin?: "default" | "tailwind" | "none";
133
137
  }> {
134
138
  }
135
139
 
@@ -283,20 +287,24 @@ interface FeaturesSection extends BaseSectionConfig {
283
287
  type: "features";
284
288
  config: {
285
289
  features: FeatureConfig[];
290
+ skin?: "default" | "tailwind" | "none";
286
291
  };
287
292
  }
288
293
  declare function createFeaturesSection(config: {
289
294
  features: FeatureConfig[];
295
+ skin?: "default" | "tailwind" | "none";
290
296
  }, id?: string, className?: string): FeaturesSection;
291
297
 
292
298
  interface TestimonialsSection extends BaseSectionConfig {
293
299
  type: "testimonials";
294
300
  config: {
295
301
  testimonials: TestimonialConfig[];
302
+ skin?: "default" | "tailwind" | "none";
296
303
  };
297
304
  }
298
305
  declare function createTestimonialsSection(config: {
299
306
  testimonials: TestimonialConfig[];
307
+ skin?: "default" | "tailwind" | "none";
300
308
  }, id?: string, className?: string): TestimonialsSection;
301
309
 
302
310
  interface PricingSection extends BaseSectionConfig {
@@ -321,10 +329,12 @@ interface StatsSection extends BaseSectionConfig {
321
329
  type: "stats";
322
330
  config: {
323
331
  stats: StatConfig[];
332
+ skin?: "default" | "tailwind" | "none";
324
333
  };
325
334
  }
326
335
  declare function createStatsSection(config: {
327
336
  stats: StatConfig[];
337
+ skin?: "default" | "tailwind" | "none";
328
338
  }, id?: string, className?: string): StatsSection;
329
339
 
330
340
  interface FaqSection extends BaseSectionConfig {