@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"]),
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const version = "1.1.24";
5
+ const version = "1.1.25";
6
6
 
7
7
  exports.version = version;
@@ -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"]),
@@ -1,3 +1,3 @@
1
- const version = "1.1.24";
1
+ const version = "1.1.25";
2
2
 
3
3
  export { version };
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 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@funcho/ui",
3
3
  "description": "@funcho ui library",
4
- "version": "1.1.24",
4
+ "version": "1.1.25",
5
5
  "type": "module",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.mjs",