@fy-/fws-vue 0.0.8 → 0.0.9

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.
@@ -184,7 +184,7 @@ onUnmounted(() => {
184
184
  >
185
185
  <DefaultPaging :items="paging" v-if="paging" :id="`${props.id}Pages`" />
186
186
  <button
187
- class="btn primary defaults"
187
+ class="btn primary small"
188
188
  @click="exportToCsv"
189
189
  v-if="exportableColumns.length && data.length"
190
190
  >
@@ -3,10 +3,11 @@ import useVuelidate from "@vuelidate/core";
3
3
  import { reactive } from "vue";
4
4
  import { onMounted } from "vue";
5
5
  import { onUnmounted } from "vue";
6
- import DefaultInput from "../ui/DefaultInput.vue";
7
6
  import { useTranslation } from "../../translations";
8
7
  import { useEventBus } from "../../event-bus";
9
8
  import DefaultDateSelection from "../ui/DefaultDateSelection.vue";
9
+ import DefaultInput from "../ui/DefaultInput.vue";
10
+
10
11
  interface FilterData {
11
12
  label: string;
12
13
  req: boolean;
@@ -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-gray-700"
64
+ class="relative w-full max-w-2xl max-h-full bg-white rounded-lg shadow dark:bg-fv-neutal-700"
65
65
  >
66
66
  <div
67
- class="flex items-center justify-between p-2 w-full border-b rounded-t dark:border-gray-600"
67
+ class="flex items-center justify-between p-2 w-full border-b rounded-t dark:border-fv-neutal-600"
68
68
  >
69
69
  <slot name="before"></slot>
70
70
  <DialogTitle
71
- class="text-xl font-semibold text-gray-900 dark:text-white"
71
+ class="text-xl font-semibold text-fv-neutal-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-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm w-8 h-8 ml-auto inline-flex justify-center items-center dark:hover:bg-gray-600 dark:hover:text-white"
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"
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.8",
3
+ "version": "0.0.9",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {
package/style.css CHANGED
@@ -10,7 +10,7 @@
10
10
  }
11
11
 
12
12
  .btn {
13
- @apply inline-flex gap-3 text-white focus:ring-4 font-medium rounded-lg text-sm focus:outline-none transition-colors ease-in-out motion-reduce:transition-none;
13
+ @apply inline-flex gap-1 text-white focus:ring-4 font-medium rounded-lg text-sm focus:outline-none transition-colors ease-in-out motion-reduce:transition-none;
14
14
  &.primary {
15
15
  @apply bg-fv-primary-700 hover:bg-fv-primary-800 focus:ring-fv-primary-300 dark:bg-fv-primary-600 dark:hover:bg-fv-primary-700 dark:focus:ring-fv-primary-800;
16
16
  }