@abi-software/gallery 0.3.4-beta.0 → 0.4.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.
- package/CHANGELOG.md +8 -1
- package/dist/gallery.common.js +106 -226
- package/dist/gallery.common.js.map +1 -1
- package/dist/gallery.css +1 -1
- package/dist/gallery.umd.js +106 -226
- package/dist/gallery.umd.js.map +1 -1
- package/dist/gallery.umd.min.js +1 -1
- package/dist/gallery.umd.min.js.map +1 -1
- package/package-lock.json +10 -60
- package/package.json +3 -3
package/dist/gallery.umd.js
CHANGED
|
@@ -9271,124 +9271,36 @@ if (typeof window !== 'undefined') {
|
|
|
9271
9271
|
// Indicate to webpack that this file can be concatenated
|
|
9272
9272
|
/* harmony default export */ var setPublicPath = (null);
|
|
9273
9273
|
|
|
9274
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9275
|
-
var render = function
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
return _c('div', {
|
|
9279
|
-
ref: "myButton",
|
|
9280
|
-
staticClass: "gallery"
|
|
9281
|
-
}, [_c('div', {
|
|
9282
|
-
staticClass: "gallery-strip"
|
|
9283
|
-
}, [_vm.items.length > 1 ? _c('a', {
|
|
9284
|
-
class: ['oval', 'prev', {
|
|
9285
|
-
disabled: !_vm.isPrevPossible
|
|
9286
|
-
}],
|
|
9287
|
-
attrs: {
|
|
9288
|
-
"href": "#"
|
|
9289
|
-
},
|
|
9290
|
-
on: {
|
|
9291
|
-
"click": function ($event) {
|
|
9292
|
-
$event.preventDefault();
|
|
9293
|
-
return _vm.goPrev.apply(null, arguments);
|
|
9294
|
-
}
|
|
9295
|
-
}
|
|
9296
|
-
}, [_c('span', {
|
|
9297
|
-
staticClass: "progress-button"
|
|
9298
|
-
}, [_vm._v("‹")])]) : _c('div', {
|
|
9299
|
-
staticStyle: {
|
|
9300
|
-
"width": "2rem"
|
|
9301
|
-
}
|
|
9302
|
-
}), _c('div', {
|
|
9303
|
-
staticClass: "filler"
|
|
9304
|
-
}), _c('div', {
|
|
9305
|
-
staticClass: "card-line"
|
|
9306
|
-
}, _vm._l(_vm.windowedItems, function (item, index) {
|
|
9307
|
-
return _c('span', {
|
|
9308
|
-
key: 'card_' + index,
|
|
9309
|
-
class: ['key-image-span', {
|
|
9310
|
-
active: _vm.isActive(index)
|
|
9311
|
-
}]
|
|
9312
|
-
}, [item ? _c('card', {
|
|
9313
|
-
attrs: {
|
|
9314
|
-
"data": item,
|
|
9315
|
-
"body-style": _vm.bodyStyle,
|
|
9316
|
-
"image-container-style": _vm.imageContainerStyle,
|
|
9317
|
-
"image-style": _vm.imageStyle,
|
|
9318
|
-
"width": _vm.cardWidth,
|
|
9319
|
-
"height": _vm.cardHeight,
|
|
9320
|
-
"shadow": _vm.shadow,
|
|
9321
|
-
"show-card-details": _vm.showCardDetails
|
|
9322
|
-
},
|
|
9323
|
-
on: {
|
|
9324
|
-
"card-clicked": _vm.cardClicked
|
|
9325
|
-
}
|
|
9326
|
-
}) : _vm._e()], 1);
|
|
9327
|
-
}), 0), _c('div', {
|
|
9328
|
-
staticClass: "filler"
|
|
9329
|
-
}), _vm.items.length > 1 ? _c('a', {
|
|
9330
|
-
class: ['oval', 'next', {
|
|
9331
|
-
disabled: !_vm.isNextPossible
|
|
9332
|
-
}],
|
|
9333
|
-
attrs: {
|
|
9334
|
-
"href": "#"
|
|
9335
|
-
},
|
|
9336
|
-
on: {
|
|
9337
|
-
"click": function ($event) {
|
|
9338
|
-
$event.preventDefault();
|
|
9339
|
-
return _vm.goNext.apply(null, arguments);
|
|
9340
|
-
}
|
|
9341
|
-
}
|
|
9342
|
-
}, [_c('span', {
|
|
9343
|
-
staticClass: "progress-button"
|
|
9344
|
-
}, [_vm._v("›")])]) : _c('div', {
|
|
9345
|
-
staticStyle: {
|
|
9346
|
-
"width": "2rem"
|
|
9347
|
-
}
|
|
9348
|
-
})]), _c('div', {
|
|
9349
|
-
style: _vm.bottomSpacer
|
|
9350
|
-
}), _vm.canShowIndicatorBar ? _c('index-indicator', {
|
|
9351
|
-
attrs: {
|
|
9352
|
-
"count": _vm.itemCount,
|
|
9353
|
-
"current": _vm.currentIndex
|
|
9354
|
-
},
|
|
9355
|
-
on: {
|
|
9356
|
-
"clicked": _vm.indicatorClicked
|
|
9357
|
-
}
|
|
9358
|
-
}) : _vm._e()], 1);
|
|
9359
|
-
};
|
|
9360
|
-
var staticRenderFns = [];
|
|
9274
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4321afdc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./node_modules/vue-svg-inline-loader/src!./src/components/Gallery.vue?vue&type=template&id=7e932ce8&scoped=true&
|
|
9275
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"myButton",staticClass:"gallery"},[_c('div',{staticClass:"gallery-strip"},[(_vm.items.length > 1)?_c('a',{class:['oval', 'prev', { disabled: !_vm.isPrevPossible }],attrs:{"href":"#"},on:{"click":function($event){$event.preventDefault();return _vm.goPrev.apply(null, arguments)}}},[_c('span',{staticClass:"progress-button"},[_vm._v("‹")])]):_c('div',{staticStyle:{"width":"2rem"}}),_c('div',{staticClass:"filler"}),_c('div',{staticClass:"card-line"},_vm._l((_vm.windowedItems),function(item,index){return _c('span',{key:'card_' + index,class:['key-image-span', { active: _vm.isActive(index) }]},[(item)?_c('card',{attrs:{"data":item,"body-style":_vm.bodyStyle,"image-container-style":_vm.imageContainerStyle,"image-style":_vm.imageStyle,"width":_vm.cardWidth,"height":_vm.cardHeight,"shadow":_vm.shadow,"show-card-details":_vm.showCardDetails},on:{"card-clicked":_vm.cardClicked}}):_vm._e()],1)}),0),_c('div',{staticClass:"filler"}),(_vm.items.length > 1)?_c('a',{class:['oval', 'next', { disabled: !_vm.isNextPossible }],attrs:{"href":"#"},on:{"click":function($event){$event.preventDefault();return _vm.goNext.apply(null, arguments)}}},[_c('span',{staticClass:"progress-button"},[_vm._v("›")])]):_c('div',{staticStyle:{"width":"2rem"}})]),_c('div',{style:(_vm.bottomSpacer)}),(_vm.canShowIndicatorBar)?_c('index-indicator',{attrs:{"count":_vm.itemCount,"current":_vm.currentIndex},on:{"clicked":_vm.indicatorClicked}}):_vm._e()],1)}
|
|
9276
|
+
var staticRenderFns = []
|
|
9277
|
+
|
|
9361
9278
|
|
|
9362
9279
|
// CONCATENATED MODULE: ./src/components/Gallery.vue?vue&type=template&id=7e932ce8&scoped=true&
|
|
9363
9280
|
|
|
9364
9281
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
9365
9282
|
var es_array_push = __webpack_require__("14d9");
|
|
9366
9283
|
|
|
9367
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9368
|
-
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_render = function
|
|
9369
|
-
|
|
9370
|
-
|
|
9371
|
-
return _c('div', {
|
|
9372
|
-
staticClass: "indicator-container"
|
|
9373
|
-
}, _vm._l(_vm.count, function (number, index) {
|
|
9374
|
-
return _c('div', {
|
|
9375
|
-
key: 'indicator_' + number,
|
|
9376
|
-
class: ['indicator', {
|
|
9377
|
-
active: _vm.current === index
|
|
9378
|
-
}],
|
|
9379
|
-
on: {
|
|
9380
|
-
"click": function ($event) {
|
|
9381
|
-
return _vm.$emit('clicked', index);
|
|
9382
|
-
}
|
|
9383
|
-
}
|
|
9384
|
-
});
|
|
9385
|
-
}), 0);
|
|
9386
|
-
};
|
|
9387
|
-
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_staticRenderFns = [];
|
|
9284
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4321afdc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./node_modules/vue-svg-inline-loader/src!./src/components/IndexIndicator.vue?vue&type=template&id=11261dc8&scoped=true&
|
|
9285
|
+
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"indicator-container"},_vm._l((_vm.count),function(number,index){return _c('div',{key:'indicator_' + number,class:['indicator', { active: _vm.current === index }],on:{"click":function($event){return _vm.$emit('clicked', index)}}})}),0)}
|
|
9286
|
+
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_staticRenderFns = []
|
|
9287
|
+
|
|
9388
9288
|
|
|
9389
9289
|
// CONCATENATED MODULE: ./src/components/IndexIndicator.vue?vue&type=template&id=11261dc8&scoped=true&
|
|
9390
9290
|
|
|
9391
9291
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./node_modules/vue-svg-inline-loader/src!./src/components/IndexIndicator.vue?vue&type=script&lang=js&
|
|
9292
|
+
//
|
|
9293
|
+
//
|
|
9294
|
+
//
|
|
9295
|
+
//
|
|
9296
|
+
//
|
|
9297
|
+
//
|
|
9298
|
+
//
|
|
9299
|
+
//
|
|
9300
|
+
//
|
|
9301
|
+
//
|
|
9302
|
+
//
|
|
9303
|
+
|
|
9392
9304
|
/* harmony default export */ var IndexIndicatorvue_type_script_lang_js_ = ({
|
|
9393
9305
|
name: 'IndexIndicator',
|
|
9394
9306
|
props: {
|
|
@@ -9526,124 +9438,10 @@ var component = normalizeComponent(
|
|
|
9526
9438
|
)
|
|
9527
9439
|
|
|
9528
9440
|
/* harmony default export */ var IndexIndicator = (component.exports);
|
|
9529
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9530
|
-
var Cardvue_type_template_id_2b3cc626_scoped_true_render = function
|
|
9531
|
-
|
|
9532
|
-
|
|
9533
|
-
return _c('el-card', {
|
|
9534
|
-
staticClass: "card",
|
|
9535
|
-
style: {
|
|
9536
|
-
padding: '0px',
|
|
9537
|
-
maxWidth: _vm.width + 'rem'
|
|
9538
|
-
},
|
|
9539
|
-
attrs: {
|
|
9540
|
-
"shadow": _vm.shadow,
|
|
9541
|
-
"body-style": _vm.bodyStyle
|
|
9542
|
-
}
|
|
9543
|
-
}, [_c('div', {
|
|
9544
|
-
directives: [{
|
|
9545
|
-
name: "loading",
|
|
9546
|
-
rawName: "v-loading",
|
|
9547
|
-
value: !_vm.isReady,
|
|
9548
|
-
expression: "!isReady"
|
|
9549
|
-
}]
|
|
9550
|
-
}, [_c('div', {
|
|
9551
|
-
staticClass: "cursor-pointer",
|
|
9552
|
-
style: _vm.imageContainerStyle,
|
|
9553
|
-
on: {
|
|
9554
|
-
"click": function ($event) {
|
|
9555
|
-
$event.preventDefault();
|
|
9556
|
-
return _vm.cardClicked.apply(null, arguments);
|
|
9557
|
-
}
|
|
9558
|
-
}
|
|
9559
|
-
}, [_vm.useDefaultImg ? _c('svg', {
|
|
9560
|
-
style: _vm.imageStyle,
|
|
9561
|
-
attrs: {
|
|
9562
|
-
"data-name": "logo-sparc-wave-primary",
|
|
9563
|
-
"xmlns": "http://www.w3.org/2000/svg",
|
|
9564
|
-
"viewBox": "0 0 400 190.585",
|
|
9565
|
-
"svg-inline": '',
|
|
9566
|
-
"role": 'presentation',
|
|
9567
|
-
"focusable": 'false',
|
|
9568
|
-
"tabindex": '-1'
|
|
9569
|
-
}
|
|
9570
|
-
}, [_c('defs', [_c('linearGradient', {
|
|
9571
|
-
attrs: {
|
|
9572
|
-
"id": "a",
|
|
9573
|
-
"y1": "96.35",
|
|
9574
|
-
"x2": "400",
|
|
9575
|
-
"y2": "96.35",
|
|
9576
|
-
"gradientUnits": "userSpaceOnUse"
|
|
9577
|
-
}
|
|
9578
|
-
}, [_c('stop', {
|
|
9579
|
-
attrs: {
|
|
9580
|
-
"offset": "0",
|
|
9581
|
-
"stop-color": "#0b00bf"
|
|
9582
|
-
}
|
|
9583
|
-
}), _c('stop', {
|
|
9584
|
-
attrs: {
|
|
9585
|
-
"offset": "1",
|
|
9586
|
-
"stop-color": "#bc00fc"
|
|
9587
|
-
}
|
|
9588
|
-
})], 1)], 1), _c('path', {
|
|
9589
|
-
attrs: {
|
|
9590
|
-
"d": "M396.698 128.625l-146.274-3.38a6.536 6.536 0 00-6.138 3.923l-.06.141-13.674 31.448-27.61-151.224-.01-.068a8.982 8.982 0 00-17.663-.012l-21.596 115.929-160.375 3.907a3.38 3.38 0 00.027 6.759l166.015 2.715a6.594 6.594 0 006.537-5.145l.057-.255 17.854-79.565 27.472 131.326.026.124a6.76 6.76 0 0012.806 1.272l20.808-47.86 141.798-3.276a3.38 3.38 0 000-6.76z",
|
|
9591
|
-
"fill": "url(#a)"
|
|
9592
|
-
}
|
|
9593
|
-
}), _c('path', {
|
|
9594
|
-
attrs: {
|
|
9595
|
-
"d": "M25.68 0c15.716 0 25.377 10.093 25.377 26.097v9.516H36.205v-9.516c0-7.353-3.894-11.822-10.526-11.822-6.776 0-10.669 4.469-10.669 11.822 0 3.895 1.298 7.353 5.479 11.391l19.754 18.601C46.586 62.144 52.21 68.778 52.21 79.88c0 16.005-9.95 26.097-25.954 26.097C10.108 105.977.158 95.885.158 79.88v-9.518H15.01v9.518c0 7.353 4.037 11.822 11.245 11.822 7.065 0 11.103-4.469 11.103-11.822 0-4.47-2.163-8.651-6.055-12.258L11.116 48.736C3.043 41.237.159 34.894.159 25.666.159 10.093 9.82 0 25.678 0zM99.797 69.786v35.182H84.945V1.01h25.376c16.005 0 26.097 10.093 26.097 26.097v16.581c0 16.15-10.092 26.098-26.097 26.098zm10.38-13.985c7.209 0 11.392-4.326 11.392-11.68V26.677c0-7.21-4.183-11.681-11.391-11.681h-10.38V55.8zM278.581 108.147H263.73V4.189h26.097c16.005 0 26.098 10.093 26.098 26.098v14.13c0 9.95-4.326 17.736-11.391 22.205 4.182 12.688 10.092 29.991 13.842 41.525h-15.14L290.69 70.37h-12.11zm11.1-51.763c7.21 0 11.39-4.326 11.39-11.534V29.855c0-7.21-4.18-11.68-11.39-11.68h-11.1v38.21zM399.844 73.541v9.519c0 16.005-9.947 26.097-25.952 26.097-16.15 0-26.097-10.092-26.097-26.097V29.277c0-16.005 9.947-26.098 26.097-26.098 16.005 0 25.952 10.093 25.952 26.098v9.516h-14.85v-9.516c0-7.354-4.037-11.822-11.103-11.822-7.21 0-11.247 4.468-11.247 11.822V83.06c0 7.353 4.037 11.822 11.247 11.822 7.066 0 11.103-4.469 11.103-11.822v-9.519z",
|
|
9596
|
-
"fill": "#0e0e19"
|
|
9597
|
-
}
|
|
9598
|
-
})]) : _c('img', {
|
|
9599
|
-
style: _vm.imageStyle,
|
|
9600
|
-
attrs: {
|
|
9601
|
-
"src": _vm.thumbnail,
|
|
9602
|
-
"alt": "thumbnail loading ..."
|
|
9603
|
-
}
|
|
9604
|
-
})]), false ? undefined : _vm._e(), _vm.showCardDetails ? _c('div', {
|
|
9605
|
-
staticClass: "details"
|
|
9606
|
-
}, [!_vm.data.hideType ? _c('p', [_c('b', [_vm._v(_vm._s(_vm.data.type))])]) : _vm._e(), _c('el-popover', {
|
|
9607
|
-
ref: "galleryPopover",
|
|
9608
|
-
attrs: {
|
|
9609
|
-
"disabled": _vm.disableTooltip,
|
|
9610
|
-
"content": _vm.data.title,
|
|
9611
|
-
"placement": "top",
|
|
9612
|
-
"trigger": "hover",
|
|
9613
|
-
"popper-class": "gallery-popper"
|
|
9614
|
-
}
|
|
9615
|
-
}), _c('p', {
|
|
9616
|
-
directives: [{
|
|
9617
|
-
name: "show",
|
|
9618
|
-
rawName: "v-show",
|
|
9619
|
-
value: !_vm.data.hideTitle,
|
|
9620
|
-
expression: "!data.hideTitle"
|
|
9621
|
-
}, {
|
|
9622
|
-
name: "popover",
|
|
9623
|
-
rawName: "v-popover:galleryPopover",
|
|
9624
|
-
arg: "galleryPopover"
|
|
9625
|
-
}],
|
|
9626
|
-
ref: "titleText",
|
|
9627
|
-
staticClass: "title"
|
|
9628
|
-
}, [_vm._v(" " + _vm._s(_vm.data.title) + " ")]), _c('p', {
|
|
9629
|
-
directives: [{
|
|
9630
|
-
name: "show",
|
|
9631
|
-
rawName: "v-show",
|
|
9632
|
-
value: _vm.data.hideTitle,
|
|
9633
|
-
expression: "data.hideTitle"
|
|
9634
|
-
}],
|
|
9635
|
-
staticClass: "title text-placeholder"
|
|
9636
|
-
}), _c('el-button', {
|
|
9637
|
-
staticClass: "button",
|
|
9638
|
-
on: {
|
|
9639
|
-
"click": function ($event) {
|
|
9640
|
-
$event.preventDefault();
|
|
9641
|
-
return _vm.cardClicked.apply(null, arguments);
|
|
9642
|
-
}
|
|
9643
|
-
}
|
|
9644
|
-
}, [_vm._v(" View " + _vm._s(_vm.data.type))])], 1) : _vm._e()])]);
|
|
9645
|
-
};
|
|
9646
|
-
var Cardvue_type_template_id_2b3cc626_scoped_true_staticRenderFns = [];
|
|
9441
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"4321afdc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./node_modules/vue-svg-inline-loader/src!./src/components/Card.vue?vue&type=template&id=2b3cc626&scoped=true&
|
|
9442
|
+
var Cardvue_type_template_id_2b3cc626_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-card',{staticClass:"card",style:({ padding: '0px', maxWidth: _vm.width + 'rem' }),attrs:{"shadow":_vm.shadow,"body-style":_vm.bodyStyle}},[_c('div',{directives:[{name:"loading",rawName:"v-loading",value:(!_vm.isReady),expression:"!isReady"}]},[_c('div',{staticClass:"cursor-pointer",style:(_vm.imageContainerStyle),on:{"click":function($event){$event.preventDefault();return _vm.cardClicked.apply(null, arguments)}}},[(_vm.useDefaultImg)?_c('svg',{style:(_vm.imageStyle),attrs:{"data-name":"logo-sparc-wave-primary","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 400 190.585","svg-inline":'',"role":'presentation',"focusable":'false',"tabindex":'-1'}},[_c('defs',[_c('linearGradient',{attrs:{"id":"a","y1":"96.35","x2":"400","y2":"96.35","gradientUnits":"userSpaceOnUse"}},[_c('stop',{attrs:{"offset":"0","stop-color":"#0b00bf"}}),_c('stop',{attrs:{"offset":"1","stop-color":"#bc00fc"}})],1)],1),_c('path',{attrs:{"d":"M396.698 128.625l-146.274-3.38a6.536 6.536 0 00-6.138 3.923l-.06.141-13.674 31.448-27.61-151.224-.01-.068a8.982 8.982 0 00-17.663-.012l-21.596 115.929-160.375 3.907a3.38 3.38 0 00.027 6.759l166.015 2.715a6.594 6.594 0 006.537-5.145l.057-.255 17.854-79.565 27.472 131.326.026.124a6.76 6.76 0 0012.806 1.272l20.808-47.86 141.798-3.276a3.38 3.38 0 000-6.76z","fill":"url(#a)"}}),_c('path',{attrs:{"d":"M25.68 0c15.716 0 25.377 10.093 25.377 26.097v9.516H36.205v-9.516c0-7.353-3.894-11.822-10.526-11.822-6.776 0-10.669 4.469-10.669 11.822 0 3.895 1.298 7.353 5.479 11.391l19.754 18.601C46.586 62.144 52.21 68.778 52.21 79.88c0 16.005-9.95 26.097-25.954 26.097C10.108 105.977.158 95.885.158 79.88v-9.518H15.01v9.518c0 7.353 4.037 11.822 11.245 11.822 7.065 0 11.103-4.469 11.103-11.822 0-4.47-2.163-8.651-6.055-12.258L11.116 48.736C3.043 41.237.159 34.894.159 25.666.159 10.093 9.82 0 25.678 0zM99.797 69.786v35.182H84.945V1.01h25.376c16.005 0 26.097 10.093 26.097 26.097v16.581c0 16.15-10.092 26.098-26.097 26.098zm10.38-13.985c7.209 0 11.392-4.326 11.392-11.68V26.677c0-7.21-4.183-11.681-11.391-11.681h-10.38V55.8zM278.581 108.147H263.73V4.189h26.097c16.005 0 26.098 10.093 26.098 26.098v14.13c0 9.95-4.326 17.736-11.391 22.205 4.182 12.688 10.092 29.991 13.842 41.525h-15.14L290.69 70.37h-12.11zm11.1-51.763c7.21 0 11.39-4.326 11.39-11.534V29.855c0-7.21-4.18-11.68-11.39-11.68h-11.1v38.21zM399.844 73.541v9.519c0 16.005-9.947 26.097-25.952 26.097-16.15 0-26.097-10.092-26.097-26.097V29.277c0-16.005 9.947-26.098 26.097-26.098 16.005 0 25.952 10.093 25.952 26.098v9.516h-14.85v-9.516c0-7.354-4.037-11.822-11.103-11.822-7.21 0-11.247 4.468-11.247 11.822V83.06c0 7.353 4.037 11.822 11.247 11.822 7.066 0 11.103-4.469 11.103-11.822v-9.519z","fill":"#0e0e19"}})]):_c('img',{style:(_vm.imageStyle),attrs:{"src":_vm.thumbnail,"alt":"thumbnail loading ..."}})]),(false)?undefined:_vm._e(),(_vm.showCardDetails)?_c('div',{staticClass:"details"},[(!_vm.data.hideType)?_c('p',[_c('b',[_vm._v(_vm._s(_vm.data.type))])]):_vm._e(),_c('el-popover',{ref:"galleryPopover",attrs:{"disabled":_vm.disableTooltip,"content":_vm.data.title,"placement":"top","trigger":"hover","popper-class":"gallery-popper"}}),_c('p',{directives:[{name:"show",rawName:"v-show",value:(!_vm.data.hideTitle),expression:"!data.hideTitle"},{name:"popover",rawName:"v-popover:galleryPopover",arg:"galleryPopover"}],ref:"titleText",staticClass:"title"},[_vm._v(" "+_vm._s(_vm.data.title)+" ")]),_c('p',{directives:[{name:"show",rawName:"v-show",value:(_vm.data.hideTitle),expression:"data.hideTitle"}],staticClass:"title text-placeholder"}),_c('el-button',{staticClass:"button",on:{"click":function($event){$event.preventDefault();return _vm.cardClicked.apply(null, arguments)}}},[_vm._v(" View "+_vm._s(_vm.data.type))])],1):_vm._e()])])}
|
|
9443
|
+
var Cardvue_type_template_id_2b3cc626_scoped_true_staticRenderFns = []
|
|
9444
|
+
|
|
9647
9445
|
|
|
9648
9446
|
// CONCATENATED MODULE: ./src/components/Card.vue?vue&type=template&id=2b3cc626&scoped=true&
|
|
9649
9447
|
|
|
@@ -9816,6 +9614,52 @@ var axios_default = /*#__PURE__*/__webpack_require__.n(axios);
|
|
|
9816
9614
|
|
|
9817
9615
|
|
|
9818
9616
|
|
|
9617
|
+
//
|
|
9618
|
+
//
|
|
9619
|
+
//
|
|
9620
|
+
//
|
|
9621
|
+
//
|
|
9622
|
+
//
|
|
9623
|
+
//
|
|
9624
|
+
//
|
|
9625
|
+
//
|
|
9626
|
+
//
|
|
9627
|
+
//
|
|
9628
|
+
//
|
|
9629
|
+
//
|
|
9630
|
+
//
|
|
9631
|
+
//
|
|
9632
|
+
//
|
|
9633
|
+
//
|
|
9634
|
+
//
|
|
9635
|
+
//
|
|
9636
|
+
//
|
|
9637
|
+
//
|
|
9638
|
+
//
|
|
9639
|
+
//
|
|
9640
|
+
//
|
|
9641
|
+
//
|
|
9642
|
+
//
|
|
9643
|
+
//
|
|
9644
|
+
//
|
|
9645
|
+
//
|
|
9646
|
+
//
|
|
9647
|
+
//
|
|
9648
|
+
//
|
|
9649
|
+
//
|
|
9650
|
+
//
|
|
9651
|
+
//
|
|
9652
|
+
//
|
|
9653
|
+
//
|
|
9654
|
+
//
|
|
9655
|
+
//
|
|
9656
|
+
//
|
|
9657
|
+
//
|
|
9658
|
+
//
|
|
9659
|
+
//
|
|
9660
|
+
//
|
|
9661
|
+
//
|
|
9662
|
+
|
|
9819
9663
|
// import { SvgIcon } from '@abi-software/svg-sprite'
|
|
9820
9664
|
|
|
9821
9665
|
|
|
@@ -10035,6 +9879,42 @@ var Card_component = normalizeComponent(
|
|
|
10035
9879
|
/* harmony default export */ var Card = (Card_component.exports);
|
|
10036
9880
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./node_modules/vue-svg-inline-loader/src!./src/components/Gallery.vue?vue&type=script&lang=js&
|
|
10037
9881
|
|
|
9882
|
+
//
|
|
9883
|
+
//
|
|
9884
|
+
//
|
|
9885
|
+
//
|
|
9886
|
+
//
|
|
9887
|
+
//
|
|
9888
|
+
//
|
|
9889
|
+
//
|
|
9890
|
+
//
|
|
9891
|
+
//
|
|
9892
|
+
//
|
|
9893
|
+
//
|
|
9894
|
+
//
|
|
9895
|
+
//
|
|
9896
|
+
//
|
|
9897
|
+
//
|
|
9898
|
+
//
|
|
9899
|
+
//
|
|
9900
|
+
//
|
|
9901
|
+
//
|
|
9902
|
+
//
|
|
9903
|
+
//
|
|
9904
|
+
//
|
|
9905
|
+
//
|
|
9906
|
+
//
|
|
9907
|
+
//
|
|
9908
|
+
//
|
|
9909
|
+
//
|
|
9910
|
+
//
|
|
9911
|
+
//
|
|
9912
|
+
//
|
|
9913
|
+
//
|
|
9914
|
+
//
|
|
9915
|
+
//
|
|
9916
|
+
//
|
|
9917
|
+
|
|
10038
9918
|
|
|
10039
9919
|
|
|
10040
9920
|
function convertRemToPixels(rem) {
|