quasar-ui-sellmate-ui-kit 3.10.21 → 3.10.23
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/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +9 -9
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STag.vue +1 -7
- package/src/css/extends.scss +9 -7
package/package.json
CHANGED
package/src/components/STag.vue
CHANGED
|
@@ -11,12 +11,7 @@
|
|
|
11
11
|
:text-color="computedTextColor"
|
|
12
12
|
>
|
|
13
13
|
<slot>
|
|
14
|
-
<q-icon
|
|
15
|
-
v-if="$attrs.icon && size === 'lg'"
|
|
16
|
-
:name="$attrs.icon"
|
|
17
|
-
size="32px"
|
|
18
|
-
class="q-mr-sm"
|
|
19
|
-
/>
|
|
14
|
+
<q-icon v-if="$attrs.icon && size === 'lg'" :name="$attrs.icon" size="32px" class="q-mr-sm" />
|
|
20
15
|
<span v-html="label" :class="textClass"></span>
|
|
21
16
|
</slot>
|
|
22
17
|
</q-badge>
|
|
@@ -125,7 +120,6 @@
|
|
|
125
120
|
line-height: 18px;
|
|
126
121
|
font: {
|
|
127
122
|
size: 11px;
|
|
128
|
-
weight: 400;
|
|
129
123
|
}
|
|
130
124
|
}
|
|
131
125
|
}
|
package/src/css/extends.scss
CHANGED
|
@@ -58,11 +58,14 @@
|
|
|
58
58
|
padding: $select-padding !important;
|
|
59
59
|
color: $Grey_Darken-4;
|
|
60
60
|
|
|
61
|
-
>span {
|
|
61
|
+
> span {
|
|
62
|
+
display: block;
|
|
63
|
+
overflow: hidden;
|
|
64
|
+
text-overflow: ellipsis;
|
|
62
65
|
max-height: $default-height;
|
|
63
66
|
}
|
|
64
67
|
|
|
65
|
-
|
|
68
|
+
> .q-placeholder {
|
|
66
69
|
min-height: 100%;
|
|
67
70
|
}
|
|
68
71
|
}
|
|
@@ -88,7 +91,7 @@
|
|
|
88
91
|
color: $Grey_Darken-1;
|
|
89
92
|
|
|
90
93
|
.q-field__messages {
|
|
91
|
-
div[role=
|
|
94
|
+
div[role='alert'] {
|
|
92
95
|
color: $Red_Default;
|
|
93
96
|
}
|
|
94
97
|
}
|
|
@@ -107,7 +110,7 @@
|
|
|
107
110
|
|
|
108
111
|
&-container {
|
|
109
112
|
.q-field__native {
|
|
110
|
-
>span {
|
|
113
|
+
> span {
|
|
111
114
|
color: $Grey_Default;
|
|
112
115
|
}
|
|
113
116
|
}
|
|
@@ -130,7 +133,7 @@
|
|
|
130
133
|
|
|
131
134
|
&__section {
|
|
132
135
|
.q-item__label {
|
|
133
|
-
>span {
|
|
136
|
+
> span {
|
|
134
137
|
font-size: $default-font;
|
|
135
138
|
font-weight: $default-font-weight;
|
|
136
139
|
color: $Grey_Darken-4;
|
|
@@ -153,14 +156,13 @@
|
|
|
153
156
|
|
|
154
157
|
.q-item__section {
|
|
155
158
|
.q-item__label {
|
|
156
|
-
>span {
|
|
159
|
+
> span {
|
|
157
160
|
color: white !important;
|
|
158
161
|
}
|
|
159
162
|
}
|
|
160
163
|
|
|
161
164
|
.q-checkbox {
|
|
162
165
|
.q-checkbox__inner {
|
|
163
|
-
|
|
164
166
|
&--indet,
|
|
165
167
|
&--truthy {
|
|
166
168
|
.q-checkbox__bg {
|