@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/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
9
9
|
|
|
10
|
-
## [v0.
|
|
10
|
+
## [v0.4.0](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.4-beta.0...v0.4.0)
|
|
11
|
+
|
|
12
|
+
### Commits
|
|
13
|
+
|
|
14
|
+
- Upgrade to vue 2.6.14 [`0e77cca`](https://github.com/alan-wu/mapcore-gallery/commit/0e77ccaa3bb984ade1b6a832974157a19dfd48a8)
|
|
15
|
+
- Upgrade to vue 2.6.14 [`702f5e6`](https://github.com/alan-wu/mapcore-gallery/commit/702f5e61598963407251456afc9daf8f8163fc9b)
|
|
16
|
+
|
|
17
|
+
## [v0.3.4-beta.0](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.3...v0.3.4-beta.0) - 2023-06-12
|
|
11
18
|
|
|
12
19
|
### Merged
|
|
13
20
|
|
package/dist/gallery.common.js
CHANGED
|
@@ -9262,124 +9262,36 @@ if (typeof window !== 'undefined') {
|
|
|
9262
9262
|
// Indicate to webpack that this file can be concatenated
|
|
9263
9263
|
/* harmony default export */ var setPublicPath = (null);
|
|
9264
9264
|
|
|
9265
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9266
|
-
var render = function
|
|
9267
|
-
|
|
9268
|
-
|
|
9269
|
-
return _c('div', {
|
|
9270
|
-
ref: "myButton",
|
|
9271
|
-
staticClass: "gallery"
|
|
9272
|
-
}, [_c('div', {
|
|
9273
|
-
staticClass: "gallery-strip"
|
|
9274
|
-
}, [_vm.items.length > 1 ? _c('a', {
|
|
9275
|
-
class: ['oval', 'prev', {
|
|
9276
|
-
disabled: !_vm.isPrevPossible
|
|
9277
|
-
}],
|
|
9278
|
-
attrs: {
|
|
9279
|
-
"href": "#"
|
|
9280
|
-
},
|
|
9281
|
-
on: {
|
|
9282
|
-
"click": function ($event) {
|
|
9283
|
-
$event.preventDefault();
|
|
9284
|
-
return _vm.goPrev.apply(null, arguments);
|
|
9285
|
-
}
|
|
9286
|
-
}
|
|
9287
|
-
}, [_c('span', {
|
|
9288
|
-
staticClass: "progress-button"
|
|
9289
|
-
}, [_vm._v("‹")])]) : _c('div', {
|
|
9290
|
-
staticStyle: {
|
|
9291
|
-
"width": "2rem"
|
|
9292
|
-
}
|
|
9293
|
-
}), _c('div', {
|
|
9294
|
-
staticClass: "filler"
|
|
9295
|
-
}), _c('div', {
|
|
9296
|
-
staticClass: "card-line"
|
|
9297
|
-
}, _vm._l(_vm.windowedItems, function (item, index) {
|
|
9298
|
-
return _c('span', {
|
|
9299
|
-
key: 'card_' + index,
|
|
9300
|
-
class: ['key-image-span', {
|
|
9301
|
-
active: _vm.isActive(index)
|
|
9302
|
-
}]
|
|
9303
|
-
}, [item ? _c('card', {
|
|
9304
|
-
attrs: {
|
|
9305
|
-
"data": item,
|
|
9306
|
-
"body-style": _vm.bodyStyle,
|
|
9307
|
-
"image-container-style": _vm.imageContainerStyle,
|
|
9308
|
-
"image-style": _vm.imageStyle,
|
|
9309
|
-
"width": _vm.cardWidth,
|
|
9310
|
-
"height": _vm.cardHeight,
|
|
9311
|
-
"shadow": _vm.shadow,
|
|
9312
|
-
"show-card-details": _vm.showCardDetails
|
|
9313
|
-
},
|
|
9314
|
-
on: {
|
|
9315
|
-
"card-clicked": _vm.cardClicked
|
|
9316
|
-
}
|
|
9317
|
-
}) : _vm._e()], 1);
|
|
9318
|
-
}), 0), _c('div', {
|
|
9319
|
-
staticClass: "filler"
|
|
9320
|
-
}), _vm.items.length > 1 ? _c('a', {
|
|
9321
|
-
class: ['oval', 'next', {
|
|
9322
|
-
disabled: !_vm.isNextPossible
|
|
9323
|
-
}],
|
|
9324
|
-
attrs: {
|
|
9325
|
-
"href": "#"
|
|
9326
|
-
},
|
|
9327
|
-
on: {
|
|
9328
|
-
"click": function ($event) {
|
|
9329
|
-
$event.preventDefault();
|
|
9330
|
-
return _vm.goNext.apply(null, arguments);
|
|
9331
|
-
}
|
|
9332
|
-
}
|
|
9333
|
-
}, [_c('span', {
|
|
9334
|
-
staticClass: "progress-button"
|
|
9335
|
-
}, [_vm._v("›")])]) : _c('div', {
|
|
9336
|
-
staticStyle: {
|
|
9337
|
-
"width": "2rem"
|
|
9338
|
-
}
|
|
9339
|
-
})]), _c('div', {
|
|
9340
|
-
style: _vm.bottomSpacer
|
|
9341
|
-
}), _vm.canShowIndicatorBar ? _c('index-indicator', {
|
|
9342
|
-
attrs: {
|
|
9343
|
-
"count": _vm.itemCount,
|
|
9344
|
-
"current": _vm.currentIndex
|
|
9345
|
-
},
|
|
9346
|
-
on: {
|
|
9347
|
-
"clicked": _vm.indicatorClicked
|
|
9348
|
-
}
|
|
9349
|
-
}) : _vm._e()], 1);
|
|
9350
|
-
};
|
|
9351
|
-
var staticRenderFns = [];
|
|
9265
|
+
// 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&
|
|
9266
|
+
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)}
|
|
9267
|
+
var staticRenderFns = []
|
|
9268
|
+
|
|
9352
9269
|
|
|
9353
9270
|
// CONCATENATED MODULE: ./src/components/Gallery.vue?vue&type=template&id=7e932ce8&scoped=true&
|
|
9354
9271
|
|
|
9355
9272
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
9356
9273
|
var es_array_push = __webpack_require__("14d9");
|
|
9357
9274
|
|
|
9358
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9359
|
-
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_render = function
|
|
9360
|
-
|
|
9361
|
-
|
|
9362
|
-
return _c('div', {
|
|
9363
|
-
staticClass: "indicator-container"
|
|
9364
|
-
}, _vm._l(_vm.count, function (number, index) {
|
|
9365
|
-
return _c('div', {
|
|
9366
|
-
key: 'indicator_' + number,
|
|
9367
|
-
class: ['indicator', {
|
|
9368
|
-
active: _vm.current === index
|
|
9369
|
-
}],
|
|
9370
|
-
on: {
|
|
9371
|
-
"click": function ($event) {
|
|
9372
|
-
return _vm.$emit('clicked', index);
|
|
9373
|
-
}
|
|
9374
|
-
}
|
|
9375
|
-
});
|
|
9376
|
-
}), 0);
|
|
9377
|
-
};
|
|
9378
|
-
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_staticRenderFns = [];
|
|
9275
|
+
// 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&
|
|
9276
|
+
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)}
|
|
9277
|
+
var IndexIndicatorvue_type_template_id_11261dc8_scoped_true_staticRenderFns = []
|
|
9278
|
+
|
|
9379
9279
|
|
|
9380
9280
|
// CONCATENATED MODULE: ./src/components/IndexIndicator.vue?vue&type=template&id=11261dc8&scoped=true&
|
|
9381
9281
|
|
|
9382
9282
|
// 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&
|
|
9283
|
+
//
|
|
9284
|
+
//
|
|
9285
|
+
//
|
|
9286
|
+
//
|
|
9287
|
+
//
|
|
9288
|
+
//
|
|
9289
|
+
//
|
|
9290
|
+
//
|
|
9291
|
+
//
|
|
9292
|
+
//
|
|
9293
|
+
//
|
|
9294
|
+
|
|
9383
9295
|
/* harmony default export */ var IndexIndicatorvue_type_script_lang_js_ = ({
|
|
9384
9296
|
name: 'IndexIndicator',
|
|
9385
9297
|
props: {
|
|
@@ -9517,124 +9429,10 @@ var component = normalizeComponent(
|
|
|
9517
9429
|
)
|
|
9518
9430
|
|
|
9519
9431
|
/* harmony default export */ var IndexIndicator = (component.exports);
|
|
9520
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9521
|
-
var Cardvue_type_template_id_2b3cc626_scoped_true_render = function
|
|
9522
|
-
|
|
9523
|
-
|
|
9524
|
-
return _c('el-card', {
|
|
9525
|
-
staticClass: "card",
|
|
9526
|
-
style: {
|
|
9527
|
-
padding: '0px',
|
|
9528
|
-
maxWidth: _vm.width + 'rem'
|
|
9529
|
-
},
|
|
9530
|
-
attrs: {
|
|
9531
|
-
"shadow": _vm.shadow,
|
|
9532
|
-
"body-style": _vm.bodyStyle
|
|
9533
|
-
}
|
|
9534
|
-
}, [_c('div', {
|
|
9535
|
-
directives: [{
|
|
9536
|
-
name: "loading",
|
|
9537
|
-
rawName: "v-loading",
|
|
9538
|
-
value: !_vm.isReady,
|
|
9539
|
-
expression: "!isReady"
|
|
9540
|
-
}]
|
|
9541
|
-
}, [_c('div', {
|
|
9542
|
-
staticClass: "cursor-pointer",
|
|
9543
|
-
style: _vm.imageContainerStyle,
|
|
9544
|
-
on: {
|
|
9545
|
-
"click": function ($event) {
|
|
9546
|
-
$event.preventDefault();
|
|
9547
|
-
return _vm.cardClicked.apply(null, arguments);
|
|
9548
|
-
}
|
|
9549
|
-
}
|
|
9550
|
-
}, [_vm.useDefaultImg ? _c('svg', {
|
|
9551
|
-
style: _vm.imageStyle,
|
|
9552
|
-
attrs: {
|
|
9553
|
-
"data-name": "logo-sparc-wave-primary",
|
|
9554
|
-
"xmlns": "http://www.w3.org/2000/svg",
|
|
9555
|
-
"viewBox": "0 0 400 190.585",
|
|
9556
|
-
"svg-inline": '',
|
|
9557
|
-
"role": 'presentation',
|
|
9558
|
-
"focusable": 'false',
|
|
9559
|
-
"tabindex": '-1'
|
|
9560
|
-
}
|
|
9561
|
-
}, [_c('defs', [_c('linearGradient', {
|
|
9562
|
-
attrs: {
|
|
9563
|
-
"id": "a",
|
|
9564
|
-
"y1": "96.35",
|
|
9565
|
-
"x2": "400",
|
|
9566
|
-
"y2": "96.35",
|
|
9567
|
-
"gradientUnits": "userSpaceOnUse"
|
|
9568
|
-
}
|
|
9569
|
-
}, [_c('stop', {
|
|
9570
|
-
attrs: {
|
|
9571
|
-
"offset": "0",
|
|
9572
|
-
"stop-color": "#0b00bf"
|
|
9573
|
-
}
|
|
9574
|
-
}), _c('stop', {
|
|
9575
|
-
attrs: {
|
|
9576
|
-
"offset": "1",
|
|
9577
|
-
"stop-color": "#bc00fc"
|
|
9578
|
-
}
|
|
9579
|
-
})], 1)], 1), _c('path', {
|
|
9580
|
-
attrs: {
|
|
9581
|
-
"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",
|
|
9582
|
-
"fill": "url(#a)"
|
|
9583
|
-
}
|
|
9584
|
-
}), _c('path', {
|
|
9585
|
-
attrs: {
|
|
9586
|
-
"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",
|
|
9587
|
-
"fill": "#0e0e19"
|
|
9588
|
-
}
|
|
9589
|
-
})]) : _c('img', {
|
|
9590
|
-
style: _vm.imageStyle,
|
|
9591
|
-
attrs: {
|
|
9592
|
-
"src": _vm.thumbnail,
|
|
9593
|
-
"alt": "thumbnail loading ..."
|
|
9594
|
-
}
|
|
9595
|
-
})]), false ? undefined : _vm._e(), _vm.showCardDetails ? _c('div', {
|
|
9596
|
-
staticClass: "details"
|
|
9597
|
-
}, [!_vm.data.hideType ? _c('p', [_c('b', [_vm._v(_vm._s(_vm.data.type))])]) : _vm._e(), _c('el-popover', {
|
|
9598
|
-
ref: "galleryPopover",
|
|
9599
|
-
attrs: {
|
|
9600
|
-
"disabled": _vm.disableTooltip,
|
|
9601
|
-
"content": _vm.data.title,
|
|
9602
|
-
"placement": "top",
|
|
9603
|
-
"trigger": "hover",
|
|
9604
|
-
"popper-class": "gallery-popper"
|
|
9605
|
-
}
|
|
9606
|
-
}), _c('p', {
|
|
9607
|
-
directives: [{
|
|
9608
|
-
name: "show",
|
|
9609
|
-
rawName: "v-show",
|
|
9610
|
-
value: !_vm.data.hideTitle,
|
|
9611
|
-
expression: "!data.hideTitle"
|
|
9612
|
-
}, {
|
|
9613
|
-
name: "popover",
|
|
9614
|
-
rawName: "v-popover:galleryPopover",
|
|
9615
|
-
arg: "galleryPopover"
|
|
9616
|
-
}],
|
|
9617
|
-
ref: "titleText",
|
|
9618
|
-
staticClass: "title"
|
|
9619
|
-
}, [_vm._v(" " + _vm._s(_vm.data.title) + " ")]), _c('p', {
|
|
9620
|
-
directives: [{
|
|
9621
|
-
name: "show",
|
|
9622
|
-
rawName: "v-show",
|
|
9623
|
-
value: _vm.data.hideTitle,
|
|
9624
|
-
expression: "data.hideTitle"
|
|
9625
|
-
}],
|
|
9626
|
-
staticClass: "title text-placeholder"
|
|
9627
|
-
}), _c('el-button', {
|
|
9628
|
-
staticClass: "button",
|
|
9629
|
-
on: {
|
|
9630
|
-
"click": function ($event) {
|
|
9631
|
-
$event.preventDefault();
|
|
9632
|
-
return _vm.cardClicked.apply(null, arguments);
|
|
9633
|
-
}
|
|
9634
|
-
}
|
|
9635
|
-
}, [_vm._v(" View " + _vm._s(_vm.data.type))])], 1) : _vm._e()])]);
|
|
9636
|
-
};
|
|
9637
|
-
var Cardvue_type_template_id_2b3cc626_scoped_true_staticRenderFns = [];
|
|
9432
|
+
// 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&
|
|
9433
|
+
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()])])}
|
|
9434
|
+
var Cardvue_type_template_id_2b3cc626_scoped_true_staticRenderFns = []
|
|
9435
|
+
|
|
9638
9436
|
|
|
9639
9437
|
// CONCATENATED MODULE: ./src/components/Card.vue?vue&type=template&id=2b3cc626&scoped=true&
|
|
9640
9438
|
|
|
@@ -9807,6 +9605,52 @@ var axios_default = /*#__PURE__*/__webpack_require__.n(axios);
|
|
|
9807
9605
|
|
|
9808
9606
|
|
|
9809
9607
|
|
|
9608
|
+
//
|
|
9609
|
+
//
|
|
9610
|
+
//
|
|
9611
|
+
//
|
|
9612
|
+
//
|
|
9613
|
+
//
|
|
9614
|
+
//
|
|
9615
|
+
//
|
|
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
|
+
|
|
9810
9654
|
// import { SvgIcon } from '@abi-software/svg-sprite'
|
|
9811
9655
|
|
|
9812
9656
|
|
|
@@ -10026,6 +9870,42 @@ var Card_component = normalizeComponent(
|
|
|
10026
9870
|
/* harmony default export */ var Card = (Card_component.exports);
|
|
10027
9871
|
// 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&
|
|
10028
9872
|
|
|
9873
|
+
//
|
|
9874
|
+
//
|
|
9875
|
+
//
|
|
9876
|
+
//
|
|
9877
|
+
//
|
|
9878
|
+
//
|
|
9879
|
+
//
|
|
9880
|
+
//
|
|
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
|
+
|
|
10029
9909
|
|
|
10030
9910
|
|
|
10031
9911
|
function convertRemToPixels(rem) {
|