shared-ritm 1.0.39 → 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
|
@@ -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:
|
|
150
|
+
height: v-bind(height);
|
|
149
151
|
align-items: center;
|
|
150
152
|
padding: 0 16px;
|
|
151
153
|
color: #87caff;
|
|
@@ -44,7 +44,10 @@ const props = defineProps<Props>()
|
|
|
44
44
|
|
|
45
45
|
// const counter = ref(1)
|
|
46
46
|
const shortName = computed(
|
|
47
|
-
() =>
|
|
47
|
+
() =>
|
|
48
|
+
`${props.userData?.last_name} ${props.userData?.first_name?.[0]}. ${props.userData?.patronymic?.[0] || ''} ${
|
|
49
|
+
props.userData?.patronymic?.[0] ? '.' : ''
|
|
50
|
+
}`,
|
|
48
51
|
)
|
|
49
52
|
</script>
|
|
50
53
|
|