@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.280",
3
+ "version": "0.0.282",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -69,6 +69,8 @@ $checkbox-bg-indeterminate: $blue-800;
69
69
  border-radius: 2px;
70
70
  height: 16px;
71
71
  width: 16px;
72
+ min-height: 16px;
73
+ min-width: 16px;
72
74
  border: 1.25px solid;
73
75
  border-color: $checkbox-border;
74
76
  background-color: $checkbox-bg;
@@ -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;
@@ -53,7 +53,7 @@ export default {
53
53
  padding: 10px;
54
54
  max-width: 240px;
55
55
  box-shadow: $ib-shadow-1;
56
- z-index: 9999;
56
+ z-index: 10002;
57
57
 
58
58
  &.ib-tooltip-large {
59
59
  box-shadow: $ib-shadow-2;
@@ -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())