@saasmakers/ui 1.5.7 → 1.5.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.
@@ -31,8 +31,8 @@ function onNavigate(event: MouseEvent, direction: BaseDividerNavigateDirection)
31
31
  <div
32
32
  class="my-6"
33
33
  :class="{
34
- 'mx-auto max-w-xs': size === 'sm' && !pill,
35
- 'mx-auto w-full max-w-sm': pill,
34
+ 'mx-auto': size === 'sm' && !pill,
35
+ 'mx-auto w-full': pill,
36
36
  }"
37
37
  >
38
38
  <div
@@ -23,6 +23,7 @@ defineSlots<{
23
23
  'justify-end': alignment === 'right',
24
24
  'font-bold': ['xs', 'sm'].includes(size),
25
25
  'font-extrabold': ['base', 'lg', 'xl'].includes(size),
26
+ 'text-lg sm:text-xl': size === 'xs',
26
27
  'text-xl sm:text-2xl': size === 'sm',
27
28
  'text-2xl sm:text-3xl': size === 'base',
28
29
  'text-2xl sm:text-4xl': size === 'lg',
@@ -30,7 +30,7 @@ defineSlots<{
30
30
  <BaseHeading
31
31
  v-if="title"
32
32
  alignment="center"
33
- size="sm"
33
+ size="xs"
34
34
  tag="h1"
35
35
  :text="title"
36
36
  />
@@ -39,7 +39,7 @@ defineSlots<{
39
39
  v-if="description"
40
40
  alignment="center"
41
41
  class="mt-2 text-gray-500 dark:text-gray-500"
42
- size="base"
42
+ size="sm"
43
43
  :text="description"
44
44
  />
45
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
- "version": "1.5.7",
3
+ "version": "1.5.8",
4
4
  "private": false,
5
5
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
6
6
  "license": "MIT",