cinqcinqdev-seo 0.1.29 → 0.1.30

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.29",
7
+ "version": "0.1.30",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
@@ -203,7 +203,7 @@ useHead({ title: computed(() => `${typeLabel.value} \u2014 Admin`) });
203
203
  <div>
204
204
  <label class="text-[10px] font-black uppercase tracking-widest text-gray-400 mb-2 block">Titre</label>
205
205
  <input v-model="newPageTitle" type="text" placeholder="Ex: Création site web"
206
- class="w-full border border-gray-200 p-3 rounded-xl text-sm focus:ring-2 focus:ring-[#3d35ff] outline-none transition" autofocus />
206
+ class="w-full border border-gray-200 p-3 rounded-xl text-sm text-gray-900 focus:ring-2 focus:ring-[#3d35ff] outline-none transition" autofocus />
207
207
  </div>
208
208
  <div>
209
209
  <label class="text-[10px] font-black uppercase tracking-widest text-gray-400 mb-2 block">Départ</label>
@@ -226,7 +226,7 @@ useHead({ title: computed(() => `${typeLabel.value} \u2014 Admin`) });
226
226
  </div>
227
227
  <div v-if="createMode === 'template'">
228
228
  <label class="text-[10px] font-black uppercase tracking-widest text-gray-400 mb-2 block">Template</label>
229
- <select v-model="selectedTemplateId" class="w-full border border-gray-200 p-3 rounded-xl text-sm outline-none focus:ring-2 focus:ring-[#3d35ff] transition bg-white">
229
+ <select v-model="selectedTemplateId" class="w-full border border-gray-200 p-3 rounded-xl text-sm text-gray-900 outline-none focus:ring-2 focus:ring-[#3d35ff] transition bg-white">
230
230
  <option value="">— Choisir —</option>
231
231
  <option v-for="tpl in templates" :key="tpl.id" :value="tpl.id">{{ tpl.name }}</option>
232
232
  </select>
@@ -235,7 +235,7 @@ useHead({ title: computed(() => `${typeLabel.value} \u2014 Admin`) });
235
235
  </div>
236
236
 
237
237
  <div class="px-7 pb-7 flex gap-3">
238
- <button @click="isCreating = false" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold hover:bg-gray-50 transition">
238
+ <button @click="isCreating = false" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold text-gray-900 hover:bg-gray-50 transition">
239
239
  Annuler
240
240
  </button>
241
241
  <button @click="handleCreate"
@@ -262,7 +262,7 @@ useHead({ title: computed(() => `${typeLabel.value} \u2014 Admin`) });
262
262
  </p>
263
263
  </div>
264
264
  <div class="px-7 pb-7 flex gap-3">
265
- <button @click="deleteModal = null" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold hover:bg-gray-50 transition">
265
+ <button @click="deleteModal = null" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold text-gray-900 hover:bg-gray-50 transition">
266
266
  Annuler
267
267
  </button>
268
268
  <button @click="handleDelete" :disabled="isDeleting"
@@ -290,10 +290,10 @@ useHead({ title: computed(() => `${typeLabel.value} \u2014 Admin`) });
290
290
  <div class="px-7 py-6">
291
291
  <label class="text-[10px] font-black uppercase tracking-widest text-gray-400 mb-2 block">Nom du template</label>
292
292
  <input v-model="templateName" type="text" placeholder="Ex: Landing page service"
293
- class="w-full border border-gray-200 p-3 rounded-xl text-sm focus:ring-2 focus:ring-[#3d35ff] outline-none transition" autofocus />
293
+ class="w-full border border-gray-200 p-3 rounded-xl text-sm text-gray-900 focus:ring-2 focus:ring-[#3d35ff] outline-none transition" autofocus />
294
294
  </div>
295
295
  <div class="px-7 pb-7 flex gap-3">
296
- <button @click="templateModal = null" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold hover:bg-gray-50 transition">
296
+ <button @click="templateModal = null" class="flex-1 px-4 py-2.5 border border-gray-200 rounded-xl text-sm font-semibold text-gray-900 hover:bg-gray-50 transition">
297
297
  Annuler
298
298
  </button>
299
299
  <button @click="handleTurnIntoTemplate" :disabled="!templateName.trim() || isSavingTemplate"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cinqcinqdev-seo",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
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",