@funcho/ui 1.1.24 → 1.1.25
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.
|
@@ -217,7 +217,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
217
217
|
ref: formRef,
|
|
218
218
|
inline: "",
|
|
219
219
|
fields: searchFormFields.value,
|
|
220
|
-
class: vue.normalizeClass(vue.unref(ns).e("query-form")),
|
|
220
|
+
class: vue.normalizeClass({ [vue.unref(ns).e("query-form")]: true, [vue.unref(ns).is("query")]: true }),
|
|
221
221
|
"label-position": "right",
|
|
222
222
|
"label-width": hasMoreContent.value && isExpanded.value ? "auto" : "fit-content"
|
|
223
223
|
}, null, 8, ["fields", "class", "label-width"]),
|
|
@@ -213,7 +213,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
213
213
|
ref: formRef,
|
|
214
214
|
inline: "",
|
|
215
215
|
fields: searchFormFields.value,
|
|
216
|
-
class: normalizeClass(unref(ns).e("query-form")),
|
|
216
|
+
class: normalizeClass({ [unref(ns).e("query-form")]: true, [unref(ns).is("query")]: true }),
|
|
217
217
|
"label-position": "right",
|
|
218
218
|
"label-width": hasMoreContent.value && isExpanded.value ? "auto" : "fit-content"
|
|
219
219
|
}, null, 8, ["fields", "class", "label-width"]),
|
package/dist/style.css
CHANGED
|
@@ -17106,14 +17106,14 @@ to {
|
|
|
17106
17106
|
.fc-mkui-query-form__query-box.is-expanded {
|
|
17107
17107
|
max-height: var(--query-box-max-height);
|
|
17108
17108
|
}
|
|
17109
|
-
.fc-mkui-query-form__query-form {
|
|
17109
|
+
.fc-mkui-query-form__query-form.is-query {
|
|
17110
17110
|
flex: 1;
|
|
17111
17111
|
display: grid;
|
|
17112
17112
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
17113
17113
|
gap: 8px 24px;
|
|
17114
17114
|
align-items: start;
|
|
17115
17115
|
}
|
|
17116
|
-
.fc-mkui-query-form__query-form .fc-ui-form-item {
|
|
17116
|
+
.fc-mkui-query-form__query-form.is-query .fc-ui-form-item {
|
|
17117
17117
|
margin: 0;
|
|
17118
17118
|
}
|
|
17119
17119
|
.fc-mkui-query-form__tools {
|