@redseed/redseed-ui-vue3 6.0.2 → 6.0.4
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.
package/package.json
CHANGED
|
@@ -11,6 +11,11 @@ const emit = defineEmits(['click'])
|
|
|
11
11
|
<style lang="scss" scoped>
|
|
12
12
|
.rsui-dropdown-option {
|
|
13
13
|
@apply cursor-pointer p-4 bg-white rounded-md text-base text-rsui-grey-900 transition;
|
|
14
|
+
@apply w-full inline-flex items-center whitespace-nowrap will-change-transform gap-1.5;
|
|
14
15
|
@apply hover:bg-rsui-grey-200;
|
|
16
|
+
|
|
17
|
+
:deep(svg) {
|
|
18
|
+
@apply size-6;
|
|
19
|
+
}
|
|
15
20
|
}
|
|
16
21
|
</style>
|
|
@@ -69,7 +69,10 @@ const formRef = ref(props.form)
|
|
|
69
69
|
<slot name="submit"
|
|
70
70
|
:formRef="formRef"
|
|
71
71
|
>
|
|
72
|
-
<ButtonPrimaryFull lg
|
|
72
|
+
<ButtonPrimaryFull lg
|
|
73
|
+
:disabled="form.processing"
|
|
74
|
+
type="submit"
|
|
75
|
+
>
|
|
73
76
|
<slot name="submit-label">
|
|
74
77
|
Log in
|
|
75
78
|
</slot>
|
|
@@ -101,7 +101,10 @@ const formRef = ref(props.form)
|
|
|
101
101
|
<slot name="submit"
|
|
102
102
|
:formRef="formRef"
|
|
103
103
|
>
|
|
104
|
-
<ButtonPrimaryFull lg
|
|
104
|
+
<ButtonPrimaryFull lg
|
|
105
|
+
:disabled="form.processing"
|
|
106
|
+
type="submit"
|
|
107
|
+
>
|
|
105
108
|
<slot name="submit-label">
|
|
106
109
|
Register
|
|
107
110
|
</slot>
|