@yoobic/yobi 8.2.0-28 → 8.2.0-30
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/cjs/{swiper-e29dad5a.js → swiper-1fba6f3d.js} +1 -1
- package/dist/cjs/yoo-form-json.cjs.entry.js +18 -17
- package/dist/cjs/yoo-form-uploader.cjs.entry.js +16 -6
- package/dist/cjs/yoo-grid.cjs.entry.js +6 -4
- package/dist/cjs/yoo-input-bar.cjs.entry.js +2 -2
- package/dist/cjs/{yoo-ion-slides-9e7d1a37.js → yoo-ion-slides-51a49cb5.js} +138 -29
- package/dist/cjs/yoo-ion-slides.cjs.entry.js +1 -1
- package/dist/cjs/yoo-truncated-line.cjs.entry.js +1 -1
- package/dist/collection/components/1.atoms/truncated-line/truncated-line.js +2 -2
- package/dist/collection/components/form/form-json/form-json.css +1 -1
- package/dist/collection/components/form/form-uploader/form-uploader.css +1 -1
- package/dist/collection/components/grid/grid/grid.js +6 -4
- package/dist/{esm/swiper-4d8b4f1c.js → design-system/swiper-c812ecbb.js} +2 -2
- package/dist/design-system/yoo-form-json.entry.js +18 -17
- package/dist/design-system/yoo-form-uploader.entry.js +16 -6
- package/dist/design-system/yoo-grid.entry.js +6 -4
- package/dist/design-system/yoo-input-bar.entry.js +2 -2
- package/dist/{esm/yoo-ion-slides-5eeb8685.js → design-system/yoo-ion-slides-c79b0f35.js} +138 -29
- package/dist/design-system/yoo-ion-slides.entry.js +1 -1
- package/dist/design-system/yoo-truncated-line.entry.js +2 -2
- package/dist/{design-system/swiper-4d8b4f1c.js → esm/swiper-c812ecbb.js} +2 -2
- package/dist/esm/yoo-form-json.entry.js +18 -17
- package/dist/esm/yoo-form-uploader.entry.js +16 -6
- package/dist/esm/yoo-grid.entry.js +6 -4
- package/dist/esm/yoo-input-bar.entry.js +2 -2
- package/dist/{design-system/yoo-ion-slides-5eeb8685.js → esm/yoo-ion-slides-c79b0f35.js} +138 -29
- package/dist/esm/yoo-ion-slides.entry.js +1 -1
- package/dist/esm/yoo-truncated-line.entry.js +2 -2
- package/dist/types/components/3.organisms/photo-editor/components/tools.d.ts +3 -3
- package/dist/types/components/form/image-cropper-dialog/pintura/pintura.d.ts +1070 -0
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ const formInputHelpers = require('./form-input-helpers-7dae7a64.js');
|
|
|
12
12
|
|
|
13
13
|
var filepond = _commonjsHelpers.createCommonjsModule(function (module, exports) {
|
|
14
14
|
/*!
|
|
15
|
-
* FilePond 4.30.
|
|
15
|
+
* FilePond 4.30.4
|
|
16
16
|
* Licensed under MIT, https://opensource.org/licenses/MIT/
|
|
17
17
|
* Please visit https://pqina.nl/filepond/ for details.
|
|
18
18
|
*/
|
|
@@ -1888,7 +1888,7 @@ var filepond = _commonjsHelpers.createCommonjsModule(function (module, exports)
|
|
|
1888
1888
|
var getUniqueId = function getUniqueId() {
|
|
1889
1889
|
return Math.random()
|
|
1890
1890
|
.toString(36)
|
|
1891
|
-
.
|
|
1891
|
+
.substring(2, 11);
|
|
1892
1892
|
};
|
|
1893
1893
|
|
|
1894
1894
|
function _typeof(obj) {
|
|
@@ -5637,7 +5637,7 @@ var filepond = _commonjsHelpers.createCommonjsModule(function (module, exports)
|
|
|
5637
5637
|
};
|
|
5638
5638
|
|
|
5639
5639
|
var getFilenameWithoutExtension = function getFilenameWithoutExtension(name) {
|
|
5640
|
-
return name.
|
|
5640
|
+
return name.substring(0, name.lastIndexOf('.')) || name;
|
|
5641
5641
|
};
|
|
5642
5642
|
|
|
5643
5643
|
var createFileStub = function createFileStub(source) {
|
|
@@ -10884,7 +10884,7 @@ var filepond = _commonjsHelpers.createCommonjsModule(function (module, exports)
|
|
|
10884
10884
|
.map(function(_ref4) {
|
|
10885
10885
|
var type = _ref4.type,
|
|
10886
10886
|
data = _ref4.data;
|
|
10887
|
-
var name = toCamels(type.
|
|
10887
|
+
var name = toCamels(type.substring(8).toLowerCase(), '_');
|
|
10888
10888
|
root.element.dataset[name] = data.value;
|
|
10889
10889
|
root.invalidateLayout();
|
|
10890
10890
|
});
|
|
@@ -11200,11 +11200,21 @@ var filepond = _commonjsHelpers.createCommonjsModule(function (module, exports)
|
|
|
11200
11200
|
|
|
11201
11201
|
// if does not allow multiple items and dragging more than one item
|
|
11202
11202
|
if (!allowMultiple && totalBrowseItems > 1) {
|
|
11203
|
+
root.dispatch('DID_THROW_MAX_FILES', {
|
|
11204
|
+
source: items,
|
|
11205
|
+
error: createResponse('warning', 0, 'Max files'),
|
|
11206
|
+
});
|
|
11207
|
+
|
|
11203
11208
|
return true;
|
|
11204
11209
|
}
|
|
11205
11210
|
|
|
11206
11211
|
// limit max items to one if not allowed to drop multiple items
|
|
11207
|
-
maxItems = allowMultiple ? maxItems :
|
|
11212
|
+
maxItems = allowMultiple ? maxItems : 1;
|
|
11213
|
+
|
|
11214
|
+
if (!allowMultiple && allowReplace) {
|
|
11215
|
+
// There is only one item, so there is room to replace or add an item
|
|
11216
|
+
return false;
|
|
11217
|
+
}
|
|
11208
11218
|
|
|
11209
11219
|
// no more room?
|
|
11210
11220
|
var hasMaxItems = isInt(maxItems);
|
|
@@ -16948,7 +16958,7 @@ var filepondPluginImagePreview = _commonjsHelpers.createCommonjsModule(function
|
|
|
16948
16958
|
|
|
16949
16959
|
const FilePondPluginImagePreview = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(filepondPluginImagePreview);
|
|
16950
16960
|
|
|
16951
|
-
const formUploaderCss = "/*!\n * FilePond 4.30.3\n * Licensed under MIT, https://opensource.org/licenses/MIT/\n * Please visit https://pqina.nl/filepond/ for details.\n */.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:\"\"}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;-webkit-box-shadow:0 0 0 0 hsla(0,0%,100%,0);box-shadow:0 0 0 0 hsla(0,0%,100%,0);-webkit-transition:-webkit-box-shadow .25s ease-in;transition:-webkit-box-shadow .25s ease-in;transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in, -webkit-box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{-webkit-box-shadow:0 0 0 .125em hsla(0,0%,100%,.9);box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex:1;flex:1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:-ms-flexbox;display:flex;height:100%;-ms-flex-align:start;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:\"\";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{-webkit-box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25);box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{-webkit-transition:-webkit-box-shadow .125s ease-in-out;transition:-webkit-box-shadow .125s ease-in-out;transition:box-shadow .125s ease-in-out;transition:box-shadow .125s ease-in-out, -webkit-box-shadow .125s ease-in-out;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{-webkit-box-shadow:0 .125em .3125em rgba(0,0,0,.325);box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;-webkit-transition:background-color .25s;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:-webkit-gradient(linear,left top, left bottom,from(#000),to(transparent));-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:-webkit-gradient(linear,left top, left bottom,from(#000),to(transparent));mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (-webkit-min-device-pixel-ratio:0), not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:\"\";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:\"\";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{-webkit-box-sizing:inherit;box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.175;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}:host{--uploader-height:var(--uploader-height)}.form-uploader .container{height:var(--uploader-height)}.form-uploader .filepond--root{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;height:var(--uploader-height);margin-bottom:1em;font-size:var(--font-size-16, 1rem);font-family:var(--font-family, \"Lato\");line-height:normal;direction:ltr;text-align:left;text-rendering:optimizeLegibility;contain:layout style size}.form-uploader .filepond--credits{display:none}.form-uploader .filepond--drop-label{color:var(--text-color, #807f83);background-color:var(--stable-light, #f1f1f1);border:var(--border-width-02, 0.125rem) dashed var(--stable, #adadad);border-radius:var(--border-radius-08, 0.5rem)}.form-uploader .filepond--list-scroller{margin-top:1.8rem}.filepond--root.file-uploader{height:var(--uploader-height);margin-bottom:0}.form-uploader.mobile.multiple .filepond--root{height:9.375rem}.form-uploader.mobile.multiple .filepond--root.file-uploader{height:9.375rem}";
|
|
16961
|
+
const formUploaderCss = "/*!\n * FilePond 4.30.4\n * Licensed under MIT, https://opensource.org/licenses/MIT/\n * Please visit https://pqina.nl/filepond/ for details.\n */.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:\"\"}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;-webkit-box-shadow:0 0 0 0 hsla(0,0%,100%,0);box-shadow:0 0 0 0 hsla(0,0%,100%,0);-webkit-transition:-webkit-box-shadow .25s ease-in;transition:-webkit-box-shadow .25s ease-in;transition:box-shadow .25s ease-in;transition:box-shadow .25s ease-in, -webkit-box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{-webkit-box-shadow:0 0 0 .125em hsla(0,0%,100%,.9);box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex:1;flex:1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:end;align-items:flex-end;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:-ms-flexbox;display:flex;height:100%;-ms-flex-align:start;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:\"\";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{-webkit-box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25);box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{-webkit-transition:opacity .15s ease-out;transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{-webkit-transition:-webkit-box-shadow .125s ease-in-out;transition:-webkit-box-shadow .125s ease-in-out;transition:box-shadow .125s ease-in-out;transition:box-shadow .125s ease-in-out, -webkit-box-shadow .125s ease-in-out;-webkit-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{-webkit-box-shadow:0 .125em .3125em rgba(0,0,0,.325);box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;-webkit-transition:background-color .25s;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:-webkit-gradient(linear,left top, left bottom,from(#000),to(transparent));-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:-webkit-gradient(linear,left top, left bottom,from(#000),to(transparent));mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (-webkit-min-device-pixel-ratio:0), not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:\"\";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:\"\";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{-webkit-box-sizing:inherit;box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.175;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}:host{--uploader-height:var(--uploader-height)}.form-uploader .container{height:var(--uploader-height)}.form-uploader .filepond--root{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;height:var(--uploader-height);margin-bottom:1em;font-size:var(--font-size-16, 1rem);font-family:var(--font-family, \"Lato\");line-height:normal;direction:ltr;text-align:left;text-rendering:optimizeLegibility;contain:layout style size}.form-uploader .filepond--credits{display:none}.form-uploader .filepond--drop-label{color:var(--text-color, #807f83);background-color:var(--stable-light, #f1f1f1);border:var(--border-width-02, 0.125rem) dashed var(--stable, #adadad);border-radius:var(--border-radius-08, 0.5rem)}.form-uploader .filepond--list-scroller{margin-top:1.8rem}.filepond--root.file-uploader{height:var(--uploader-height);margin-bottom:0}.form-uploader.mobile.multiple .filepond--root{height:9.375rem}.form-uploader.mobile.multiple .filepond--root.file-uploader{height:9.375rem}";
|
|
16952
16962
|
|
|
16953
16963
|
filepond.registerPlugin(filepondPluginFileValidateSize, filepondPluginFileValidateType, FilePondPluginImagePreview);
|
|
16954
16964
|
const YooFormUploaderComponent = class {
|
|
@@ -351,8 +351,13 @@ const YooGridComponent = class {
|
|
|
351
351
|
if (this.isAgGrid() && (gridCurrentSearch === null || gridCurrentSearch === void 0 ? void 0 : gridCurrentSearch.datasourceSuccess)) {
|
|
352
352
|
gridCurrentSearch === null || gridCurrentSearch === void 0 ? void 0 : gridCurrentSearch.datasourceSuccess(values);
|
|
353
353
|
}
|
|
354
|
+
if (gridCurrentSearch === null || gridCurrentSearch === void 0 ? void 0 : gridCurrentSearch.search) {
|
|
355
|
+
this.searchText = gridCurrentSearch.search; // otherwise the search gets emptied
|
|
356
|
+
}
|
|
354
357
|
this.itemList = this.items;
|
|
355
|
-
this.
|
|
358
|
+
if (this.isSelectAll) {
|
|
359
|
+
this.setFormFieldValue(); // once we get the total we can update the query to have the proper total
|
|
360
|
+
}
|
|
356
361
|
}
|
|
357
362
|
async getGridSelection() {
|
|
358
363
|
var _a;
|
|
@@ -1500,9 +1505,6 @@ const YooGridComponent = class {
|
|
|
1500
1505
|
}
|
|
1501
1506
|
onSearchInputChange(ev) {
|
|
1502
1507
|
ev.stopPropagation();
|
|
1503
|
-
// if (ev?.detail !== this.searchText && this.isSelectedToggleView) { // dont understand why we need this
|
|
1504
|
-
// this.isSelectedToggleView = false;
|
|
1505
|
-
// }
|
|
1506
1508
|
this.isLoading = false;
|
|
1507
1509
|
this.searchText = ev.detail;
|
|
1508
1510
|
this.isFirstLoadAfterDisconnect = false;
|
|
@@ -20,7 +20,7 @@ function race(...args) {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
|
-
* @license Angular v13.3.
|
|
23
|
+
* @license Angular v13.3.11
|
|
24
24
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
25
25
|
* License: MIT
|
|
26
26
|
*/
|
|
@@ -21158,7 +21158,7 @@ class Version {
|
|
|
21158
21158
|
/**
|
|
21159
21159
|
* @publicApi
|
|
21160
21160
|
*/
|
|
21161
|
-
const VERSION = new Version('13.3.
|
|
21161
|
+
const VERSION = new Version('13.3.11');
|
|
21162
21162
|
|
|
21163
21163
|
/**
|
|
21164
21164
|
* @license
|
|
@@ -3469,6 +3469,29 @@ function slideToLoop(index, speed, runCallbacks, internal) {
|
|
|
3469
3469
|
runCallbacks = true;
|
|
3470
3470
|
}
|
|
3471
3471
|
|
|
3472
|
+
if (typeof index === 'string') {
|
|
3473
|
+
/**
|
|
3474
|
+
* The `index` argument converted from `string` to `number`.
|
|
3475
|
+
* @type {number}
|
|
3476
|
+
*/
|
|
3477
|
+
const indexAsNumber = parseInt(index, 10);
|
|
3478
|
+
/**
|
|
3479
|
+
* Determines whether the `index` argument is a valid `number`
|
|
3480
|
+
* after being converted from the `string` type.
|
|
3481
|
+
* @type {boolean}
|
|
3482
|
+
*/
|
|
3483
|
+
|
|
3484
|
+
const isValidNumber = isFinite(indexAsNumber);
|
|
3485
|
+
|
|
3486
|
+
if (!isValidNumber) {
|
|
3487
|
+
throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${index}] given.`);
|
|
3488
|
+
} // Knowing that the converted `index` is a valid number,
|
|
3489
|
+
// we can update the original argument's value.
|
|
3490
|
+
|
|
3491
|
+
|
|
3492
|
+
index = indexAsNumber;
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3472
3495
|
const swiper = this;
|
|
3473
3496
|
let newIndex = index;
|
|
3474
3497
|
|
|
@@ -4571,8 +4594,21 @@ function setBreakpoint() {
|
|
|
4571
4594
|
}
|
|
4572
4595
|
|
|
4573
4596
|
swiper.emitContainerClasses();
|
|
4574
|
-
}
|
|
4597
|
+
} // Toggle navigation, pagination, scrollbar
|
|
4598
|
+
|
|
4599
|
+
|
|
4600
|
+
['navigation', 'pagination', 'scrollbar'].forEach(prop => {
|
|
4601
|
+
const wasModuleEnabled = params[prop] && params[prop].enabled;
|
|
4602
|
+
const isModuleEnabled = breakpointParams[prop] && breakpointParams[prop].enabled;
|
|
4575
4603
|
|
|
4604
|
+
if (wasModuleEnabled && !isModuleEnabled) {
|
|
4605
|
+
swiper[prop].disable();
|
|
4606
|
+
}
|
|
4607
|
+
|
|
4608
|
+
if (!wasModuleEnabled && isModuleEnabled) {
|
|
4609
|
+
swiper[prop].enable();
|
|
4610
|
+
}
|
|
4611
|
+
});
|
|
4576
4612
|
const directionChanged = breakpointParams.direction && breakpointParams.direction !== params.direction;
|
|
4577
4613
|
const needsReLoop = params.loop && (breakpointParams.slidesPerView !== params.slidesPerView || directionChanged);
|
|
4578
4614
|
|
|
@@ -6495,7 +6531,8 @@ function Navigation(_ref) {
|
|
|
6495
6531
|
hideOnClick: false,
|
|
6496
6532
|
disabledClass: 'swiper-button-disabled',
|
|
6497
6533
|
hiddenClass: 'swiper-button-hidden',
|
|
6498
|
-
lockClass: 'swiper-button-lock'
|
|
6534
|
+
lockClass: 'swiper-button-lock',
|
|
6535
|
+
navigationDisabledClass: 'swiper-navigation-disabled'
|
|
6499
6536
|
}
|
|
6500
6537
|
});
|
|
6501
6538
|
swiper.navigation = {
|
|
@@ -6604,8 +6641,13 @@ function Navigation(_ref) {
|
|
|
6604
6641
|
}
|
|
6605
6642
|
|
|
6606
6643
|
on('init', () => {
|
|
6607
|
-
|
|
6608
|
-
|
|
6644
|
+
if (swiper.params.navigation.enabled === false) {
|
|
6645
|
+
// eslint-disable-next-line
|
|
6646
|
+
disable();
|
|
6647
|
+
} else {
|
|
6648
|
+
init();
|
|
6649
|
+
update();
|
|
6650
|
+
}
|
|
6609
6651
|
});
|
|
6610
6652
|
on('toEdge fromEdge lock unlock', () => {
|
|
6611
6653
|
update();
|
|
@@ -6659,7 +6701,21 @@ function Navigation(_ref) {
|
|
|
6659
6701
|
}
|
|
6660
6702
|
}
|
|
6661
6703
|
});
|
|
6704
|
+
|
|
6705
|
+
const enable = () => {
|
|
6706
|
+
swiper.$el.removeClass(swiper.params.navigation.navigationDisabledClass);
|
|
6707
|
+
init();
|
|
6708
|
+
update();
|
|
6709
|
+
};
|
|
6710
|
+
|
|
6711
|
+
const disable = () => {
|
|
6712
|
+
swiper.$el.addClass(swiper.params.navigation.navigationDisabledClass);
|
|
6713
|
+
destroy();
|
|
6714
|
+
};
|
|
6715
|
+
|
|
6662
6716
|
Object.assign(swiper.navigation, {
|
|
6717
|
+
enable,
|
|
6718
|
+
disable,
|
|
6663
6719
|
update,
|
|
6664
6720
|
init,
|
|
6665
6721
|
destroy
|
|
@@ -6711,7 +6767,8 @@ function Pagination(_ref) {
|
|
|
6711
6767
|
clickableClass: `${pfx}-clickable`,
|
|
6712
6768
|
lockClass: `${pfx}-lock`,
|
|
6713
6769
|
horizontalClass: `${pfx}-horizontal`,
|
|
6714
|
-
verticalClass: `${pfx}-vertical
|
|
6770
|
+
verticalClass: `${pfx}-vertical`,
|
|
6771
|
+
paginationDisabledClass: `${pfx}-disabled`
|
|
6715
6772
|
}
|
|
6716
6773
|
});
|
|
6717
6774
|
swiper.pagination = {
|
|
@@ -7014,9 +7071,14 @@ function Pagination(_ref) {
|
|
|
7014
7071
|
}
|
|
7015
7072
|
|
|
7016
7073
|
on('init', () => {
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
|
|
7074
|
+
if (swiper.params.pagination.enabled === false) {
|
|
7075
|
+
// eslint-disable-next-line
|
|
7076
|
+
disable();
|
|
7077
|
+
} else {
|
|
7078
|
+
init();
|
|
7079
|
+
render();
|
|
7080
|
+
update();
|
|
7081
|
+
}
|
|
7020
7082
|
});
|
|
7021
7083
|
on('activeIndexChange', () => {
|
|
7022
7084
|
if (swiper.params.loop) {
|
|
@@ -7076,7 +7138,32 @@ function Pagination(_ref) {
|
|
|
7076
7138
|
$el.toggleClass(swiper.params.pagination.hiddenClass);
|
|
7077
7139
|
}
|
|
7078
7140
|
});
|
|
7141
|
+
|
|
7142
|
+
const enable = () => {
|
|
7143
|
+
swiper.$el.removeClass(swiper.params.pagination.paginationDisabledClass);
|
|
7144
|
+
|
|
7145
|
+
if (swiper.pagination.$el) {
|
|
7146
|
+
swiper.pagination.$el.removeClass(swiper.params.pagination.paginationDisabledClass);
|
|
7147
|
+
}
|
|
7148
|
+
|
|
7149
|
+
init();
|
|
7150
|
+
render();
|
|
7151
|
+
update();
|
|
7152
|
+
};
|
|
7153
|
+
|
|
7154
|
+
const disable = () => {
|
|
7155
|
+
swiper.$el.addClass(swiper.params.pagination.paginationDisabledClass);
|
|
7156
|
+
|
|
7157
|
+
if (swiper.pagination.$el) {
|
|
7158
|
+
swiper.pagination.$el.addClass(swiper.params.pagination.paginationDisabledClass);
|
|
7159
|
+
}
|
|
7160
|
+
|
|
7161
|
+
destroy();
|
|
7162
|
+
};
|
|
7163
|
+
|
|
7079
7164
|
Object.assign(swiper.pagination, {
|
|
7165
|
+
enable,
|
|
7166
|
+
disable,
|
|
7080
7167
|
render,
|
|
7081
7168
|
update,
|
|
7082
7169
|
init,
|
|
@@ -7107,7 +7194,8 @@ function Scrollbar(_ref) {
|
|
|
7107
7194
|
draggable: false,
|
|
7108
7195
|
snapOnRelease: true,
|
|
7109
7196
|
lockClass: 'swiper-scrollbar-lock',
|
|
7110
|
-
dragClass: 'swiper-scrollbar-drag'
|
|
7197
|
+
dragClass: 'swiper-scrollbar-drag',
|
|
7198
|
+
scrollbarDisabledClass: 'swiper-scrollbar-disabled'
|
|
7111
7199
|
}
|
|
7112
7200
|
});
|
|
7113
7201
|
swiper.scrollbar = {
|
|
@@ -7333,6 +7421,7 @@ function Scrollbar(_ref) {
|
|
|
7333
7421
|
support
|
|
7334
7422
|
} = swiper;
|
|
7335
7423
|
const $el = scrollbar.$el;
|
|
7424
|
+
if (!$el) return;
|
|
7336
7425
|
const target = $el[0];
|
|
7337
7426
|
const activeListener = support.passiveListener && params.passiveListeners ? {
|
|
7338
7427
|
passive: false,
|
|
@@ -7357,12 +7446,12 @@ function Scrollbar(_ref) {
|
|
|
7357
7446
|
}
|
|
7358
7447
|
|
|
7359
7448
|
function enableDraggable() {
|
|
7360
|
-
if (!swiper.params.scrollbar.el) return;
|
|
7449
|
+
if (!swiper.params.scrollbar.el || !swiper.scrollbar.el) return;
|
|
7361
7450
|
events('on');
|
|
7362
7451
|
}
|
|
7363
7452
|
|
|
7364
7453
|
function disableDraggable() {
|
|
7365
|
-
if (!swiper.params.scrollbar.el) return;
|
|
7454
|
+
if (!swiper.params.scrollbar.el || !swiper.scrollbar.el) return;
|
|
7366
7455
|
events('off');
|
|
7367
7456
|
}
|
|
7368
7457
|
|
|
@@ -7410,9 +7499,14 @@ function Scrollbar(_ref) {
|
|
|
7410
7499
|
}
|
|
7411
7500
|
|
|
7412
7501
|
on('init', () => {
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7502
|
+
if (swiper.params.scrollbar.enabled === false) {
|
|
7503
|
+
// eslint-disable-next-line
|
|
7504
|
+
disable();
|
|
7505
|
+
} else {
|
|
7506
|
+
init();
|
|
7507
|
+
updateSize();
|
|
7508
|
+
setTranslate();
|
|
7509
|
+
}
|
|
7416
7510
|
});
|
|
7417
7511
|
on('update resize observerUpdate lock unlock', () => {
|
|
7418
7512
|
updateSize();
|
|
@@ -7435,7 +7529,32 @@ function Scrollbar(_ref) {
|
|
|
7435
7529
|
on('destroy', () => {
|
|
7436
7530
|
destroy();
|
|
7437
7531
|
});
|
|
7532
|
+
|
|
7533
|
+
const enable = () => {
|
|
7534
|
+
swiper.$el.removeClass(swiper.params.scrollbar.scrollbarDisabledClass);
|
|
7535
|
+
|
|
7536
|
+
if (swiper.scrollbar.$el) {
|
|
7537
|
+
swiper.scrollbar.$el.removeClass(swiper.params.scrollbar.scrollbarDisabledClass);
|
|
7538
|
+
}
|
|
7539
|
+
|
|
7540
|
+
init();
|
|
7541
|
+
updateSize();
|
|
7542
|
+
setTranslate();
|
|
7543
|
+
};
|
|
7544
|
+
|
|
7545
|
+
const disable = () => {
|
|
7546
|
+
swiper.$el.addClass(swiper.params.scrollbar.scrollbarDisabledClass);
|
|
7547
|
+
|
|
7548
|
+
if (swiper.scrollbar.$el) {
|
|
7549
|
+
swiper.scrollbar.$el.addClass(swiper.params.scrollbar.scrollbarDisabledClass);
|
|
7550
|
+
}
|
|
7551
|
+
|
|
7552
|
+
destroy();
|
|
7553
|
+
};
|
|
7554
|
+
|
|
7438
7555
|
Object.assign(swiper.scrollbar, {
|
|
7556
|
+
enable,
|
|
7557
|
+
disable,
|
|
7439
7558
|
updateSize,
|
|
7440
7559
|
setTranslate,
|
|
7441
7560
|
init,
|
|
@@ -9260,7 +9379,8 @@ function Autoplay(_ref) {
|
|
|
9260
9379
|
delay = $activeSlideEl.attr('data-swiper-autoplay') || swiper.params.autoplay.delay;
|
|
9261
9380
|
}
|
|
9262
9381
|
|
|
9263
|
-
|
|
9382
|
+
clearTimeout(timeout);
|
|
9383
|
+
timeout = nextTick(() => {
|
|
9264
9384
|
let autoplayResult;
|
|
9265
9385
|
|
|
9266
9386
|
if (swiper.params.autoplay.reverseDirection) {
|
|
@@ -9294,17 +9414,6 @@ function Autoplay(_ref) {
|
|
|
9294
9414
|
if (swiper.params.cssMode && swiper.autoplay.running) run();else if (autoplayResult === false) {
|
|
9295
9415
|
run();
|
|
9296
9416
|
}
|
|
9297
|
-
};
|
|
9298
|
-
|
|
9299
|
-
clearTimeout(timeout);
|
|
9300
|
-
|
|
9301
|
-
if (delay === 0) {
|
|
9302
|
-
proceed();
|
|
9303
|
-
return;
|
|
9304
|
-
}
|
|
9305
|
-
|
|
9306
|
-
timeout = nextTick(() => {
|
|
9307
|
-
proceed();
|
|
9308
9417
|
}, delay);
|
|
9309
9418
|
}
|
|
9310
9419
|
|
|
@@ -11127,7 +11236,7 @@ function EffectCards(_ref) {
|
|
|
11127
11236
|
}
|
|
11128
11237
|
|
|
11129
11238
|
/**
|
|
11130
|
-
* Swiper 8.
|
|
11239
|
+
* Swiper 8.2.2
|
|
11131
11240
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
11132
11241
|
* https://swiperjs.com
|
|
11133
11242
|
*
|
|
@@ -11135,7 +11244,7 @@ function EffectCards(_ref) {
|
|
|
11135
11244
|
*
|
|
11136
11245
|
* Released under the MIT License
|
|
11137
11246
|
*
|
|
11138
|
-
* Released on:
|
|
11247
|
+
* Released on: June 1, 2022
|
|
11139
11248
|
*/
|
|
11140
11249
|
|
|
11141
11250
|
const slidesCss = ".swiper-container{position:relative;z-index:1;margin:0 auto;padding:0;overflow:hidden;list-style:none}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0px, 0, 0);transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{margin:0 auto;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-slide{position:relative;-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-ms-flex-negative:0}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:height, -webkit-transform;-o-transition-property:transform, height;transition-property:height, -webkit-transform;transition-property:transform, height;transition-property:transform, height, -webkit-transform;-webkit-box-align:start;-ms-flex-align:start}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;pointer-events:none}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;z-index:10;width:27px;height:44px;margin-top:-22px;background-repeat:no-repeat;background-position:center;background-size:27px 44px;cursor:pointer}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{cursor:auto;opacity:0.35;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{right:auto;left:10px;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;z-index:var(--pagination-z-index);text-align:center;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);-webkit-transition:300ms opacity;-o-transition:300ms opacity;transition:300ms opacity}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-pagination-bullets{bottom:var(--pagination-bottom-position);left:var(--pagination-left-position);width:var(--pagination-container-width);height:var(--pagination-container-height)}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullet{display:inline-block;width:8px;height:8px;background:var(--bullet-background);border-radius:100%;opacity:0.2}button.swiper-pagination-bullet{margin:0;padding:0;border:none;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{background:var(--bullet-background-active);opacity:1}.swiper-container-vertical>.swiper-pagination-bullets{top:50%;right:10px;-webkit-transform:translate3d(0px, -50%, 0);transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;width:8px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:200ms top, 200ms -webkit-transform;-o-transition:200ms transform, 200ms top;transition:200ms top, 200ms -webkit-transform;transition:200ms transform, 200ms top;transition:200ms transform, 200ms top, 200ms -webkit-transform}.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;white-space:nowrap;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms left, 200ms -webkit-transform;-o-transition:200ms transform, 200ms left;transition:200ms left, 200ms -webkit-transform;transition:200ms transform, 200ms left;transition:200ms transform, 200ms left, 200ms -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms right, 200ms -webkit-transform;-o-transition:200ms transform, 200ms right;transition:200ms right, 200ms -webkit-transform;transition:200ms transform, 200ms right;transition:200ms transform, 200ms right, 200ms -webkit-transform}.swiper-pagination-progressbar{position:absolute;background:var(--progress-bar-background)}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{position:absolute;top:0;left:0;width:100%;height:100%;background:var(--progress-bar-background-active);-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:100%;height:4px}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:4px;height:100%}.swiper-pagination-white .swiper-pagination-bullet-active{background:var(--light, #ffffff)}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255, 255, 255, 0.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:var(--light, #ffffff)}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0, 0, 0, 0.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{position:relative;background:var(--scroll-bar-background);border-radius:10px;-ms-touch-action:none}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;bottom:3px;left:1%;z-index:50;width:98%;height:5px}.swiper-container-vertical>.swiper-scrollbar{position:absolute;top:1%;right:3px;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{position:relative;top:0;left:0;width:100%;height:100%;background:var(--scroll-bar-background-active);border-radius:10px}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:100%;height:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{position:absolute;top:50%;left:50%;z-index:10;width:42px;height:42px;margin-top:-21px;margin-left:-21px;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12, end) infinite;animation:swiper-preloader-spin 1s steps(12, end) infinite}.swiper-lazy-preloader:after{display:block;width:100%;height:100%;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\");background-repeat:no-repeat;background-position:50%;background-size:100%;content:\"\"}.swiper-lazy-preloader-white:after{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;top:0;left:0;z-index:-1000;opacity:0;pointer-events:none}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;pointer-events:none}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{z-index:1;width:100%;height:100%;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:hidden;pointer-events:none}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-prev,.swiper-container-cube .swiper-slide-next+.swiper-slide{visibility:visible;pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;bottom:0px;left:0;z-index:0;width:100%;height:100%;background:#000;opacity:0.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}:host{--host-background-color:unset;--bullet-background:var(--app-color, #5a30f4);--bullet-background-active:var(--app-color, #5a30f4);--swiper-container-height:100%;--progress-bar-background:rgba(var(--ion-text-color-rgb), 0.25);--progress-bar-background-active:ion-color(primary, shade);--scroll-bar-background:rgba(var(--ion-text-color-rgb), 0.1);--scroll-bar-background-active:rgba(var(--ion-text-color-rgb), 0.5);--pagination-bottom-position:var(--spacing-08, 0.5rem);--pagination-left-position:0;--pagination-container-width:100%;--pagination-container-height:2rem;--pagination-z-index:10;position:relative;display:block;height:100%;overflow:hidden}:host .slides{display:block;background-color:var(--host-background-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host .swiper-container{height:var(--swiper-container-height)}:host .swiper-button-prev,:host .swiper-button-next{background-image:none !important}:host .swiper-button-prev.hidden,:host .swiper-button-next.hidden{display:none}:host .swiper-pagination-bullets{display:grid;grid-auto-flow:column;grid-gap:var(--spacing-08, 0.5rem);-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:host .swiper-pagination-bullets>*{margin:0}:host(.entity-search-display) .scroll-inner,:host(.entity-search-display) .slides,:host(.entity-search-display) .swiper-container{height:100%}:host(.entity-search-display) .swiper-slide{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host(.outside-navigation-arrows){overflow:visible}:host(.outside-navigation-arrows) .swiper-button-prev,:host(.outside-navigation-arrows) .swiper-button-next{color:var(--light, #ffffff);font-size:var(--font-size-32, 2rem)}:host(.outside-navigation-arrows) .swiper-button-prev{left:-2.5rem}:host(.outside-navigation-arrows) .swiper-button-next{right:-2.5rem}:host(.web) .swiper-button-prev,:host(.web) .swiper-button-next{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:2rem;height:2rem;border-radius:50%}:host(.prevent-scroll-side-on-drag){overflow:unset}";
|
|
@@ -11452,7 +11561,7 @@ const YooIonSlidesComponent = class {
|
|
|
11452
11561
|
async initSwiper() {
|
|
11453
11562
|
const finalOptions = this.normalizeOptions();
|
|
11454
11563
|
// init swiper core
|
|
11455
|
-
const { Swiper } = await Promise.resolve().then(function () { return require('./swiper-
|
|
11564
|
+
const { Swiper } = await Promise.resolve().then(function () { return require('./swiper-1fba6f3d.js'); });
|
|
11456
11565
|
await waitForSlides(this.el);
|
|
11457
11566
|
const swiper = new Swiper(this.el, finalOptions);
|
|
11458
11567
|
this.swiperReady = true;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const yooIonSlides_entry = require('./yoo-ion-slides-
|
|
5
|
+
const yooIonSlides_entry = require('./yoo-ion-slides-51a49cb5.js');
|
|
6
6
|
require('./index-c8609d4f.js');
|
|
7
7
|
require('./index-bc221b8a.js');
|
|
8
8
|
require('./lodash-597bda6d.js');
|
|
@@ -23,7 +23,7 @@ const YooTruncatedLineComponent = class {
|
|
|
23
23
|
return (index.h("yoo-tooltip", { ref: (el) => this.tooltipElement = el, content: this.content, placement: this.tooltipPlacement }, this.renderContent()));
|
|
24
24
|
};
|
|
25
25
|
this.renderContent = () => {
|
|
26
|
-
return (index.h("div", { class: "content", ref: (el) => this.contentElement = el }, this.content, index.h("slot", null)));
|
|
26
|
+
return (index.h("div", { class: "content", ref: (el) => this.contentElement = el }, index$1.translateMulti(this.content), index.h("slot", null)));
|
|
27
27
|
};
|
|
28
28
|
this.toggleTooltip = (isEnabled) => {
|
|
29
29
|
if (this.tooltipElement) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isTruncated } from '@shared/utils';
|
|
1
|
+
import { isTruncated, translateMulti } from '@shared/utils';
|
|
2
2
|
import { Component, Element, h, Host, Prop } from '@stencil/core';
|
|
3
3
|
//! Things to note:
|
|
4
4
|
//* - This component is for single line ONLY
|
|
@@ -18,7 +18,7 @@ export class YooTruncatedLineComponent {
|
|
|
18
18
|
};
|
|
19
19
|
this.renderContent = () => {
|
|
20
20
|
return (h("div", { class: "content", ref: (el) => this.contentElement = el },
|
|
21
|
-
this.content,
|
|
21
|
+
translateMulti(this.content),
|
|
22
22
|
h("slot", null)));
|
|
23
23
|
};
|
|
24
24
|
this.toggleTooltip = (isEnabled) => {
|