@avakhula/ui 0.0.280 → 0.0.282
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.js +2 -2
- package/dist/index.umd.cjs +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Form/Checkbox/Checkbox.scss +2 -0
- package/src/components/IconButton/IconButton.scss +6 -0
- package/src/components/Tooltip/Tooltip.vue +1 -1
- package/src/components/TreeSelect/Select.vue +0 -2
package/package.json
CHANGED
|
@@ -16,16 +16,22 @@
|
|
|
16
16
|
&-btn-m {
|
|
17
17
|
width: 36px;
|
|
18
18
|
height: 36px;
|
|
19
|
+
min-width: 36px;
|
|
20
|
+
min-height: 36px;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
&-btn-s {
|
|
22
24
|
width: 24px;
|
|
23
25
|
height: 24px;
|
|
26
|
+
min-width: 24px;
|
|
27
|
+
min-height: 24px;
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
&-btn-xs {
|
|
27
31
|
width: 16px;
|
|
28
32
|
height: 16px;
|
|
33
|
+
min-width: 16px;
|
|
34
|
+
min-height: 16px;
|
|
29
35
|
|
|
30
36
|
.ib-icon {
|
|
31
37
|
position: absolute;
|
|
@@ -659,8 +659,6 @@ export default {
|
|
|
659
659
|
},
|
|
660
660
|
setPreparedValues(opt) {
|
|
661
661
|
let options = opt || this.options;
|
|
662
|
-
console.log(options, "setPreparedValues")
|
|
663
|
-
|
|
664
662
|
if (this.alphabetSort) {
|
|
665
663
|
options = options.sort((a, b) =>
|
|
666
664
|
a.title.toLowerCase().localeCompare(b.title.toLowerCase())
|