mediacube-ui 0.1.282 → 0.1.284

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.284](https://github.com/MediaCubeCo/mcui/compare/v0.1.283...v0.1.284) (2024-06-13)
6
+
7
+ ### [0.1.283](https://github.com/MediaCubeCo/mcui/compare/v0.1.282...v0.1.283) (2024-06-10)
8
+
5
9
  ### [0.1.282](https://github.com/MediaCubeCo/mcui/compare/v0.1.281...v0.1.282) (2024-06-05)
6
10
 
7
11
  ### [0.1.281](https://github.com/MediaCubeCo/mcui/compare/v0.1.280...v0.1.281) (2024-05-31)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.282",
3
+ "version": "0.1.284",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -13,7 +13,7 @@
13
13
  <a
14
14
  :aria-controls="tab.hash"
15
15
  :aria-selected="tab.isActive"
16
- :href="getHref(tab)"
16
+ :href="tab.to || tab.href || tab.hash"
17
17
  class="tabs-component-tab-a"
18
18
  role="tab"
19
19
  @click="selectTab(tab.hash, $event)"
@@ -356,10 +356,6 @@ export default {
356
356
  getActiveTabIndex() {
357
357
  return this.getTabIndex(this.activeTabHash)
358
358
  },
359
-
360
- getHref(tab) {
361
- return tab.$listeners.click ? null : tab.to || tab.href || tab.hash
362
- },
363
359
  },
364
360
  }
365
361
  </script>
@@ -166,41 +166,17 @@ pre {
166
166
  // Spaces
167
167
  @each $space, $value in $token-spaces {
168
168
  .pb-#{$space} {
169
- padding-bottom: $value;
170
- @media #{$media-query-m} {
171
- padding-bottom: $value;
172
- }
173
- @media #{$media-query-l} {
174
- padding-bottom: $value;
175
- }
169
+ padding-bottom: $value !important;
176
170
  }
177
171
  .pt-#{$space} {
178
- padding-top: $value;
179
- @media #{$media-query-m} {
180
- padding-top: $value;
181
- }
182
- @media #{$media-query-l} {
183
- padding-top: $value;
184
- }
172
+ padding-top: $value !important;
185
173
  }
186
174
 
187
175
  .mb-#{$space} {
188
- margin-bottom: $value;
189
- @media #{$media-query-m} {
190
- margin-bottom: $value;
191
- }
192
- @media #{$media-query-l} {
193
- margin-bottom: $value;
194
- }
176
+ margin-bottom: $value !important;
195
177
  }
196
178
  .mt-#{$space} {
197
- margin-top: $value;
198
- @media #{$media-query-m} {
199
- margin-top: $value;
200
- }
201
- @media #{$media-query-l} {
202
- margin-top: $value;
203
- }
179
+ margin-top: $value !important;
204
180
  }
205
181
  }
206
182