@saasmakers/ui 1.4.26 → 1.4.27
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.
|
@@ -28,7 +28,6 @@ function onNavigate(event: MouseEvent, direction: BaseDividerNavigateDirection)
|
|
|
28
28
|
|
|
29
29
|
<template>
|
|
30
30
|
<div
|
|
31
|
-
class="relative block text-center"
|
|
32
31
|
:class="{
|
|
33
32
|
'my-3': margin === 3,
|
|
34
33
|
'my-4': margin === 4,
|
|
@@ -41,11 +40,10 @@ function onNavigate(event: MouseEvent, direction: BaseDividerNavigateDirection)
|
|
|
41
40
|
'my-16': margin === 16,
|
|
42
41
|
'my-20': margin === 20,
|
|
43
42
|
'mx-auto max-w-xs': size === 'sm',
|
|
44
|
-
'w-full': size === 'base',
|
|
45
43
|
}"
|
|
46
44
|
>
|
|
47
45
|
<div class="grid grid-cols-[1fr_auto_1fr] items-center">
|
|
48
|
-
<div class="
|
|
46
|
+
<div class="flex items-center">
|
|
49
47
|
<BaseIcon
|
|
50
48
|
v-if="navigable && !loading && !hidePrevious"
|
|
51
49
|
class="mr-2 shrink-0 hover:!no-underline"
|
|
@@ -58,11 +56,10 @@ function onNavigate(event: MouseEvent, direction: BaseDividerNavigateDirection)
|
|
|
58
56
|
/>
|
|
59
57
|
|
|
60
58
|
<div
|
|
61
|
-
class="
|
|
59
|
+
class="flex-1 border-t border-gray-300 dark:border-gray-700"
|
|
62
60
|
:class="{
|
|
63
61
|
'border-dashed': borderStyle === 'dashed',
|
|
64
62
|
'border-dotted': borderStyle === 'dotted',
|
|
65
|
-
'border-solid': borderStyle === 'solid',
|
|
66
63
|
}"
|
|
67
64
|
style="height: 1px"
|
|
68
65
|
/>
|
|
@@ -70,18 +67,17 @@ function onNavigate(event: MouseEvent, direction: BaseDividerNavigateDirection)
|
|
|
70
67
|
|
|
71
68
|
<BaseText
|
|
72
69
|
v-if="loading || title"
|
|
73
|
-
class="
|
|
70
|
+
class="px-4 text-center"
|
|
74
71
|
size="sm"
|
|
75
72
|
:text="loading ? t('loading') : title"
|
|
76
73
|
/>
|
|
77
74
|
|
|
78
|
-
<div class="
|
|
75
|
+
<div class="flex items-center">
|
|
79
76
|
<div
|
|
80
|
-
class="
|
|
77
|
+
class="flex-1 border-t border-gray-300 dark:border-gray-700"
|
|
81
78
|
:class="{
|
|
82
79
|
'border-dashed': borderStyle === 'dashed',
|
|
83
80
|
'border-dotted': borderStyle === 'dotted',
|
|
84
|
-
'border-solid': borderStyle === 'solid',
|
|
85
81
|
}"
|
|
86
82
|
style="height: 1px"
|
|
87
83
|
/>
|