@mythpe/quasar-ui-qui 0.3.35 → 0.3.37

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": "@mythpe/quasar-ui-qui",
3
- "version": "0.3.35",
3
+ "version": "0.3.37",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -793,6 +793,7 @@ defineExpose({
793
793
  v-if="!hideSearch"
794
794
  :debounce="searchDebounce"
795
795
  :dense="dense === undefined ? (pluginOptions.datatable?.dense !== undefined ? pluginOptions.datatable?.dense : !0) : dense"
796
+ :field-options="{ controlled: !1 }"
796
797
  :model-value="search"
797
798
  :placeholder="searchPlaceholder"
798
799
  autocomplete="none"
@@ -800,7 +801,7 @@ defineExpose({
800
801
  label="labels.search"
801
802
  name="search"
802
803
  outlined
803
- v-bind="pluginOptions.dt?.searchInput?.props as any"
804
+ v-bind="{...theme.inputs as any, ...pluginOptions.dt?.searchInput?.props as any}"
804
805
  @update:model-value="onSearchInput($event)"
805
806
  @keyup.enter="onSearchEnter()"
806
807
  >
@@ -173,6 +173,7 @@ defineOptions({
173
173
  <MHelpRow
174
174
  v-if="!!help"
175
175
  :text="help"
176
+ class="q-ml-md"
176
177
  tooltip
177
178
  />
178
179
  </MInputLabel>
@@ -1,6 +1,7 @@
1
1
  @use 'sass:map'
2
2
 
3
3
  $m-row-margin-top: 1rem !default
4
+ $m-input-top-label-font-size: 17px !default
4
5
 
5
6
  // Flex.
6
7
  .flex-break
@@ -103,3 +104,6 @@ pre
103
104
  .m-confirm.actions-between
104
105
  .q-card__actions
105
106
  justify-content: space-between !important
107
+
108
+ .m-input__top-label__content
109
+ font-size: $m-input-top-label-font-size