@k-int/stripes-kint-components 4.7.0 → 4.7.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.7.2 2023-06-09
2
+ * Fixed rogue CSS from ComboButton
3
+
1
4
  ## 4.7.0 2023-06-06
2
5
  * Added success callout to SettingsFormContainer
3
6
  * Bumped @rehooks/local-storage dep to ^2.4.4
package/README.md CHANGED
@@ -43,4 +43,4 @@ Release major | Latest release | Flower releases present in (ERM) | Flower compa
43
43
  v1 | 1.7.0 | Lotus | Kiwi - Morning Glory |
44
44
  v2 | 2.8.6 | Morning Glory | Kiwi - Morning Glory |
45
45
  v3 | 3.2.3 | Nolana | Morning Glory - Nolana |
46
- v4 | 4.5.1 | Orchid | Morning Glory - Orchid+ |
46
+ v4 | 4.7.2 | Orchid | Morning Glory - Orchid+ |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-int/stripes-kint-components",
3
- "version": "4.7.0",
3
+ "version": "4.7.2",
4
4
  "description": "Stripes Component library for K-Int specific applications",
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -40,12 +40,15 @@
40
40
  margin-left: -1px;
41
41
  }
42
42
 
43
- & > :not(button:last-of-type) {
44
43
  & > :not(:first-child):not(:last-child),
45
44
  & > :not(:first-child):not(:last-child)::before {
46
45
  border-radius: 0;
47
46
  }
48
- }
47
+ }
48
+
49
+ .dropdownButtonClass, .dropdownButtonClass::before {
50
+ border-top-left-radius: 0;
51
+ border-bottom-left-radius: 0;
49
52
  }
50
53
 
51
54
  [dir="rtl"] {
@@ -71,17 +74,19 @@
71
74
  margin-right: -1px;
72
75
  }
73
76
  }
77
+
78
+ .dropdownButtonClass, .dropdownButtonClass::before {
79
+ border-top-right-radius: 0;
80
+ border-bottom-right-radius: 0;
81
+ border-top-left-radius: var(--radius);
82
+ border-bottom-left-radius: var(--radius);
83
+ }
74
84
  }
75
85
 
76
86
  .dropdownClass {
77
87
  padding: 0 !important; /* As always, this sucks but is forced on us by stripes bad css ordering */
78
88
  }
79
89
 
80
- .dropdownButtonClass, .dropdownButtonClass::before {
81
- border-top-left-radius: 0;
82
- border-bottom-left-radius: 0;
83
- }
84
-
85
90
  .hidden {
86
91
  visibility: hidden;
87
92
  }