cinqcinqdev-seo 0.1.56 → 0.1.57

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/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.0.0"
6
6
  },
7
- "version": "0.1.56",
7
+ "version": "0.1.57",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
@@ -154,7 +154,7 @@ const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base
154
154
  const alignText = computed(() => ({ left: "text-left", center: "text-center", right: "text-right" })[props.textAlign] || "text-center");
155
155
  const alignFlex = computed(() => ({ left: "justify-start", center: "justify-center", right: "justify-end" })[props.textAlign] || "justify-center");
156
156
  const alignProse = computed(() => ({ left: "max-w-2xl", center: "max-w-2xl mx-auto", right: "max-w-2xl ml-auto" })[props.textAlign] || "max-w-2xl mx-auto");
157
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
157
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
158
158
  const spacingStyle = computed(() => {
159
159
  const s = {};
160
160
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -92,7 +92,7 @@ const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-2xl",
92
92
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
93
93
  const titleFontSize = computed(() => ({ sm: "clamp(1rem,1.5vw,1.3rem)", md: "clamp(1.3rem,2vw,1.8rem)", lg: "clamp(2.5rem,8vw,5.5rem)" })[props.textSize] || "clamp(1.3rem,2vw,1.8rem)");
94
94
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
95
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
95
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
96
96
  const spacingStyle = computed(() => {
97
97
  const s = {};
98
98
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -265,7 +265,7 @@ const gridCols = computed(() => {
265
265
  if (n === 4) return "grid-cols-1 sm:grid-cols-2 xl:grid-cols-4";
266
266
  return "grid-cols-1 md:grid-cols-3";
267
267
  });
268
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
268
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
269
269
  const spacingStyle = computed(() => {
270
270
  const s = {};
271
271
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -149,7 +149,7 @@ const handleSubmit = async () => {
149
149
  sent.value = false;
150
150
  }, 4e3);
151
151
  };
152
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
152
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
153
153
  const spacingStyle = computed(() => {
154
154
  const s = {};
155
155
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -204,7 +204,7 @@ const gridCols = computed(() => {
204
204
  if (n <= 3) return "grid-cols-1 md:grid-cols-2";
205
205
  return "grid-cols-1 md:grid-cols-2 lg:grid-cols-3";
206
206
  });
207
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
207
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
208
208
  const spacingStyle = computed(() => {
209
209
  const s = {};
210
210
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -57,7 +57,7 @@ const openIndex = ref(null);
57
57
  const toggle = (index) => {
58
58
  openIndex.value = openIndex.value === index ? null : index;
59
59
  };
60
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
60
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
61
61
  const spacingStyle = computed(() => {
62
62
  const s = {};
63
63
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -52,7 +52,7 @@ const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-[32px
52
52
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
53
53
  const titleFontSize = computed(() => ({ sm: "clamp(1rem,1.5vw,1.3rem)", md: "clamp(1.3rem,2vw,1.8rem)", lg: "clamp(2.5rem,7vw,6rem)" })[props.textSize] || "clamp(1.3rem,2vw,1.8rem)");
54
54
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
55
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
55
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
56
56
  const spacingStyle = computed(() => {
57
57
  const s = {};
58
58
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -143,7 +143,7 @@ const props = defineProps({
143
143
  const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-3xl", pill: "rounded-[40px]" })[props.radius] || "rounded-3xl");
144
144
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
145
145
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
146
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
146
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
147
147
  const spacingStyle = computed(() => {
148
148
  const s = {};
149
149
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -77,7 +77,7 @@ const cardRound = computed(() => ({ sharp: "rounded-lg", rounded: "rounded-xl",
77
77
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-5xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-5xl mx-auto");
78
78
  const titleFontSize = computed(() => ({ sm: "clamp(0.9rem,1.2vw,1.1rem)", md: "clamp(1.1rem,1.8vw,1.6rem)", lg: "clamp(2.2rem,6vw,4.5rem)" })[props.textSize] || "clamp(1.1rem,1.8vw,1.6rem)");
79
79
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
80
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
80
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
81
81
  const spacingStyle = computed(() => {
82
82
  const s = {};
83
83
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -119,7 +119,7 @@ const allFeatures = computed(() => {
119
119
  return [...set];
120
120
  });
121
121
  const planHasFeature = (plan, feat) => (plan.features || []).some((f) => (typeof f === "object" ? f.fr || JSON.stringify(f) : f) === (typeof feat === "object" ? feat.fr || JSON.stringify(feat) : feat));
122
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
122
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
123
123
  const spacingStyle = computed(() => {
124
124
  const s = {};
125
125
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -106,7 +106,7 @@ const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-3xl",
106
106
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
107
107
  const titleFontSize = computed(() => ({ sm: "clamp(1rem,1.5vw,1.3rem)", md: "clamp(1.3rem,2vw,1.8rem)", lg: "clamp(2.5rem,6vw,5rem)" })[props.textSize] || "clamp(1.3rem,2vw,1.8rem)");
108
108
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
109
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
109
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
110
110
  const spacingStyle = computed(() => {
111
111
  const s = {};
112
112
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -84,7 +84,7 @@ const props = defineProps({
84
84
  const sectionPad = computed(() => ({ compact: "py-8 px-4 md:px-8", normal: "py-14 px-6 md:px-12", spacious: "py-24 px-8 md:px-16" })[props.spacing] || "py-14 px-6 md:px-12");
85
85
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-5xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-3xl mx-auto");
86
86
  const quoteFontSize = computed(() => ({ sm: "clamp(0.95rem,1.2vw,1.1rem)", md: "clamp(1.1rem,1.8vw,1.6rem)", lg: "clamp(2rem,6vw,5rem)" })[props.textSize] || "clamp(1.1rem,1.8vw,1.6rem)");
87
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
87
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
88
88
  const spacingStyle = computed(() => {
89
89
  const s = {};
90
90
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -178,7 +178,7 @@ const gridCols = computed(() => {
178
178
  if (n === 2) return "grid-cols-1 sm:grid-cols-2";
179
179
  return "grid-cols-1 sm:grid-cols-2 lg:grid-cols-3";
180
180
  });
181
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
181
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
182
182
  const spacingStyle = computed(() => {
183
183
  const s = {};
184
184
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -64,7 +64,7 @@ const rendered = computed(() => {
64
64
  if (typeof props.content === "object") return props.content.fr || "";
65
65
  return props.content;
66
66
  });
67
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
67
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
68
68
  const spacingStyle = computed(() => {
69
69
  const s = {};
70
70
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -108,7 +108,7 @@ const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-3xl",
108
108
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
109
109
  const titleFontSize = computed(() => ({ sm: "clamp(1rem,1.5vw,1.3rem)", md: "clamp(1.3rem,2vw,1.8rem)", lg: "clamp(2.5rem,6vw,5rem)" })[props.textSize] || "clamp(1.3rem,2vw,1.8rem)");
110
110
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
111
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
111
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
112
112
  const spacingStyle = computed(() => {
113
113
  const s = {};
114
114
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -106,7 +106,7 @@ const cardRound = computed(() => ({ sharp: "rounded-xl", rounded: "rounded-3xl",
106
106
  const containerClass = computed(() => ({ narrow: "max-w-3xl mx-auto", normal: "max-w-6xl mx-auto", wide: "max-w-7xl mx-auto", full: "max-w-full" })[props.contentWidth] || "max-w-6xl mx-auto");
107
107
  const titleFontSize = computed(() => ({ sm: "clamp(1rem,1.5vw,1.3rem)", md: "clamp(1.3rem,2vw,1.8rem)", lg: "clamp(2.5rem,6vw,5rem)" })[props.textSize] || "clamp(1.3rem,2vw,1.8rem)");
108
108
  const bodyClass = computed(() => ({ sm: "text-xs", md: "text-sm", lg: "text-base" })[props.textSize] || "text-sm");
109
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
109
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
110
110
  const spacingStyle = computed(() => {
111
111
  const s = {};
112
112
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -101,7 +101,7 @@ const imageContainerClass = computed(() => {
101
101
  const styles = { rounded: `aspect-[4/3] ${r}`, square: "aspect-square rounded-xl", circle: "aspect-square rounded-full max-w-[360px] mx-auto", portrait: `aspect-[3/4] ${r} max-w-sm mx-auto` };
102
102
  return styles[props.imageStyle] ?? styles.rounded;
103
103
  });
104
- const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px" };
104
+ const SM = { none: "0", xs: "8px", sm: "24px", md: "48px", lg: "80px", xl: "128px", "-xs": "-8px", "-sm": "-24px", "-md": "-48px", "-lg": "-80px", "-xl": "-128px" };
105
105
  const spacingStyle = computed(() => {
106
106
  const s = {};
107
107
  if (props.paddingTop && SM[props.paddingTop]) s.paddingTop = SM[props.paddingTop];
@@ -57,6 +57,20 @@ const paddingOptions = [
57
57
  { value: "lg", label: "LG (80px)" },
58
58
  { value: "xl", label: "XL (128px)" }
59
59
  ];
60
+ const marginOptions = [
61
+ { value: "", label: "Auto" },
62
+ { value: "none", label: "None (0)" },
63
+ { value: "xs", label: "XS (8px)" },
64
+ { value: "sm", label: "SM (24px)" },
65
+ { value: "md", label: "MD (48px)" },
66
+ { value: "lg", label: "LG (80px)" },
67
+ { value: "xl", label: "XL (128px)" },
68
+ { value: "-xs", label: "-XS (-8px)" },
69
+ { value: "-sm", label: "-SM (-24px)" },
70
+ { value: "-md", label: "-MD (-48px)" },
71
+ { value: "-lg", label: "-LG (-80px)" },
72
+ { value: "-xl", label: "-XL (-128px)" }
73
+ ];
60
74
  const i18n0 = (fr = "") => ({ fr, ar: "", en: "" });
61
75
  export const DEFAULT_SECTIONS = {
62
76
  HeroSection: {
@@ -121,8 +135,8 @@ export const DEFAULT_SECTIONS = {
121
135
  animation: { type: "cards", label: "Animation", group: "animation", options: animationOptions },
122
136
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
123
137
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
124
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
125
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
138
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
139
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
126
140
  }
127
141
  },
128
142
  TextVisual: {
@@ -189,8 +203,8 @@ export const DEFAULT_SECTIONS = {
189
203
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
190
204
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
191
205
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
192
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
193
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
206
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
207
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
194
208
  }
195
209
  },
196
210
  ServiceGrid: {
@@ -247,8 +261,8 @@ export const DEFAULT_SECTIONS = {
247
261
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
248
262
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
249
263
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
250
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
251
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
264
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
265
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
252
266
  }
253
267
  },
254
268
  Features: {
@@ -284,8 +298,8 @@ export const DEFAULT_SECTIONS = {
284
298
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
285
299
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
286
300
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
287
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
288
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
301
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
302
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
289
303
  }
290
304
  },
291
305
  FAQ: {
@@ -321,8 +335,8 @@ export const DEFAULT_SECTIONS = {
321
335
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
322
336
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
323
337
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
324
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
325
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
338
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
339
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
326
340
  }
327
341
  },
328
342
  Process: {
@@ -373,8 +387,8 @@ export const DEFAULT_SECTIONS = {
373
387
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
374
388
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
375
389
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
376
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
377
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
390
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
391
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
378
392
  }
379
393
  },
380
394
  Testimonials: {
@@ -427,8 +441,8 @@ export const DEFAULT_SECTIONS = {
427
441
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
428
442
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
429
443
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
430
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
431
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
444
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
445
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
432
446
  }
433
447
  },
434
448
  Pricing: {
@@ -481,8 +495,8 @@ export const DEFAULT_SECTIONS = {
481
495
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
482
496
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
483
497
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
484
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
485
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
498
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
499
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
486
500
  }
487
501
  },
488
502
  ContactForm: {
@@ -525,8 +539,8 @@ export const DEFAULT_SECTIONS = {
525
539
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
526
540
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
527
541
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
528
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
529
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
542
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
543
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
530
544
  }
531
545
  },
532
546
  // ── Blog sections ─────────────────────────────────────────────────────────
@@ -586,8 +600,8 @@ export const DEFAULT_SECTIONS = {
586
600
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
587
601
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
588
602
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
589
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
590
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
603
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
604
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
591
605
  }
592
606
  },
593
607
  RichText: {
@@ -632,8 +646,8 @@ export const DEFAULT_SECTIONS = {
632
646
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
633
647
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
634
648
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
635
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
636
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
649
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
650
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
637
651
  }
638
652
  },
639
653
  CallToAction: {
@@ -682,8 +696,8 @@ export const DEFAULT_SECTIONS = {
682
696
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
683
697
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
684
698
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
685
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
686
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
699
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
700
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
687
701
  }
688
702
  },
689
703
  Quote: {
@@ -724,8 +738,8 @@ export const DEFAULT_SECTIONS = {
724
738
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
725
739
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
726
740
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
727
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
728
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
741
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
742
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
729
743
  }
730
744
  },
731
745
  DataTable: {
@@ -812,8 +826,8 @@ export const DEFAULT_SECTIONS = {
812
826
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
813
827
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
814
828
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
815
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
816
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
829
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
830
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
817
831
  }
818
832
  },
819
833
  Comparison: {
@@ -881,8 +895,8 @@ export const DEFAULT_SECTIONS = {
881
895
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
882
896
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
883
897
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
884
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
885
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
898
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
899
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
886
900
  }
887
901
  },
888
902
  RelatedPages: {
@@ -936,8 +950,8 @@ export const DEFAULT_SECTIONS = {
936
950
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
937
951
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
938
952
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
939
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
940
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
953
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
954
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
941
955
  }
942
956
  },
943
957
  Newsletter: {
@@ -984,8 +998,8 @@ export const DEFAULT_SECTIONS = {
984
998
  textSize: { type: "cards", label: "Text Size", options: textSizeOptions },
985
999
  paddingTop: { type: "select", label: "Padding Top", options: paddingOptions },
986
1000
  paddingBottom: { type: "select", label: "Padding Bottom", options: paddingOptions },
987
- marginTop: { type: "select", label: "Margin Top", options: paddingOptions },
988
- marginBottom: { type: "select", label: "Margin Bottom", options: paddingOptions }
1001
+ marginTop: { type: "select", label: "Margin Top", options: marginOptions },
1002
+ marginBottom: { type: "select", label: "Margin Bottom", options: marginOptions }
989
1003
  }
990
1004
  }
991
1005
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cinqcinqdev-seo",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "description": "A reusable Nuxt 3 admin CMS module with visual page editor powered by Supabase",
5
5
  "license": "MIT",
6
6
  "module": "./dist/module.mjs",