@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.
- package/dist/css/tailwind-brandCrowd.css +6 -67
- package/dist/css/tailwind-brandPage.css +6 -67
- package/dist/css/tailwind-crazyDomains.css +6 -67
- package/dist/css/tailwind-designCom.css +6 -67
- package/dist/css/tailwind-designCrowd.css +6 -67
- package/package.json +1 -1
- package/public/css/tailwind-brandCrowd.css +2417 -0
- package/public/css/tailwind-brandPage.css +2101 -0
- package/public/css/tailwind-crazyDomains.css +2417 -0
- package/public/css/tailwind-designCom.css +2417 -0
- package/public/css/tailwind-designCrowd.css +2417 -0
- package/src/atoms/components/Icon/Icon.vue +0 -2
- package/src/atoms/components/Masonry/Masonry.vue +22 -1
- package/src/atoms/components/Icon/icons/shield-tick.vue +0 -6
|
@@ -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
|
|
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() {
|