@fy-/fws-vue 0.0.9 → 0.0.901

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.
@@ -43,13 +43,15 @@ onUnmounted(() => {
43
43
  </script>
44
44
  <template>
45
45
  <DefaultModal id="confirm" :title="title ? title : ''">
46
- <div class="relative bg-white rounded-lg shadow dark:bg-gray-700">
46
+ <div class="relative bg-white rounded-lg shadow dark:bg-fv-neutral-700">
47
47
  <div class="p-6 text-center">
48
48
  <ExclamationCircleIcon
49
- class="mx-auto mb-4 text-gray-400 w-12 h-12 dark:text-gray-200"
49
+ class="mx-auto mb-4 text-fv-neutral-400 w-12 h-12 dark:text-fv-neutral-200"
50
50
  />
51
51
 
52
- <h3 class="mb-5 text-lg font-normal text-gray-500 dark:text-gray-400">
52
+ <h3
53
+ class="mb-5 text-lg font-normal text-fv-neutral-500 dark:text-fv-neutral-400"
54
+ >
53
55
  {{ desc ? desc : title }}
54
56
  </h3>
55
57
  <div class="flex justify-between gap-3 mt-4">
@@ -61,21 +61,21 @@ onUnmounted(() => {
61
61
  style="z-index: 41"
62
62
  >
63
63
  <div
64
- class="relative w-full max-w-2xl max-h-full bg-white rounded-lg shadow dark:bg-fv-neutal-700"
64
+ class="relative w-full max-w-2xl max-h-full bg-white rounded-lg shadow dark:bg-fv-neutral-700"
65
65
  >
66
66
  <div
67
- class="flex items-center justify-between p-2 w-full border-b rounded-t dark:border-fv-neutal-600"
67
+ class="flex items-center justify-between p-2 w-full border-b rounded-t dark:border-fv-neutral-600"
68
68
  >
69
69
  <slot name="before"></slot>
70
70
  <DialogTitle
71
- class="text-xl font-semibold text-fv-neutal-900 dark:text-white"
71
+ class="text-xl font-semibold text-fv-neutral-900 dark:text-white"
72
72
  v-if="title"
73
73
  >
74
74
  {{ title }}
75
75
  </DialogTitle>
76
76
  <button
77
77
  @click="setModal(false)"
78
- class="text-fv-neutal-400 bg-transparent hover:bg-fv-neutal-200 hover:text-fv-neutal-900 rounded-lg text-sm w-8 h-8 ml-auto inline-flex justify-center items-center dark:hover:bg-fv-neutal-600 dark:hover:text-white"
78
+ class="text-fv-neutral-400 bg-transparent hover:bg-fv-neutral-200 hover:text-fv-neutral-900 rounded-lg text-sm w-8 h-8 ml-auto inline-flex justify-center items-center dark:hover:bg-fv-neutral-600 dark:hover:text-white"
79
79
  >
80
80
  <component :is="closeIcon" class="w-7 h-7" />
81
81
  </button>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.0.9",
3
+ "version": "0.0.901",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {