quasar-ui-sellmate-ui-kit 3.2.20 → 3.2.21
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 +3 -3
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STable.vue +7 -1
package/package.json
CHANGED
|
@@ -267,15 +267,21 @@
|
|
|
267
267
|
white-space: nowrap;
|
|
268
268
|
|
|
269
269
|
.sort-icon {
|
|
270
|
+
color: $Grey_Lighten-1;
|
|
271
|
+
font-size: 16px;
|
|
272
|
+
opacity: 1;
|
|
270
273
|
&.desc-sort {
|
|
271
274
|
transform: rotate(180deg);
|
|
272
275
|
}
|
|
273
276
|
transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
274
277
|
}
|
|
275
278
|
|
|
279
|
+
// NOTE: 해당 sortable은 퀘이사에서 기본적으로 사용하는 기능
|
|
280
|
+
// 차후 slot 방식으로 사용할경우 해당 방식으로 사용 X
|
|
281
|
+
// slot 방식으로 사용할 경우 .sort-icon으로만 사용 예정
|
|
276
282
|
&.sortable {
|
|
277
|
-
display: none;
|
|
278
283
|
> .q-table__sort-icon {
|
|
284
|
+
//display: none;
|
|
279
285
|
color: $Grey_Lighten-1;
|
|
280
286
|
font-size: 16px;
|
|
281
287
|
opacity: 1;
|