@redseed/redseed-ui-vue3 2.10.3 → 2.10.5
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
|
@@ -89,13 +89,13 @@ const showNotFoundMessage = computed(() => !props.totalItems && props.controlApp
|
|
|
89
89
|
@apply gap-4 grid-cols-1;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
&--sm
|
|
93
|
-
&--md {
|
|
92
|
+
&--sm {
|
|
94
93
|
.rsui-card-group__cards {
|
|
95
94
|
@apply gap-4 grid-cols-2;
|
|
96
95
|
}
|
|
97
96
|
}
|
|
98
97
|
|
|
98
|
+
&--md,
|
|
99
99
|
&--lg,
|
|
100
100
|
&--xl {
|
|
101
101
|
.rsui-card-group__cards {
|
|
@@ -4,19 +4,19 @@ defineOptions({
|
|
|
4
4
|
})
|
|
5
5
|
</script>
|
|
6
6
|
<template>
|
|
7
|
-
<div class="rsui-fieldset">
|
|
7
|
+
<div class="rsui-form-fieldset">
|
|
8
8
|
<fieldset v-bind="$attrs">
|
|
9
9
|
<legend>
|
|
10
10
|
<slot name="legend"></slot>
|
|
11
11
|
</legend>
|
|
12
|
-
<div class="rsui-fieldset__fields">
|
|
12
|
+
<div class="rsui-form-fieldset__fields">
|
|
13
13
|
<slot></slot>
|
|
14
14
|
</div>
|
|
15
15
|
</fieldset>
|
|
16
16
|
</div>
|
|
17
17
|
</template>
|
|
18
18
|
<style lang="scss" scoped>
|
|
19
|
-
.rsui-fieldset {
|
|
19
|
+
.rsui-form-fieldset {
|
|
20
20
|
fieldset {
|
|
21
21
|
}
|
|
22
22
|
legend {
|
|
@@ -25,6 +25,12 @@ defineOptions({
|
|
|
25
25
|
&__fields {
|
|
26
26
|
@apply mt-3 px-2;
|
|
27
27
|
@apply flex flex-col gap-3;
|
|
28
|
+
|
|
29
|
+
:deep(.rsui-form-field-slot) {
|
|
30
|
+
label {
|
|
31
|
+
@apply text-sm font-normal;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
28
34
|
}
|
|
29
35
|
}
|
|
30
36
|
</style>
|