@designcrowd/fe-shared-lib 1.5.6-add-shield-tick-v3 → 1.5.6-ast-masonry

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.
@@ -262,7 +262,6 @@ import IconSend from './icons/send.vue';
262
262
  import IconServices from './icons/services.vue';
263
263
  import IconSettings from './icons/settings.vue';
264
264
  import IconShare from './icons/share.vue';
265
- import IconShieldTick from './icons/shield-tick.vue';
266
265
  import IconShop from './icons/shop.vue';
267
266
  import IconStop from './icons/stop.vue';
268
267
  import IconSms from './icons/sms.vue';
@@ -627,7 +626,6 @@ export default {
627
626
  IconServices,
628
627
  IconSettings,
629
628
  IconShare,
630
- IconShieldTick,
631
629
  IconSms,
632
630
  IconSocialFacebook,
633
631
  IconSocialFacebookColor,
@@ -1,5 +1,11 @@
1
1
  <template>
2
- <vue-masonry-wall :items="items" :options="options">
2
+ <vue-masonry-wall
3
+ :items="items"
4
+ :options="options"
5
+ :ssr-columns="ssrColumns"
6
+ :min-columns="minColumns"
7
+ :max-columns="maxColumns"
8
+ >
3
9
  <template #default="{ item }">
4
10
  <slot name="item" :item="item" />
5
11
  </template>
@@ -28,6 +34,21 @@ export default {
28
34
  required: false,
29
35
  default: undefined,
30
36
  },
37
+ ssrColumns: {
38
+ type: Number,
39
+ required: false,
40
+ default: undefined,
41
+ },
42
+ minColumns: {
43
+ type: Number,
44
+ required: false,
45
+ default: undefined,
46
+ },
47
+ maxColumns: {
48
+ type: Number,
49
+ required: false,
50
+ default: undefined,
51
+ },
31
52
  },
32
53
  computed: {
33
54
  options() {
@@ -1,6 +0,0 @@
1
- <template>
2
- <path
3
- d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1.41 13.59L6 10l1.41-1.41L10 11.17l6.59-6.59L18 6l-7.41 7.41z"
4
- fill-rule="evenodd"
5
- ></path>
6
- </template>