@ulu/frontend 0.1.0-beta.108 → 0.1.0-beta.109

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,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.0-beta.109
4
+
5
+ - **scss/components/accordion** - Adjusted selectors from & + & to print out selectors incase this mixin is called when scoped .accordion + .accordion vs .scope .accordion + .scope .accordion which is incorrect
6
+
3
7
  ## 0.1.0-beta.108
4
8
 
5
9
  - **scss/components/progress-bar** - Remove max-width option from new component
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.1.0-beta.108",
3
+ "version": "0.1.0-beta.109",
4
4
  "description": "A versatile SCSS and JavaScript component library offering configurable, accessible components and flexible integration into any project, with SCSS modules suitable for modern JS frameworks.",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -122,7 +122,7 @@ $config: (
122
122
  border-bottom-left-radius: get("border-radius");
123
123
  border-bottom-right-radius: get("border-radius");
124
124
  }
125
- & + & {
125
+ & + #{ $prefix } {
126
126
  $gap: -(get("margin") - get("margin-between"));
127
127
  margin-top: $gap;
128
128
  margin-top: calc($gap - get("border-width"));
@@ -216,7 +216,7 @@ $config: (
216
216
  }
217
217
  #{ $prefix }--borderless {
218
218
  border: none;
219
- & + & {
219
+ & + #{ $prefix }--borderless {
220
220
  $gap: -(get("margin") - get("borderless-margin-between"));
221
221
  margin-top: $gap;
222
222
  margin-top: calc($gap - get("border-width"));