shared-ritm 1.0.40 → 1.0.41

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": "shared-ritm",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -34,6 +34,7 @@ import { defineProps, defineEmits, computed, withDefaults } from 'vue'
34
34
  import { ValidationRule, VueClassProp, VueStyleProp } from 'quasar/dist/types/api'
35
35
 
36
36
  interface AppQInputProps {
37
+ height?: string
37
38
  name?: string | undefined
38
39
  mask?: string | undefined
39
40
  fillMask?: boolean | string | undefined
@@ -120,6 +121,7 @@ interface AppInputProps extends AppQInputProps {
120
121
 
121
122
  const props = withDefaults(defineProps<AppInputProps>(), {
122
123
  dense: true,
124
+ height: '48px',
123
125
  outlined: true,
124
126
  error: undefined,
125
127
  modelValue: '',
@@ -145,7 +147,7 @@ const itemClasses = computed(() => ({
145
147
  .app-input {
146
148
  &:global(.q-field--outlined .q-field__control) {
147
149
  border-radius: 14px;
148
- height: 48px;
150
+ height: v-bind(height);
149
151
  align-items: center;
150
152
  padding: 0 16px;
151
153
  color: #87caff;