@redseed/redseed-ui-vue3 2.11.4 → 2.11.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-vue3",
3
- "version": "2.11.4",
3
+ "version": "2.11.6",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -69,7 +69,7 @@ const emptyClass = computed(() => [
69
69
  <style lang="scss" scoped>
70
70
  .rsui-empty {
71
71
  @apply w-full flex flex-col items-center justify-center gap-5;
72
- @apply px-3 py-4 rounded-md bg-white text-rsui-default;
72
+ @apply px-3 py-4 rounded-md text-rsui-default;
73
73
  &--wide {
74
74
  .rsui-empty__image {
75
75
  :deep(svg) {
@@ -28,11 +28,20 @@ defineOptions({
28
28
 
29
29
  :deep(.rsui-form-field-slot) {
30
30
  label {
31
- @apply text-sm font-normal;
31
+ @apply font-normal;
32
32
  }
33
33
  }
34
34
 
35
35
  :deep(.rsui-form-field-slot--compact) {
36
+
37
+ label {
38
+ @apply text-sm;
39
+ }
40
+
41
+ .rsui-form-field-slot__label {
42
+ @apply pt-1.5;
43
+ }
44
+
36
45
  input[type='date'],
37
46
  input[type='datetime-local'],
38
47
  input[type='email'],