@fy-/fws-vue 0.0.903 → 0.0.905

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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/seo.ts +1 -0
  3. package/style.css +33 -32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.0.903",
3
+ "version": "0.0.905",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {
package/seo.ts CHANGED
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  import type { Ref } from "vue";
2
3
  import { useFyHead } from "@fy-/head";
3
4
  import { computed } from "vue";
package/style.css CHANGED
@@ -1,43 +1,44 @@
1
1
  .fws-error-text {
2
- @apply text-red-700 dark:text-red-500;
2
+ @apply text-red-700 dark:text-red-500;
3
3
  }
4
4
  .fws-helper-text {
5
- @apply text-fv-neutral-500 dark:text-fv-neutral-400;
5
+ @apply text-fv-neutral-500 dark:text-fv-neutral-400;
6
6
  }
7
7
 
8
8
  .fws-link {
9
- @apply text-fv-primary-700 dark:text-fv-primary-300 inline-flex items-center underline hover:no-underline;
9
+ @apply text-fv-primary-700 dark:text-fv-primary-300 inline-flex items-center underline hover:no-underline;
10
10
  }
11
11
 
12
12
  .btn {
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
- &.primary {
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
- }
17
- &.accent {
18
- @apply bg-fv-accent-700 hover:bg-fv-accent-800 focus:ring-fv-accent-300 dark:bg-fv-accent-600 dark:hover:bg-fv-accent-700 dark:focus:ring-fv-accent-800;
19
- }
20
- &.success,&.valid {
21
- @apply bg-green-700 hover:bg-green-800 focus:ring-green-300 dark:bg-green-600 dark:hover:bg-green-700 dark:focus:ring-green-800;
22
- }
23
- &.error,&.danger {
24
- @apply bg-red-700 hover:bg-red-800 focus:ring-red-300 dark:bg-red-600 dark:hover:bg-red-700 dark:focus:ring-red-800;
25
- }
26
- &.neutral {
27
- @apply bg-fv-neutral-700 hover:bg-fv-neutral-800 focus:ring-fv-neutral-300 dark:bg-fv-neutral-600 dark:hover:bg-fv-neutral-700 dark:focus:ring-fv-neutral-800;
28
- }
13
+ @apply inline-flex gap-1 text-white focus:ring-4 font-medium rounded-lg focus:outline-none transition-colors ease-in-out motion-reduce:transition-none;
14
+ &.primary {
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
+ }
17
+ &.accent {
18
+ @apply bg-fv-accent-700 hover:bg-fv-accent-800 focus:ring-fv-accent-300 dark:bg-fv-accent-600 dark:hover:bg-fv-accent-700 dark:focus:ring-fv-accent-800;
19
+ }
20
+ &.success,
21
+ &.valid {
22
+ @apply bg-green-700 hover:bg-green-800 focus:ring-green-300 dark:bg-green-600 dark:hover:bg-green-700 dark:focus:ring-green-800;
23
+ }
24
+ &.error,
25
+ &.danger {
26
+ @apply bg-red-700 hover:bg-red-800 focus:ring-red-300 dark:bg-red-600 dark:hover:bg-red-700 dark:focus:ring-red-800;
27
+ }
28
+ &.neutral {
29
+ @apply bg-fv-neutral-700 hover:bg-fv-neutral-800 focus:ring-fv-neutral-300 dark:bg-fv-neutral-600 dark:hover:bg-fv-neutral-700 dark:focus:ring-fv-neutral-800;
30
+ }
29
31
 
30
- &.defaults {
31
- @apply px-5 py-2.5 text-sm;
32
- }
33
- &.small {
34
- @apply px-2.5 py-1.5 text-xs;
35
- }
36
- &.medium {
37
- @apply px-4 py-2 text-sm;
38
- }
39
- &.large {
40
- @apply px-6 py-3 text-base;
41
- }
32
+ &.defaults {
33
+ @apply px-2 py-1;
34
+ }
35
+ &.medium {
36
+ @apply px-4 py-2 text-lg;
37
+ }
38
+ &.large {
39
+ @apply px-6 py-3 text-xl;
40
+ }
41
+ &.small {
42
+ @apply px-2 py-1 text-xs;
43
+ }
42
44
  }
43
-