@mirweb/mir-web-components 2.5.0 → 2.6.0

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.
@@ -1,12 +1,13 @@
1
1
  <template>
2
2
  <div class="bullet-list__wrapper">
3
3
  <div :class="['bullet-list', variant]">
4
- <ul>
4
+ <ul v-if="list && list.length">
5
5
  <li v-for="item in list" :key="item">
6
6
  <i class="checkmark"></i>
7
7
  {{ item }}
8
8
  </li>
9
9
  </ul>
10
+ <div class="bullet-list--custom" v-else><slot></slot></div>
10
11
  </div>
11
12
  </div>
12
13
  </template>
@@ -95,5 +96,10 @@ defineProps({
95
96
  }
96
97
  }
97
98
  }
99
+
100
+ &--custom {
101
+ padding: 30px 30px 50px 30px;
102
+ font-family: $font-opensans;
103
+ }
98
104
  }
99
105
  </style>
@@ -156,11 +156,6 @@ defineProps({
156
156
  margin-right: 4px;
157
157
  }
158
158
 
159
- &__date-location,
160
- &__exhibitor {
161
- text-transform: capitalize;
162
- }
163
-
164
159
  &__info {
165
160
  text-transform: none;
166
161
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mirweb/mir-web-components",
3
3
  "private": false,
4
- "version": "2.5.0",
4
+ "version": "2.6.0",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"