sprintify-ui 0.7.6 → 0.7.8

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.
@@ -74,19 +74,23 @@ const sizeClassOuter = computed(() => {
74
74
  return 'px-2';
75
75
  case 'lg':
76
76
  return 'px-2';
77
+ default:
78
+ return '';
77
79
  }
78
80
  });
79
81
 
80
82
  const sizeClassInner = computed(() => {
81
83
  switch (size.value) {
82
84
  case 'xs':
83
- return 'text-xs py-1 px-1 font-light';
85
+ return 'text-xs py-1 px-1 font-normal';
84
86
  case 'sm':
85
87
  return 'text-sm py-1 px-2 font-normal';
86
88
  case 'md':
87
89
  return 'text-sm py-1.5 px-2 font-normal';
88
90
  case 'lg':
89
91
  return 'text-base py-1.5 px-3 font-normal';
92
+ default:
93
+ return '';
90
94
  }
91
95
  });
92
96
  </script>
@@ -149,7 +149,7 @@ const textareaClasses = computed(() => {
149
149
  const disabled = 'disabled:cursor-not-allowed disabled:text-slate-300';
150
150
  const focus = 'focus:input-focus';
151
151
  const error = hasErrorInternal.value ? 'border-red-500 focus:input-focus-error' : 'border-slate-300';
152
- const placeholder = 'placeholder:text-slate-400 placeholder:font-light';
152
+ const placeholder = 'placeholder:text-slate-400';
153
153
  const sizeConfig = sizes[sizeInternal.value];
154
154
 
155
155
  const sizeClasses = {
@@ -24,7 +24,7 @@
24
24
  </p>
25
25
  <p
26
26
  v-if="item.description"
27
- class="mt-1 text-xs leading-tight text-slate-500 font-light"
27
+ class="mt-1 text-xs leading-tight text-slate-500"
28
28
  >
29
29
  {{ item.description }}
30
30
  </p>
@@ -51,7 +51,7 @@
51
51
  </div>
52
52
  <div
53
53
  v-if="item.date"
54
- class="whitespace-nowrap text-right text-xs text-slate-500 font-light"
54
+ class="whitespace-nowrap text-right text-xs text-slate-500"
55
55
  >
56
56
  <time :datetime="item.date">{{ item.date }}</time>
57
57
  </div>
@@ -7,7 +7,7 @@
7
7
  :class="colorClass"
8
8
  />
9
9
 
10
- <p class="text-sm leading-snug text-white font-light line-clamp-4">
10
+ <p class="text-sm leading-snug text-white line-clamp-4">
11
11
  {{ text }}
12
12
  </p>
13
13
  </div>
@@ -51,6 +51,7 @@ import BaseIconPicker from './BaseIconPicker.vue';
51
51
  import BaseInput from './BaseInput.vue';
52
52
  import BaseInputLabel from './BaseInputLabel.vue';
53
53
  import BaseInputPercent from './BaseInputPercent.vue';
54
+ import BaseJsonReader from './BaseJsonReader.vue';
54
55
  import BaseLoadingCover from './BaseLoadingCover.vue';
55
56
  import BaseMediaItem from './BaseMediaItem.vue';
56
57
  import BaseMediaLibrary from './BaseMediaLibrary.vue';
@@ -157,6 +158,7 @@ export {
157
158
  BaseInput,
158
159
  BaseInputLabel,
159
160
  BaseInputPercent,
161
+ BaseJsonReader,
160
162
  BaseLoadingCover,
161
163
  BaseMediaItem,
162
164
  BaseMediaLibrary,
@@ -37,7 +37,7 @@
37
37
  </BaseTabItem>
38
38
  </BaseTabs>
39
39
 
40
- <div class="lg:flex lg:space-x-6 space-y-5 lg:space-y-0 font-light">
40
+ <div class="lg:flex lg:space-x-6 space-y-5 lg:space-y-0">
41
41
  <div class="lg:grow lg:w-8/12">
42
42
  <BaseCard class="mb-6">
43
43
  <BaseCardRow size="sm">