@yoobic/yobi 8.3.0-45 → 8.3.0-48
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/design-system.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/yoo-card-feed.cjs.entry.js +2 -2
- package/dist/cjs/yoo-detail-bar.cjs.entry.js +1 -1
- package/dist/cjs/yoo-form-dynamic.cjs.entry.js +11 -10
- package/dist/cjs/yoo-form-input-container.cjs.entry.js +1 -1
- package/dist/cjs/yoo-form-swipe-cards.cjs.entry.js +199 -135
- package/dist/cjs/yoo-form-todo-task-list.cjs.entry.js +1 -2
- package/dist/cjs/yoo-login.cjs.entry.js +54 -63
- package/dist/collection/components/form/form-dynamic/form-dynamic.js +11 -10
- package/dist/collection/components/form/form-input-container/form-input-container.css +7 -0
- package/dist/collection/components/form/form-swipe-cards/form-swipe-cards.css +169 -179
- package/dist/collection/components/form/form-swipe-cards/form-swipe-cards.js +233 -169
- package/dist/collection/components/form/form-todo-task-list/form-todo-task-list.js +1 -2
- package/dist/collection/feature-communicate/feed/card-feed/components/sub-cards.js +2 -2
- package/dist/collection/feature-operate/campaign/detail-bar/detail-bar.js +3 -3
- package/dist/collection/feature-platform/login/login/login.css +119 -46
- package/dist/collection/feature-platform/login/login/login.js +25 -30
- package/dist/collection/feature-platform/login/login/parts/Header.js +15 -16
- package/dist/collection/feature-platform/login/login/parts/LoginForm.js +15 -18
- package/dist/collection/feature-platform/login/login/parts/LoginOptions.js +2 -2
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/design-system/yoo-card-feed.entry.js +3 -3
- package/dist/design-system/yoo-detail-bar.entry.js +1 -1
- package/dist/design-system/yoo-form-dynamic.entry.js +11 -10
- package/dist/design-system/yoo-form-input-container.entry.js +1 -1
- package/dist/design-system/yoo-form-swipe-cards.entry.js +201 -137
- package/dist/design-system/yoo-form-todo-task-list.entry.js +1 -2
- package/dist/design-system/yoo-login.entry.js +55 -64
- package/dist/esm/design-system.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/yoo-card-feed.entry.js +3 -3
- package/dist/esm/yoo-detail-bar.entry.js +1 -1
- package/dist/esm/yoo-form-dynamic.entry.js +11 -10
- package/dist/esm/yoo-form-input-container.entry.js +1 -1
- package/dist/esm/yoo-form-swipe-cards.entry.js +201 -137
- package/dist/esm/yoo-form-todo-task-list.entry.js +1 -2
- package/dist/esm/yoo-login.entry.js +55 -64
- package/dist/types/components/form/form-swipe-cards/form-swipe-cards.d.ts +20 -13
- package/dist/types/feature-platform/login/login/parts/LoginForm.d.ts +0 -1
- package/dist/types/feature-platform/login/login/parts/LoginOptions.d.ts +0 -1
- package/dist/types/home/runner/work/yoobic-ng-6/yoobic-ng-6/design-system/stencil/.stencil/shared/interfaces/src/entities/form-field/form-field.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -92,14 +92,14 @@ const CardEvent = ({ configs }) => {
|
|
|
92
92
|
index.h("span", { class: "heading" },
|
|
93
93
|
index.h("yoo-icon", { size: "small", color: "text-color", name: isPublic ? 'feed' : 'email' }),
|
|
94
94
|
overlays.translate(`${isPublic ? 'PUBLICEVENT' : 'PRIVATEEVENT'}`)),
|
|
95
|
-
index.h("span", { class: "title" }, configs.title),
|
|
95
|
+
index.h("span", { class: "title" }, overlays.translateMulti(configs.title)),
|
|
96
96
|
index.h("span", { class: "date dark" }, `${overlays.dateFormat(startDate, format)}${!isSameDay || !configs.allDay ? (` ${overlays.translate('YOOBICTO').toLowerCase()} ${overlays.dateFormat(endDate, endformat)}`) : ''}`),
|
|
97
97
|
configs.location && (index.h("div", { class: "preview-container" },
|
|
98
98
|
index.h("yoo-avatar", { imgSrc: configs.location.imageData, iconText: configs.location.title, size: "extra-small" }),
|
|
99
99
|
index.h("span", null, configs.location.title))),
|
|
100
100
|
configs.address && index.h("span", { class: "address" }, configs.address),
|
|
101
101
|
configs.virtualRoomUrl && index.h("yoo-truncate", { class: "url", innerHTML: overlays.replaceAllLinks(configs.virtualRoomUrl) }),
|
|
102
|
-
configs.description && index.h("yoo-truncate", { class: "card-feeds", maxLength: 10, byWords: true, showEllipsisButton: true, content: overlays.replaceAllLinks(configs.description) }),
|
|
102
|
+
configs.description && index.h("yoo-truncate", { class: "card-feeds", maxLength: 10, byWords: true, showEllipsisButton: true, content: overlays.replaceAllLinks(overlays.translateMulti(configs.description)) }),
|
|
103
103
|
((_a = configs.tags) === null || _a === void 0 ? void 0 : _a.length) > 0 && (index.h("div", { class: "feed-hashtags" }, configs.tags.map((a) => (a === null || a === void 0 ? void 0 : a.toLowerCase) && index.h("span", { class: "hashtag", innerHTML: `#${overlays.translateMulti(a.toUpperCase()).toLowerCase()} ` })))),
|
|
104
104
|
configs.type && index.h("span", { class: "dark flex" },
|
|
105
105
|
`${overlays.translate('YOOBICCATEGORY')}: `,
|
|
@@ -124,7 +124,7 @@ const YooDetailBarComponent = class {
|
|
|
124
124
|
const havePoints = !!this.points && !!(this.points > 0);
|
|
125
125
|
const COMPETENCY_MAX_LENGTH = 40;
|
|
126
126
|
const translatedCompetencyTitle = overlays.translateMulti((_a = this.competency) === null || _a === void 0 ? void 0 : _a.title);
|
|
127
|
-
return (index.h("div", { class: "section-container" }, index.h("div", { class: "section-title" }, overlays.translate('YOOBICINFO')), this.image && (index.h("div", { class: "sub-section" }, index.h("yoo-img", { class: "course", src: this.image }))), this.description && this.renderTruncateContent('DESCRIPTION', this.description), this.status && (index.h("div", { class: "sub-section" }, index.h("div", { class: "section-subtitle" }, overlays.translate('STATUS'), ":"), index.h("yoo-tag", { color: "text-color-10" }, this.status))), this.renderContent('ACTIVE', lodash.isBoolean(this.isActive) ? (this.isActive ? '
|
|
127
|
+
return (index.h("div", { class: "section-container" }, index.h("div", { class: "section-title" }, overlays.translate('YOOBICINFO')), this.image && (index.h("div", { class: "sub-section" }, index.h("yoo-img", { class: "course", src: this.image }))), this.description && this.renderTruncateContent('DESCRIPTION', this.description), this.status && (index.h("div", { class: "sub-section" }, index.h("div", { class: "section-subtitle" }, overlays.translate('STATUS'), ":"), index.h("yoo-tag", { color: "text-color-10" }, this.status))), this.renderContent('ACTIVE', lodash.isBoolean(this.isActive) ? (this.isActive ? 'YOOBICYES' : 'YOOBICNO') : '-'), this.period && this.period !== '-' && this.renderContent('PERIOD', this.period), this.isFeatured !== null && this.renderContent('FEATUREDCOURSE', this.isFeatured ? 'YOOBICYES' : 'YOOBICNO'), this.progressiveLessons != null && this.renderContent('PROGRESSIVELESSONS', this.progressiveLessons ? 'YOOBICYES' : 'YOOBICNO'), this.category && this.renderContent('CATEGORY', this.category), havePoints &&
|
|
128
128
|
this.renderContent('POINTS', index.h("yoo-tag", { color: "app-color" }, index.h("yoo-icon", { slot: "start", size: "small", name: "star" }), this.points)), this.tags && this.getTags(), this.competency &&
|
|
129
129
|
this.renderContent('COMPETENCY', index.h("yoo-tag", { class: "competency", color: "stable-alt-80", size: "small" }, index.h("yoo-icon", { slot: "start", size: "small", color: "dark", name: (this.competency.icon || 'medal') }), translatedCompetencyTitle.length > COMPETENCY_MAX_LENGTH ? (index.h("yoo-tooltip", { content: translatedCompetencyTitle }, translatedCompetencyTitle)) : translatedCompetencyTitle)), (this.assignedUsers || lodash.isNumber(this.nbAssignedUsers)) && this.renderContent('USERSASSIGNED', (this.assignedUsers ? (this.assignedUsers.length) : this.nbAssignedUsers).toString()), this.renderLanguage(), !this.hideTranslateButton && (index.h("yoo-button", { color: "light", size: "small", onClick: () => this.onTranslate() }, overlays.translate('GOOGLETRANSLATE'), index.h("yoo-icon", { slot: "start", name: "translate", size: "small" })))));
|
|
130
130
|
}
|
|
@@ -3184,7 +3184,7 @@ const YooFormDynamicComponent = class {
|
|
|
3184
3184
|
this.openPreview.emit('');
|
|
3185
3185
|
}
|
|
3186
3186
|
renderInput({ field, data, slideIndex, slideItems, inputIndex, readonly, cssClass, isHistory, previousField, slots }) {
|
|
3187
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
3187
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
3188
3188
|
const fieldState = getFieldState(field, this.fieldsState);
|
|
3189
3189
|
const required = formHelpers.isRequired(field, this.currentData, this.currentDataFlatten, fieldState.visible, this.suffix, this.session);
|
|
3190
3190
|
const disabled = formHelpers.isDisabled(field, this.currentData, this.currentDataFlatten, this.suffix, this.session);
|
|
@@ -3208,6 +3208,7 @@ const YooFormDynamicComponent = class {
|
|
|
3208
3208
|
readonly,
|
|
3209
3209
|
required,
|
|
3210
3210
|
disabled,
|
|
3211
|
+
shuffled: field.shuffled,
|
|
3211
3212
|
clearable: !disabled,
|
|
3212
3213
|
name: field.name,
|
|
3213
3214
|
key: field.name,
|
|
@@ -3808,7 +3809,7 @@ const YooFormDynamicComponent = class {
|
|
|
3808
3809
|
multiple,
|
|
3809
3810
|
allowOther: field.allowOther,
|
|
3810
3811
|
useTranslate: field.translate,
|
|
3811
|
-
shuffled: this.formType === 'lesson',
|
|
3812
|
+
shuffled: (_k = field.shuffled) !== null && _k !== void 0 ? _k : this.formType === 'lesson',
|
|
3812
3813
|
answer: field.answer,
|
|
3813
3814
|
class: field.extraClass,
|
|
3814
3815
|
description: field.description,
|
|
@@ -3818,7 +3819,7 @@ const YooFormDynamicComponent = class {
|
|
|
3818
3819
|
}
|
|
3819
3820
|
case index.FormFieldType.selectchat: {
|
|
3820
3821
|
const multiple = field.multiple;
|
|
3821
|
-
const values = field.values || ((
|
|
3822
|
+
const values = field.values || ((_l = field.opValues) === null || _l === void 0 ? void 0 : _l.find((opValue) => opValue));
|
|
3822
3823
|
TagType = 'yoo-form-choice-chat';
|
|
3823
3824
|
attrs = {
|
|
3824
3825
|
...attrs,
|
|
@@ -3839,7 +3840,7 @@ const YooFormDynamicComponent = class {
|
|
|
3839
3840
|
}
|
|
3840
3841
|
case index.FormFieldType.selectimage: {
|
|
3841
3842
|
const multiple = field.multiple;
|
|
3842
|
-
const values = field.values || ((
|
|
3843
|
+
const values = field.values || ((_m = field.opValues) === null || _m === void 0 ? void 0 : _m.find((opValue) => opValue));
|
|
3843
3844
|
TagType = 'yoo-form-choice-image';
|
|
3844
3845
|
attrs = {
|
|
3845
3846
|
...attrs,
|
|
@@ -3859,7 +3860,7 @@ const YooFormDynamicComponent = class {
|
|
|
3859
3860
|
}
|
|
3860
3861
|
case index.FormFieldType.selectcard: {
|
|
3861
3862
|
const multiple = field.multiple;
|
|
3862
|
-
const values = field.values || ((
|
|
3863
|
+
const values = field.values || ((_o = field.opValues) === null || _o === void 0 ? void 0 : _o.find((opValue) => opValue));
|
|
3863
3864
|
TagType = 'yoo-form-choice-card';
|
|
3864
3865
|
attrs = {
|
|
3865
3866
|
...attrs,
|
|
@@ -3937,7 +3938,7 @@ const YooFormDynamicComponent = class {
|
|
|
3937
3938
|
collectionName: field.collectionName,
|
|
3938
3939
|
entityType: field.entityType,
|
|
3939
3940
|
iconPrefix: field.iconPrefix,
|
|
3940
|
-
descriptionTemplate: data.isUnitCurrency && ((
|
|
3941
|
+
descriptionTemplate: data.isUnitCurrency && ((_p = data.currency) === null || _p === void 0 ? void 0 : _p.symbol) ? `${data.currency.symbol} {{text}}` : null,
|
|
3941
3942
|
max: field.max,
|
|
3942
3943
|
queryFields: field.queryFields,
|
|
3943
3944
|
model: field.model,
|
|
@@ -3946,7 +3947,7 @@ const YooFormDynamicComponent = class {
|
|
|
3946
3947
|
onFetchCustomData: (ev) => this.onFetchCustomData(field, ev),
|
|
3947
3948
|
onFetchData: (ev) => this.onFetchData(field, ev)
|
|
3948
3949
|
};
|
|
3949
|
-
if (attrs.validators && ((
|
|
3950
|
+
if (attrs.validators && ((_q = config === null || config === void 0 ? void 0 : config.validators) === null || _q === void 0 ? void 0 : _q.length)) {
|
|
3950
3951
|
attrs.validators.push(...config.validators);
|
|
3951
3952
|
}
|
|
3952
3953
|
break;
|
|
@@ -4080,7 +4081,7 @@ const YooFormDynamicComponent = class {
|
|
|
4080
4081
|
logo: field.logo,
|
|
4081
4082
|
value: value || field.value,
|
|
4082
4083
|
description: field.description,
|
|
4083
|
-
whiteLabel: (
|
|
4084
|
+
whiteLabel: (_r = overlays.getSession().tenant) === null || _r === void 0 ? void 0 : _r.waitlistWhitelabel,
|
|
4084
4085
|
showIllustration: field.showIllustration,
|
|
4085
4086
|
showShareLink: field.showShareLink,
|
|
4086
4087
|
showDownload: field.showDownload
|
|
@@ -4371,7 +4372,7 @@ const YooFormDynamicComponent = class {
|
|
|
4371
4372
|
if (field.collapsible) {
|
|
4372
4373
|
return (index$1.h("yoo-collapsible", { iconSize: "medium", class: "secondary", slotHeader: true }, index$1.h("span", { slot: "title" }, field.title), index$1.h("span", { innerHTML: markdown || value })));
|
|
4373
4374
|
}
|
|
4374
|
-
if (((
|
|
4375
|
+
if (((_s = field.valuesIcon) === null || _s === void 0 ? void 0 : _s.length) > 0) {
|
|
4375
4376
|
return [
|
|
4376
4377
|
markdown && index$1.h("div", { class: "info-header" }, markdown),
|
|
4377
4378
|
field.valuesIcon.map((item) => {
|
|
@@ -4421,7 +4422,7 @@ const YooFormDynamicComponent = class {
|
|
|
4421
4422
|
categories: field.categories,
|
|
4422
4423
|
values: field.values,
|
|
4423
4424
|
images: field.images,
|
|
4424
|
-
answer: field.complexAnswer,
|
|
4425
|
+
answer: field.answer || field.complexAnswer,
|
|
4425
4426
|
isVisible: this.isCurrentSlide(slideIndex),
|
|
4426
4427
|
numberSteps: this.steps && this.steps.length,
|
|
4427
4428
|
mode: field.swipeMode,
|
|
@@ -12,7 +12,7 @@ const overlays = require('./overlays-046b4f60.js');
|
|
|
12
12
|
const localForage = require('./localForage-e9da21cc.js');
|
|
13
13
|
require('./_commonjsHelpers-94df2ea7.js');
|
|
14
14
|
|
|
15
|
-
const formInputContainerCss = "/*!\n * froala_editor v4.0.13 (https://www.froala.com/wysiwyg-editor)\n * License https://froala.com/wysiwyg-editor/terms/\n * Copyright 2014-2022 Froala Labs\n */.fr-clearfix::after{clear:both;display:block;content:\"\";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-view img.fr-rounded,.fr-view .fr-img-caption.fr-rounded img{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view img.fr-shadow,.fr-view .fr-img-caption.fr-shadow img{-webkit-box-shadow:10px 10px 5px 0px #cccccc;-moz-box-shadow:10px 10px 5px 0px #cccccc;box-shadow:10px 10px 5px 0px #cccccc}.fr-view img.fr-bordered,.fr-view .fr-img-caption.fr-bordered img{border:solid 5px #CCC}.fr-view img.fr-bordered{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-view .fr-img-caption.fr-bordered img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-view{word-wrap:break-word}.fr-view span[style~=\"color:\"] a{color:inherit}.fr-view strong{font-weight:700}.fr-view table[border='0'] td:not([class]),.fr-view table[border='0'] th:not([class]),.fr-view table[border='0'] td[class=\"\"],.fr-view table[border='0'] th[class=\"\"]{border-width:0px}.fr-view table{border:none;border-collapse:collapse;empty-cells:show;max-width:100%}.fr-view table td{min-width:5px}.fr-view table.fr-dashed-borders td,.fr-view table.fr-dashed-borders th{border-style:dashed}.fr-view table.fr-alternate-rows tbody tr:nth-child(2n){background:whitesmoke}.fr-view table td,.fr-view table th{border:1px solid #DDD}.fr-view table td:empty,.fr-view table th:empty{height:20px}.fr-view table td.fr-highlighted,.fr-view table th.fr-highlighted{border:1px double red}.fr-view table td.fr-thick,.fr-view table th.fr-thick{border-width:2px}.fr-view table th{background:#ececec}.fr-view table tfoot td{background:#ececec}.fr-view hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-column-break-after:always;-moz-column-break-after:always;break-after:always;page-break-after:always}.fr-view .fr-file{position:relative}.fr-view .fr-file::after{position:relative;content:\"\\1F4CE\";font-weight:normal}.fr-view pre{white-space:pre-wrap;word-wrap:break-word;overflow:visible}.fr-view[dir=\"rtl\"] blockquote{border-left:none;border-right:solid 2px #5E35B1;margin-right:0;padding-right:5px;padding-left:0}.fr-view[dir=\"rtl\"] blockquote blockquote{border-color:#00BCD4}.fr-view[dir=\"rtl\"] blockquote blockquote blockquote{border-color:#43A047}.fr-view blockquote{border-left:solid 2px #5E35B1;margin-left:0;padding-left:5px;color:#5E35B1}.fr-view blockquote blockquote{border-color:#00BCD4;color:#00BCD4}.fr-view blockquote blockquote blockquote{border-color:#43A047;color:#43A047}.fr-view span.fr-emoticon{font-weight:normal;font-family:\"Apple Color Emoji\",\"Segoe UI Emoji\",\"NotoColorEmoji\",\"Segoe UI Symbol\",\"Android Emoji\",\"EmojiSymbols\";display:inline;line-height:0}.fr-view span.fr-emoticon.fr-emoticon-img{background-repeat:no-repeat !important;font-size:inherit;height:1em;width:1em;min-height:20px;min-width:20px;display:inline-block;margin:-.1em .1em .1em;line-height:1;vertical-align:middle}.fr-view .fr-text-gray{color:#AAA !important}.fr-view .fr-text-bordered{border-top:solid 1px #222;border-bottom:solid 1px #222;padding:10px 0}.fr-view .fr-text-spaced{letter-spacing:1px}.fr-view .fr-text-uppercase{text-transform:uppercase}.fr-view .fr-class-highlighted{background-color:#ffff00}.fr-view .fr-class-code{border-color:#cccccc;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#f5f5f5;padding:10px;font-family:\"Courier New\", Courier, monospace}.fr-view .fr-class-transparency{opacity:0.5}.fr-view img{position:relative;max-width:100%}.fr-view img.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view img.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view img.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view img.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view img.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view img.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption{position:relative;max-width:100%}.fr-view span.fr-img-caption.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view span.fr-img-caption.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view span.fr-img-caption.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view span.fr-img-caption.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view span.fr-img-caption.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view .fr-video{text-align:center;position:relative}.fr-view .fr-video.fr-rv{padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.fr-view .fr-video.fr-rv>iframe,.fr-view .fr-video.fr-rv object,.fr-view .fr-video.fr-rv embed{position:absolute !important;top:0;left:0;width:100%;height:100%}.fr-view .fr-video>*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;max-width:100%;border:none}.fr-view .fr-video.fr-dvb{display:block;clear:both}.fr-view .fr-video.fr-dvb.fr-fvl{text-align:left}.fr-view .fr-video.fr-dvb.fr-fvr{text-align:right}.fr-view .fr-video.fr-dvi{display:inline-block}.fr-view .fr-video.fr-dvi.fr-fvl{float:left}.fr-view .fr-video.fr-dvi.fr-fvr{float:right}.fr-view a.fr-strong{font-weight:700}.fr-view a.fr-green{color:green}.fr-view .fr-img-caption{text-align:center}.fr-view .fr-img-caption .fr-img-wrap{padding:0;margin:auto;text-align:center;width:100%}.fr-view .fr-img-caption .fr-img-wrap a{display:block}.fr-view .fr-img-caption .fr-img-wrap img{display:block;margin:auto;width:100%}.fr-view .fr-img-caption .fr-img-wrap>span{margin:auto;display:block;padding:5px 5px 10px;font-size:14px;font-weight:initial;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-opacity:0.9;-moz-opacity:0.9;opacity:0.9;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";width:100%;text-align:center}.fr-view button.fr-rounded,.fr-view input.fr-rounded,.fr-view textarea.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view button.fr-large,.fr-view input.fr-large,.fr-view textarea.fr-large{font-size:24px}a.fr-view.fr-strong{font-weight:700}a.fr-view.fr-green{color:green}img.fr-view{position:relative;max-width:100%}img.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}img.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}img.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}img.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}img.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}img.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view{position:relative;max-width:100%}span.fr-img-caption.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}span.fr-img-caption.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}span.fr-img-caption.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}span.fr-img-caption.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}span.fr-img-caption.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}:host(.mission){background:var(--stable-10, rgba(173, 173, 173, 0.1))}:host(.mission.invalid),:host(.mission.invalid.readonly){background:var(--danger-10, rgba(212, 67, 51, 0.1))}:host(.mission.readonly){margin-top:var(--spacing-08, 0.5rem);margin-bottom:var(--spacing-08, 0.5rem);padding:var(--spacing-08, 0.5rem);border-radius:var(--spacing-08, 0.5rem)}:host(.mission.readonly) .top-container .label .field-title-name,:host(.mission.readonly) .top-container .label .field-description,:host(.mission.readonly) .top-container .description .field-title-name,:host(.mission.readonly) .top-container .description .field-description{font-weight:bold;text-transform:uppercase}:host{--content-padding-top:var(--spacing-08, 0.5rem);--content-padding-bottom:initial;--field-title-color:var(--dark, #000000);--font-size-description:var(--font-size-28, 1.75rem);--field-title-font-weight:var(--font-weight-400, 400);--field-title-text-transform:unset;--sub-description-text-color:var(--text-color, #807f83);--sub-description-font-size:var(--font-size-16, 1rem);--right-side-margin:auto;display:block}:host yoo-tag.original-invalid,:host yoo-tag.original-modified,:host yoo-tag.not-compliant{--padding:var(--spacing-04, 0.25rem);margin-bottom:var(--spacing-08, 0.5rem);font-weight:normal;border-radius:var(--border-radius-04, 0.25rem)}:host .optional{margin-left:var(--spacing-08, 0.5rem) !important;color:var(--stable, #adadad);white-space:nowrap}:host .full-width{width:100%}:host .user{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-gap:var(--spacing-04, 0.25rem);-ms-flex-align:start;align-items:flex-start;width:100%}:host .user .label{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host .slide-title{width:100%;margin-top:var(--spacing-08, 0.5rem);margin-bottom:var(--spacing-08, 0.5rem);font-weight:bold;text-align:left}:host .description .label,:host .description .optional,:host .top-container .label,:host .top-container .optional{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;font-weight:var(--font-weight-400, 400);line-height:1.5;text-align:left;word-break:break-word;overflow-wrap:break-word}:host .description .label .required,:host .description .optional .required,:host .top-container .label .required,:host .top-container .optional .required{height:22px;margin-right:0.25rem;color:var(--danger, #d44333);font-weight:var(--font-weight-700, 700);font-size:var(--icon-size-02, 1.5rem);font-variant-caps:normal}:host .description .label .label-required,:host .description .optional .label-required,:host .top-container .label .label-required,:host .top-container .optional .label-required{margin-left:0.25rem;color:var(--danger, #d44333)}:host .description .label .right-side,:host .description .optional .right-side,:host .top-container .label .right-side,:host .top-container .optional .right-side{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:var(--right-side-margin);color:var(--stable, #adadad)}:host .description .label .right-side yoo-icon.recent,:host .description .optional .right-side yoo-icon.recent,:host .top-container .label .right-side yoo-icon.recent,:host .top-container .optional .right-side yoo-icon.recent{fill:var(--text-color, #807f83)}:host .description .label.readonly,:host .description .optional.readonly,:host .top-container .label.readonly,:host .top-container .optional.readonly{color:var(--text-color, #807f83);letter-spacing:0;text-transform:initial;font-variant-caps:initial}:host .description .label.invalid .field-title-name,:host .description .optional.invalid .field-title-name,:host .top-container .label.invalid .field-title-name,:host .top-container .optional.invalid .field-title-name{color:var(--danger, #d44333)}:host .description .label.center,:host .description .optional.center,:host .top-container .label.center,:host .top-container .optional.center{text-align:center}:host .description .label.center span,:host .description .optional.center span,:host .top-container .label.center span,:host .top-container .optional.center span{margin:auto}:host .description .field-heading:not(.center),:host .top-container .field-heading:not(.center){font-size:var(--font-size-14, 0.875rem)}:host .description .field-heading:not(.center) .field-title-name,:host .top-container .field-heading:not(.center) .field-title-name{color:var(--field-title-color)}:host .description .field-heading:not(.center).password-title .field-title-name,:host .top-container .field-heading:not(.center).password-title .field-title-name{font-weight:var(--font-weight-400, 400)}:host .description .description,:host .top-container .description{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;font-size:var(--font-size-16, 1rem)}:host .description .description span p,:host .top-container .description span p{margin-top:0;margin-bottom:var(--spacing-08, 0.5rem)}:host .description .description.invalid,:host .top-container .description.invalid{color:var(--danger, #d44333)}:host .description .description.slotted,:host .top-container .description.slotted{padding-right:var(--spacing-04, 0.25rem)}:host .description .description .required,:host .top-container .description .required{height:22px;height:var(--icon-size-02, 1.5rem);margin-right:0.25rem;color:var(--danger, #d44333);font-weight:var(--font-weight-700, 700);font-size:var(--icon-size-02, 1.5rem);font-variant-caps:normal}:host .description .description.sub-description,:host .top-container .description.sub-description{color:var(--sub-description-text-color);font-size:var(--sub-description-font-size);text-transform:var(--field-title-text-transform)}:host .description .media-description,:host .top-container .media-description{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}:host .description .media-description>span:not(.optional),:host .top-container .media-description>span:not(.optional){width:100%}:host .description .media-description .extra-options-container,:host .top-container .media-description .extra-options-container{display:-ms-flexbox;display:flex}:host .description .media-description .extra-options-container yoo-icon.more,:host .top-container .media-description .extra-options-container yoo-icon.more{margin-left:auto}:host .description .media-description .more,:host .top-container .media-description .more{padding-left:var(--spacing-16, 1rem)}:host .description .field-title-name,:host .top-container .field-title-name{color:var(--field-title-color);font-weight:var(--field-title-font-weight);text-transform:var(--field-title-text-transform)}:host .hint-container{margin-top:0.25rem;margin-bottom:0.25rem;color:var(--text-color, #807f83);font-size:var(--font-size-14, 0.875rem);line-height:1.33;text-align:left}:host .footer-container{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:var(--spacing-08, 0.5rem);padding-top:var(--spacing-16, 1rem);padding-bottom:0;padding-left:0.0625rem;color:var(--text-color, #807f83);font-size:var(--font-size-14, 0.875rem)}:host .footer-container.validation{margin-top:var(--spacing-08, 0.5rem);border-top:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host .footer-container.validation.mobile{-ms-flex-direction:column;flex-direction:column;grid-gap:var(--spacing-16, 1rem);-ms-flex-align:start;align-items:flex-start}:host .footer-container.validation.mobile yoo-form-input-comments{width:100%}:host .footer-container .comment-container,:host .footer-container .feed-container,:host .footer-container .newtask{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:22px}:host .footer-container yoo-form-task{padding-left:var(--spacing-08, 0.5rem)}:host .footer-container yoo-icon{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;margin-right:var(--spacing-08, 0.5rem)}:host .footer-container .newtask{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:row;flex-direction:row;font-size:var(--font-size-16, 1rem)}:host .footer-container .newtask .icon{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-right:0.125rem}:host .footer-container .newtask .icon yoo-icon{margin-right:var(--spacing-08, 0.5rem)}:host .content-container{position:relative;max-width:var(--content-max-width);padding-top:var(--content-padding-top);padding-bottom:var(--content-padding-bottom)}:host .content-container.sc-yoo-form-input-container{min-height:45px}:host .content-container.readonly{padding:0;overflow:hidden}:host .content-container yoo-form-toggle:not(.line){position:absolute;top:auto;right:0;bottom:0.25rem;left:auto}:host .content-container yoo-form-checkbox:not(.line){position:absolute;top:auto;right:0;bottom:0.25rem;left:auto}:host .content-container yoo-form-checkbox[type=normal]{position:absolute;top:-1.3rem;right:0;bottom:auto;left:auto}:host .content-container yoo-form-toggle[type=normal]{position:absolute;top:-1rem;right:0;bottom:auto;left:auto}:host .content-container .removable{position:absolute;top:0.3rem;right:1.5rem;display:none;color:var(--danger, #d44333)}:host .content-container:hover .removable{display:block}:host yoo-form-input-comments.readonly{margin-top:var(--spacing-16, 1rem)}:host yoo-form-input-comments.readonly.with-border-bottom{padding-bottom:var(--spacing-16, 1rem);border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt-40, rgba(208, 208, 208, 0.4))}:host .instructions{display:block;color:var(--stable, #adadad);font-size:var(--font-size-16, 1rem);letter-spacing:normal}:host .instructions.under-title{margin:0 auto var(--spacing-32, 2rem)}:host .instructions.success{color:var(--success, #3aa76d)}:host .instructions.app-color{color:var(--app-color, #5a30f4)}:host .comment-container{margin-right:var(--spacing-16, 1rem)}:host(.line){display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-bottom:var(--spacing-08, 0.5rem);border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host(.line) .top-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}:host(.line) .top-container .label,:host(.line) .top-container .description{-ms-flex:1;flex:1;-ms-flex-item-align:center;align-self:center;margin-left:var(--spacing-08, 0.5rem)}:host(.line) .top-container .label{color:inherit;font-variant-caps:normal}:host(.line) .top-container .content-container{-ms-flex:0;flex:0;padding-top:0}:host(.line) .top-container .content-container yoo-form-checkbox{--margin-top-container:-0.5rem}:host(.line) .top-container .content-container.full-width{-ms-flex:1;flex:1}:host(.line) .top-container slot{-ms-flex:1;flex:1}:host(.no-padding-top) .content-container{padding-top:0 !important}:host(.line.reversed) .top-container{-ms-flex-direction:row-reverse;flex-direction:row-reverse}:host(.line.noborder){border-bottom:none}:host(.readonly){border:none}:host(.readonly) .top-container .field-title-name{color:var(--field-title-color)}:host(.readonly) .top-container.column{-ms-flex-direction:column;flex-direction:column}:host(.readonly) .top-container.column .description{-ms-flex-item-align:start;align-self:flex-start;margin-bottom:var(--spacing-16, 1rem);margin-left:0;color:var(--text-color, #807f83)}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-input),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-image-tagging),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-ranking),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-autocomplete){display:block;margin-top:var(--spacing-08, 0.5rem)}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-input).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-image-tagging).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-ranking).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-autocomplete).inline{margin-top:0}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-categorize-words),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-connect),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-swipe-cards){display:block;margin-top:var(--spacing-16, 1rem)}:host(.readonly.custom-width.inline-row:not(.label-top-aligned)) .top-container{-ms-flex-pack:center;justify-content:center}:host(.readonly.inline-row:not(.label-top-aligned)) ::slotted(yoo-form-autocomplete){margin-top:0}:host(:not(.lesson).readonly){--field-title-font-weight:var(--font-weight-700, 700)}:host(:not(.lesson).readonly) .top-container .label.readonly{color:var(--dark, #000000);font-weight:var(--font-weight-700, 700)}:host(.form-readonly){padding:var(--spacing-08, 0.5rem) 0}:host(.form-readonly[size=small]){padding:0}:host(.form-readonly.quickview) .description .label .right-side,:host(.form-readonly.quickview) .description .optional .right-side,:host(.form-readonly.quickview) .top-container .label .right-side,:host(.form-readonly.quickview) .top-container .optional .right-side{color:var(--dark, #000000)}:host(.form-readonly.quickview) .description .label .right-side yoo-icon.recent,:host(.form-readonly.quickview) .description .optional .right-side yoo-icon.recent,:host(.form-readonly.quickview) .top-container .label .right-side yoo-icon.recent,:host(.form-readonly.quickview) .top-container .optional .right-side yoo-icon.recent{fill:var(--dark, #000000)}:host(.form-readonly.quickview) .description .label.readonly,:host(.form-readonly.quickview) .description .optional.readonly,:host(.form-readonly.quickview) .top-container .label.readonly,:host(.form-readonly.quickview) .top-container .optional.readonly{color:var(--dark, #000000)}:host(.form-readonly.quickview) .description .field-heading:not(.center) .field-title-name,:host(.form-readonly.quickview) .top-container .field-heading:not(.center) .field-title-name{color:var(--field-title-color)}:host(.form-readonly.quickview) .description .field-title-name,:host(.form-readonly.quickview) .top-container .field-title-name{color:var(--field-title-color)}:host(:not(.lesson)) .description span p{margin-bottom:0}:host(:not(.lesson)) p{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:0}:host(.lesson){--content-padding-bottom:var(--spacing-16, 1rem);--font-size-title-name:var(--font-size-28, 1.75rem);--font-weight-title-name:var(--font-weight-700, 700);--text-tranform-title-name:none}:host(.lesson) .top-container .label{margin-bottom:var(--spacing-08, 0.5rem)}:host(.lesson) .top-container .content-container{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}:host(.lesson) .top-container .description{margin-bottom:var(--spacing-08, 0.5rem);font-size:var(--font-size-description)}:host(.lesson) .top-container .media-description{font-size:var(--font-size-16, 1rem)}:host(.lesson) .title.within-chat,:host(.lesson) .field-title-name{color:var(--field-title-color);font-weight:var(--font-weight-title-name);font-size:var(--font-size-title-name);text-transform:var(--text-tranform-title-name)}:host(.textsequence) .top-container{height:100%}:host(.textsequence) .top-container .content-container{height:100%}:host(.textsequence) .top-container .content-container ::slotted(yoo-text-sequence){max-width:40rem;height:100%;margin:0 auto}:host(.mobile) .content-container .removable{display:block}:host(.web.lesson:not(.lesson-live-preview)){display:-ms-flexbox;display:flex;padding:0 !important}:host(.web.lesson:not(.lesson-live-preview)) .top-container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:var(--spacing-08, 0.5rem);-webkit-box-sizing:border-box;box-sizing:border-box;width:calc(100% - 2rem);margin:0 auto;padding:var(--spacing-32, 2rem) !important;padding-top:var(--spacing-16, 1rem) !important;overflow:auto;background-color:var(--light, #ffffff);border-radius:var(--border-radius-08, 0.5rem);-webkit-box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));-webkit-transition:all 0.5s ease-in-out 0s;transition:all 0.5s ease-in-out 0s}@media print{:host .top-container hr,:host .top-container .description,:host .top-container .label{page-break-after:avoid !important}:host .top-container .content-container{page-break-before:avoid !important}}:host(.accent) .hint-container{color:var(--accent-20, rgba(39, 110, 241, 0.2))}:host(.accent) .description{color:var(--accent, #276ef1)}:host(.dark) .hint-container{color:var(--stable-alt, #d0d0d0)}:host(.dark) .description{color:var(--dark, #000000)}:host(.danger) .hint-container{color:var(--danger-20, rgba(212, 67, 51, 0.2))}:host(.danger) .description{color:var(--danger, #d44333)}:host(.success) .hint-container{color:var(--success-20, rgba(58, 167, 109, 0.2))}:host(.success) .description{color:var(--success, #3aa76d)}:host(.app-color) .hint-container{color:var(--app-color-20, rgba(90, 48, 244, 0.2))}:host(.app-color) .description{color:var(--app-color, #5a30f4)}:host(.warning) .hint-container{color:var(--warning-20, rgba(237, 110, 51, 0.2))}:host(.warning) .description{color:var(--warning, #ed6e33)}:host(.info) .hint-container{color:var(--info-20, rgba(216, 76, 150, 0.2))}:host(.info) .description{color:var(--info, #d84c96)}:host(.stable) .hint-container{color:var(--stable, #adadad)}:host(.stable) .description{color:var(--stable, #adadad)}:host(.readonly.web:not(.preview)) .top-container .label>span.field-title-name{white-space:normal}:host(.web:not(.preview)){--label-padding-top:var(--spacing-08, 0.5rem)}:host(.web:not(.preview)) .top-container .label{padding-top:var(--label-padding-top)}:host(.web.operator){display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;height:2rem;padding:0}:host(.web.operator) .top-container .content-container{padding:0 0 var(--spacing-04, 0.25rem) 0}.fr-view h1,.fr-view h2,.fr-view h3,.fr-view h4,.fr-view h5,.fr-view h6{margin:0;padding:0;border:0}:host(.grid),:host(.audience){position:relative;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}:host(.grid) .top-container,:host(.audience) .top-container{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;overflow:hidden}:host(.grid) .top-container .content-container,:host(.audience) .top-container .content-container{-ms-flex:1;flex:1;margin:0;margin-right:var(--spacing-04, 0.25rem);margin-left:var(--spacing-04, 0.25rem)}:host(.openinghours) .content-container.readonly{overflow:visible}:host(.lesson-detail.readonly) .top-container .label.readonly{padding-top:unset;font-size:var(--font-size-16, 1rem);text-transform:unset}:host([animated].number.lesson) .description,:host([animated].number.lesson) .label,:host([animated].number.lesson) .instructions,:host([animated].number.lesson) .content-container{-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:var(--ease-out-quad);animation-timing-function:var(--ease-out-quad);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}:host([animated].number.lesson) .description,:host([animated].number.lesson) .label{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}:host([animated].number.lesson) .instructions{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse));-webkit-animation-delay:200ms;animation-delay:200ms}:host([animated].number.lesson) .content-container{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width));-webkit-animation-delay:500ms;animation-delay:500ms}:host([animated].mobile.number.lesson) .description,:host([animated].mobile.number.lesson) .label{-webkit-animation-delay:200ms;animation-delay:200ms}:host([animated].mobile.number.lesson) .instructions{-webkit-animation-delay:400ms;animation-delay:400ms}:host([animated].mobile.number.lesson) .content-container{-webkit-animation-delay:700ms;animation-delay:700ms}:host([animated].selectimage.lesson) .description,:host([animated].selectimage.lesson) .label{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse));-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:var(--ease-out-quad);animation-timing-function:var(--ease-out-quad);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes sliding-from-left{from{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes sliding-from-left{from{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes sliding-from-right{from{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes sliding-from-right{from{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width))}to{-webkit-transform:translateX(0);transform:translateX(0)}}:host(.inline-row:not(.label-top-aligned)) .top-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}:host(.inline-row:not(.label-top-aligned)) .top-container .label{width:auto;min-width:5rem;margin-right:var(--spacing-08, 0.5rem)}:host(.inline-row:not(.label-top-aligned)) .top-container .label.readonly{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;padding-top:0}:host(.inline-row:not(.label-top-aligned)) .top-container .content-container{width:100%}:host(.inline-row:not(.label-top-aligned)) .top-container .content-container.readonly{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}:host(.inline-row.label-right-aligned) .top-container .label>span{width:100%;padding-right:var(--spacing-08, 0.5rem);text-align:right}:host(.fast-scoring) .top-container{padding-top:var(--spacing-16, 1rem)}:host([hidden]){display:none}:host(.hotzonecreator) .label,:host(.imagemapcreator) .label{display:none}:host(.confidence) .top-container{height:100%}:host(.confidence) .top-container .label{display:none}:host(.confidence) .top-container .content-container{height:100%;background-color:var(--dark-60, rgba(0, 0, 0, 0.6)) !important;border-radius:var(--border-radius-08, 0.5rem);-webkit-box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1))}:host(.web.lesson:not(.lesson-live-preview).confidence) .top-container{padding:0 !important}:host(.mission-validation) .top-container .label{font-size:var(--font-size-12, 0.75rem);text-transform:uppercase}";
|
|
15
|
+
const formInputContainerCss = "/*!\n * froala_editor v4.0.13 (https://www.froala.com/wysiwyg-editor)\n * License https://froala.com/wysiwyg-editor/terms/\n * Copyright 2014-2022 Froala Labs\n */.fr-clearfix::after{clear:both;display:block;content:\"\";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-view img.fr-rounded,.fr-view .fr-img-caption.fr-rounded img{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view img.fr-shadow,.fr-view .fr-img-caption.fr-shadow img{-webkit-box-shadow:10px 10px 5px 0px #cccccc;-moz-box-shadow:10px 10px 5px 0px #cccccc;box-shadow:10px 10px 5px 0px #cccccc}.fr-view img.fr-bordered,.fr-view .fr-img-caption.fr-bordered img{border:solid 5px #CCC}.fr-view img.fr-bordered{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-view .fr-img-caption.fr-bordered img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-view{word-wrap:break-word}.fr-view span[style~=\"color:\"] a{color:inherit}.fr-view strong{font-weight:700}.fr-view table[border='0'] td:not([class]),.fr-view table[border='0'] th:not([class]),.fr-view table[border='0'] td[class=\"\"],.fr-view table[border='0'] th[class=\"\"]{border-width:0px}.fr-view table{border:none;border-collapse:collapse;empty-cells:show;max-width:100%}.fr-view table td{min-width:5px}.fr-view table.fr-dashed-borders td,.fr-view table.fr-dashed-borders th{border-style:dashed}.fr-view table.fr-alternate-rows tbody tr:nth-child(2n){background:whitesmoke}.fr-view table td,.fr-view table th{border:1px solid #DDD}.fr-view table td:empty,.fr-view table th:empty{height:20px}.fr-view table td.fr-highlighted,.fr-view table th.fr-highlighted{border:1px double red}.fr-view table td.fr-thick,.fr-view table th.fr-thick{border-width:2px}.fr-view table th{background:#ececec}.fr-view table tfoot td{background:#ececec}.fr-view hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-column-break-after:always;-moz-column-break-after:always;break-after:always;page-break-after:always}.fr-view .fr-file{position:relative}.fr-view .fr-file::after{position:relative;content:\"\\1F4CE\";font-weight:normal}.fr-view pre{white-space:pre-wrap;word-wrap:break-word;overflow:visible}.fr-view[dir=\"rtl\"] blockquote{border-left:none;border-right:solid 2px #5E35B1;margin-right:0;padding-right:5px;padding-left:0}.fr-view[dir=\"rtl\"] blockquote blockquote{border-color:#00BCD4}.fr-view[dir=\"rtl\"] blockquote blockquote blockquote{border-color:#43A047}.fr-view blockquote{border-left:solid 2px #5E35B1;margin-left:0;padding-left:5px;color:#5E35B1}.fr-view blockquote blockquote{border-color:#00BCD4;color:#00BCD4}.fr-view blockquote blockquote blockquote{border-color:#43A047;color:#43A047}.fr-view span.fr-emoticon{font-weight:normal;font-family:\"Apple Color Emoji\",\"Segoe UI Emoji\",\"NotoColorEmoji\",\"Segoe UI Symbol\",\"Android Emoji\",\"EmojiSymbols\";display:inline;line-height:0}.fr-view span.fr-emoticon.fr-emoticon-img{background-repeat:no-repeat !important;font-size:inherit;height:1em;width:1em;min-height:20px;min-width:20px;display:inline-block;margin:-.1em .1em .1em;line-height:1;vertical-align:middle}.fr-view .fr-text-gray{color:#AAA !important}.fr-view .fr-text-bordered{border-top:solid 1px #222;border-bottom:solid 1px #222;padding:10px 0}.fr-view .fr-text-spaced{letter-spacing:1px}.fr-view .fr-text-uppercase{text-transform:uppercase}.fr-view .fr-class-highlighted{background-color:#ffff00}.fr-view .fr-class-code{border-color:#cccccc;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#f5f5f5;padding:10px;font-family:\"Courier New\", Courier, monospace}.fr-view .fr-class-transparency{opacity:0.5}.fr-view img{position:relative;max-width:100%}.fr-view img.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view img.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view img.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view img.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view img.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view img.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption{position:relative;max-width:100%}.fr-view span.fr-img-caption.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view span.fr-img-caption.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view span.fr-img-caption.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view span.fr-img-caption.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}.fr-view span.fr-img-caption.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}.fr-view span.fr-img-caption.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}.fr-view .fr-video{text-align:center;position:relative}.fr-view .fr-video.fr-rv{padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.fr-view .fr-video.fr-rv>iframe,.fr-view .fr-video.fr-rv object,.fr-view .fr-video.fr-rv embed{position:absolute !important;top:0;left:0;width:100%;height:100%}.fr-view .fr-video>*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;max-width:100%;border:none}.fr-view .fr-video.fr-dvb{display:block;clear:both}.fr-view .fr-video.fr-dvb.fr-fvl{text-align:left}.fr-view .fr-video.fr-dvb.fr-fvr{text-align:right}.fr-view .fr-video.fr-dvi{display:inline-block}.fr-view .fr-video.fr-dvi.fr-fvl{float:left}.fr-view .fr-video.fr-dvi.fr-fvr{float:right}.fr-view a.fr-strong{font-weight:700}.fr-view a.fr-green{color:green}.fr-view .fr-img-caption{text-align:center}.fr-view .fr-img-caption .fr-img-wrap{padding:0;margin:auto;text-align:center;width:100%}.fr-view .fr-img-caption .fr-img-wrap a{display:block}.fr-view .fr-img-caption .fr-img-wrap img{display:block;margin:auto;width:100%}.fr-view .fr-img-caption .fr-img-wrap>span{margin:auto;display:block;padding:5px 5px 10px;font-size:14px;font-weight:initial;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-opacity:0.9;-moz-opacity:0.9;opacity:0.9;-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";width:100%;text-align:center}.fr-view button.fr-rounded,.fr-view input.fr-rounded,.fr-view textarea.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view button.fr-large,.fr-view input.fr-large,.fr-view textarea.fr-large{font-size:24px}a.fr-view.fr-strong{font-weight:700}a.fr-view.fr-green{color:green}img.fr-view{position:relative;max-width:100%}img.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}img.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}img.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}img.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}img.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}img.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view{position:relative;max-width:100%}span.fr-img-caption.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}span.fr-img-caption.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}span.fr-img-caption.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}span.fr-img-caption.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px))}span.fr-img-caption.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px)}span.fr-img-caption.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px)}:host(.swipecards) .top-container{height:100%}:host(.swipecards) .top-container .content-container{height:100% !important}:host(.mission){background:var(--stable-10, rgba(173, 173, 173, 0.1))}:host(.mission.invalid),:host(.mission.invalid.readonly){background:var(--danger-10, rgba(212, 67, 51, 0.1))}:host(.mission.readonly){margin-top:var(--spacing-08, 0.5rem);margin-bottom:var(--spacing-08, 0.5rem);padding:var(--spacing-08, 0.5rem);border-radius:var(--spacing-08, 0.5rem)}:host(.mission.readonly) .top-container .label .field-title-name,:host(.mission.readonly) .top-container .label .field-description,:host(.mission.readonly) .top-container .description .field-title-name,:host(.mission.readonly) .top-container .description .field-description{font-weight:bold;text-transform:uppercase}:host{--content-padding-top:var(--spacing-08, 0.5rem);--content-padding-bottom:initial;--field-title-color:var(--dark, #000000);--font-size-description:var(--font-size-28, 1.75rem);--field-title-font-weight:var(--font-weight-400, 400);--field-title-text-transform:unset;--sub-description-text-color:var(--text-color, #807f83);--sub-description-font-size:var(--font-size-16, 1rem);--right-side-margin:auto;display:block}:host yoo-tag.original-invalid,:host yoo-tag.original-modified,:host yoo-tag.not-compliant{--padding:var(--spacing-04, 0.25rem);margin-bottom:var(--spacing-08, 0.5rem);font-weight:normal;border-radius:var(--border-radius-04, 0.25rem)}:host .optional{margin-left:var(--spacing-08, 0.5rem) !important;color:var(--stable, #adadad);white-space:nowrap}:host .full-width{width:100%}:host .user{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-gap:var(--spacing-04, 0.25rem);-ms-flex-align:start;align-items:flex-start;width:100%}:host .user .label{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host .slide-title{width:100%;margin-top:var(--spacing-08, 0.5rem);margin-bottom:var(--spacing-08, 0.5rem);font-weight:bold;text-align:left}:host .description .label,:host .description .optional,:host .top-container .label,:host .top-container .optional{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;font-weight:var(--font-weight-400, 400);line-height:1.5;text-align:left;word-break:break-word;overflow-wrap:break-word}:host .description .label .required,:host .description .optional .required,:host .top-container .label .required,:host .top-container .optional .required{height:22px;margin-right:0.25rem;color:var(--danger, #d44333);font-weight:var(--font-weight-700, 700);font-size:var(--icon-size-02, 1.5rem);font-variant-caps:normal}:host .description .label .label-required,:host .description .optional .label-required,:host .top-container .label .label-required,:host .top-container .optional .label-required{margin-left:0.25rem;color:var(--danger, #d44333)}:host .description .label .right-side,:host .description .optional .right-side,:host .top-container .label .right-side,:host .top-container .optional .right-side{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-left:var(--right-side-margin);color:var(--stable, #adadad)}:host .description .label .right-side yoo-icon.recent,:host .description .optional .right-side yoo-icon.recent,:host .top-container .label .right-side yoo-icon.recent,:host .top-container .optional .right-side yoo-icon.recent{fill:var(--text-color, #807f83)}:host .description .label.readonly,:host .description .optional.readonly,:host .top-container .label.readonly,:host .top-container .optional.readonly{color:var(--text-color, #807f83);letter-spacing:0;text-transform:initial;font-variant-caps:initial}:host .description .label.invalid .field-title-name,:host .description .optional.invalid .field-title-name,:host .top-container .label.invalid .field-title-name,:host .top-container .optional.invalid .field-title-name{color:var(--danger, #d44333)}:host .description .label.center,:host .description .optional.center,:host .top-container .label.center,:host .top-container .optional.center{text-align:center}:host .description .label.center span,:host .description .optional.center span,:host .top-container .label.center span,:host .top-container .optional.center span{margin:auto}:host .description .field-heading:not(.center),:host .top-container .field-heading:not(.center){font-size:var(--font-size-14, 0.875rem)}:host .description .field-heading:not(.center) .field-title-name,:host .top-container .field-heading:not(.center) .field-title-name{color:var(--field-title-color)}:host .description .field-heading:not(.center).password-title .field-title-name,:host .top-container .field-heading:not(.center).password-title .field-title-name{font-weight:var(--font-weight-400, 400)}:host .description .description,:host .top-container .description{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;font-size:var(--font-size-16, 1rem)}:host .description .description span p,:host .top-container .description span p{margin-top:0;margin-bottom:var(--spacing-08, 0.5rem)}:host .description .description.invalid,:host .top-container .description.invalid{color:var(--danger, #d44333)}:host .description .description.slotted,:host .top-container .description.slotted{padding-right:var(--spacing-04, 0.25rem)}:host .description .description .required,:host .top-container .description .required{height:22px;height:var(--icon-size-02, 1.5rem);margin-right:0.25rem;color:var(--danger, #d44333);font-weight:var(--font-weight-700, 700);font-size:var(--icon-size-02, 1.5rem);font-variant-caps:normal}:host .description .description.sub-description,:host .top-container .description.sub-description{color:var(--sub-description-text-color);font-size:var(--sub-description-font-size);text-transform:var(--field-title-text-transform)}:host .description .media-description,:host .top-container .media-description{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}:host .description .media-description>span:not(.optional),:host .top-container .media-description>span:not(.optional){width:100%}:host .description .media-description .extra-options-container,:host .top-container .media-description .extra-options-container{display:-ms-flexbox;display:flex}:host .description .media-description .extra-options-container yoo-icon.more,:host .top-container .media-description .extra-options-container yoo-icon.more{margin-left:auto}:host .description .media-description .more,:host .top-container .media-description .more{padding-left:var(--spacing-16, 1rem)}:host .description .field-title-name,:host .top-container .field-title-name{color:var(--field-title-color);font-weight:var(--field-title-font-weight);text-transform:var(--field-title-text-transform)}:host .hint-container{margin-top:0.25rem;margin-bottom:0.25rem;color:var(--text-color, #807f83);font-size:var(--font-size-14, 0.875rem);line-height:1.33;text-align:left}:host .footer-container{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:var(--spacing-08, 0.5rem);padding-top:var(--spacing-16, 1rem);padding-bottom:0;padding-left:0.0625rem;color:var(--text-color, #807f83);font-size:var(--font-size-14, 0.875rem)}:host .footer-container.validation{margin-top:var(--spacing-08, 0.5rem);border-top:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host .footer-container.validation.mobile{-ms-flex-direction:column;flex-direction:column;grid-gap:var(--spacing-16, 1rem);-ms-flex-align:start;align-items:flex-start}:host .footer-container.validation.mobile yoo-form-input-comments{width:100%}:host .footer-container .comment-container,:host .footer-container .feed-container,:host .footer-container .newtask{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:22px}:host .footer-container yoo-form-task{padding-left:var(--spacing-08, 0.5rem)}:host .footer-container yoo-icon{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;margin-right:var(--spacing-08, 0.5rem)}:host .footer-container .newtask{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:row;flex-direction:row;font-size:var(--font-size-16, 1rem)}:host .footer-container .newtask .icon{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-right:0.125rem}:host .footer-container .newtask .icon yoo-icon{margin-right:var(--spacing-08, 0.5rem)}:host .content-container{position:relative;max-width:var(--content-max-width);padding-top:var(--content-padding-top);padding-bottom:var(--content-padding-bottom)}:host .content-container.sc-yoo-form-input-container{min-height:45px}:host .content-container.readonly{padding:0;overflow:hidden}:host .content-container yoo-form-toggle:not(.line){position:absolute;top:auto;right:0;bottom:0.25rem;left:auto}:host .content-container yoo-form-checkbox:not(.line){position:absolute;top:auto;right:0;bottom:0.25rem;left:auto}:host .content-container yoo-form-checkbox[type=normal]{position:absolute;top:-1.3rem;right:0;bottom:auto;left:auto}:host .content-container yoo-form-toggle[type=normal]{position:absolute;top:-1rem;right:0;bottom:auto;left:auto}:host .content-container .removable{position:absolute;top:0.3rem;right:1.5rem;display:none;color:var(--danger, #d44333)}:host .content-container:hover .removable{display:block}:host yoo-form-input-comments.readonly{margin-top:var(--spacing-16, 1rem)}:host yoo-form-input-comments.readonly.with-border-bottom{padding-bottom:var(--spacing-16, 1rem);border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt-40, rgba(208, 208, 208, 0.4))}:host .instructions{display:block;color:var(--stable, #adadad);font-size:var(--font-size-16, 1rem);letter-spacing:normal}:host .instructions.under-title{margin:0 auto var(--spacing-32, 2rem)}:host .instructions.success{color:var(--success, #3aa76d)}:host .instructions.app-color{color:var(--app-color, #5a30f4)}:host .comment-container{margin-right:var(--spacing-16, 1rem)}:host(.line){display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-bottom:var(--spacing-08, 0.5rem);border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host(.line) .top-container{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}:host(.line) .top-container .label,:host(.line) .top-container .description{-ms-flex:1;flex:1;-ms-flex-item-align:center;align-self:center;margin-left:var(--spacing-08, 0.5rem)}:host(.line) .top-container .label{color:inherit;font-variant-caps:normal}:host(.line) .top-container .content-container{-ms-flex:0;flex:0;padding-top:0}:host(.line) .top-container .content-container yoo-form-checkbox{--margin-top-container:-0.5rem}:host(.line) .top-container .content-container.full-width{-ms-flex:1;flex:1}:host(.line) .top-container slot{-ms-flex:1;flex:1}:host(.no-padding-top) .content-container{padding-top:0 !important}:host(.line.reversed) .top-container{-ms-flex-direction:row-reverse;flex-direction:row-reverse}:host(.line.noborder){border-bottom:none}:host(.readonly){border:none}:host(.readonly) .top-container .field-title-name{color:var(--field-title-color)}:host(.readonly) .top-container.column{-ms-flex-direction:column;flex-direction:column}:host(.readonly) .top-container.column .description{-ms-flex-item-align:start;align-self:flex-start;margin-bottom:var(--spacing-16, 1rem);margin-left:0;color:var(--text-color, #807f83)}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-input),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-image-tagging),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-ranking),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-autocomplete){display:block;margin-top:var(--spacing-08, 0.5rem)}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-input).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-image-tagging).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-ranking).inline,:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-autocomplete).inline{margin-top:0}:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-categorize-words),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-connect),:host(.readonly:not(.forcedhistory):not(.custom-width)) ::slotted(yoo-form-swipe-cards){display:block;margin-top:var(--spacing-16, 1rem)}:host(.readonly.custom-width.inline-row:not(.label-top-aligned)) .top-container{-ms-flex-pack:center;justify-content:center}:host(.readonly.inline-row:not(.label-top-aligned)) ::slotted(yoo-form-autocomplete){margin-top:0}:host(:not(.lesson).readonly){--field-title-font-weight:var(--font-weight-700, 700)}:host(:not(.lesson).readonly) .top-container .label.readonly{color:var(--dark, #000000);font-weight:var(--font-weight-700, 700)}:host(.form-readonly){padding:var(--spacing-08, 0.5rem) 0}:host(.form-readonly[size=small]){padding:0}:host(.form-readonly.quickview) .description .label .right-side,:host(.form-readonly.quickview) .description .optional .right-side,:host(.form-readonly.quickview) .top-container .label .right-side,:host(.form-readonly.quickview) .top-container .optional .right-side{color:var(--dark, #000000)}:host(.form-readonly.quickview) .description .label .right-side yoo-icon.recent,:host(.form-readonly.quickview) .description .optional .right-side yoo-icon.recent,:host(.form-readonly.quickview) .top-container .label .right-side yoo-icon.recent,:host(.form-readonly.quickview) .top-container .optional .right-side yoo-icon.recent{fill:var(--dark, #000000)}:host(.form-readonly.quickview) .description .label.readonly,:host(.form-readonly.quickview) .description .optional.readonly,:host(.form-readonly.quickview) .top-container .label.readonly,:host(.form-readonly.quickview) .top-container .optional.readonly{color:var(--dark, #000000)}:host(.form-readonly.quickview) .description .field-heading:not(.center) .field-title-name,:host(.form-readonly.quickview) .top-container .field-heading:not(.center) .field-title-name{color:var(--field-title-color)}:host(.form-readonly.quickview) .description .field-title-name,:host(.form-readonly.quickview) .top-container .field-title-name{color:var(--field-title-color)}:host(:not(.lesson)) .description span p{margin-bottom:0}:host(:not(.lesson)) p{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:0}:host(.lesson){--content-padding-bottom:var(--spacing-16, 1rem);--font-size-title-name:var(--font-size-28, 1.75rem);--font-weight-title-name:var(--font-weight-700, 700);--text-tranform-title-name:none}:host(.lesson) .top-container .label{margin-bottom:var(--spacing-08, 0.5rem)}:host(.lesson) .top-container .content-container{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}:host(.lesson) .top-container .description{margin-bottom:var(--spacing-08, 0.5rem);font-size:var(--font-size-description)}:host(.lesson) .top-container .media-description{font-size:var(--font-size-16, 1rem)}:host(.lesson) .title.within-chat,:host(.lesson) .field-title-name{color:var(--field-title-color);font-weight:var(--font-weight-title-name);font-size:var(--font-size-title-name);text-transform:var(--text-tranform-title-name)}:host(.textsequence) .top-container{height:100%}:host(.textsequence) .top-container .content-container{height:100%}:host(.textsequence) .top-container .content-container ::slotted(yoo-text-sequence){max-width:40rem;height:100%;margin:0 auto}:host(.mobile) .content-container .removable{display:block}:host(.web.lesson:not(.lesson-live-preview)){display:-ms-flexbox;display:flex;padding:0 !important}:host(.web.lesson:not(.lesson-live-preview)) .top-container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:var(--spacing-08, 0.5rem);-webkit-box-sizing:border-box;box-sizing:border-box;width:calc(100% - 2rem);margin:0 auto;padding:var(--spacing-32, 2rem) !important;padding-top:var(--spacing-16, 1rem) !important;overflow:auto;background-color:var(--light, #ffffff);border-radius:var(--border-radius-08, 0.5rem);-webkit-box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));-webkit-transition:all 0.5s ease-in-out 0s;transition:all 0.5s ease-in-out 0s}@media print{:host .top-container hr,:host .top-container .description,:host .top-container .label{page-break-after:avoid !important}:host .top-container .content-container{page-break-before:avoid !important}}:host(.accent) .hint-container{color:var(--accent-20, rgba(39, 110, 241, 0.2))}:host(.accent) .description{color:var(--accent, #276ef1)}:host(.dark) .hint-container{color:var(--stable-alt, #d0d0d0)}:host(.dark) .description{color:var(--dark, #000000)}:host(.danger) .hint-container{color:var(--danger-20, rgba(212, 67, 51, 0.2))}:host(.danger) .description{color:var(--danger, #d44333)}:host(.success) .hint-container{color:var(--success-20, rgba(58, 167, 109, 0.2))}:host(.success) .description{color:var(--success, #3aa76d)}:host(.app-color) .hint-container{color:var(--app-color-20, rgba(90, 48, 244, 0.2))}:host(.app-color) .description{color:var(--app-color, #5a30f4)}:host(.warning) .hint-container{color:var(--warning-20, rgba(237, 110, 51, 0.2))}:host(.warning) .description{color:var(--warning, #ed6e33)}:host(.info) .hint-container{color:var(--info-20, rgba(216, 76, 150, 0.2))}:host(.info) .description{color:var(--info, #d84c96)}:host(.stable) .hint-container{color:var(--stable, #adadad)}:host(.stable) .description{color:var(--stable, #adadad)}:host(.readonly.web:not(.preview)) .top-container .label>span.field-title-name{white-space:normal}:host(.web:not(.preview)){--label-padding-top:var(--spacing-08, 0.5rem)}:host(.web:not(.preview)) .top-container .label{padding-top:var(--label-padding-top)}:host(.web.operator){display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;height:2rem;padding:0}:host(.web.operator) .top-container .content-container{padding:0 0 var(--spacing-04, 0.25rem) 0}.fr-view h1,.fr-view h2,.fr-view h3,.fr-view h4,.fr-view h5,.fr-view h6{margin:0;padding:0;border:0}:host(.grid),:host(.audience){position:relative;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}:host(.grid) .top-container,:host(.audience) .top-container{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;overflow:hidden}:host(.grid) .top-container .content-container,:host(.audience) .top-container .content-container{-ms-flex:1;flex:1;margin:0;margin-right:var(--spacing-04, 0.25rem);margin-left:var(--spacing-04, 0.25rem)}:host(.openinghours) .content-container.readonly{overflow:visible}:host(.lesson-detail.readonly) .top-container .label.readonly{padding-top:unset;font-size:var(--font-size-16, 1rem);text-transform:unset}:host([animated].number.lesson) .description,:host([animated].number.lesson) .label,:host([animated].number.lesson) .instructions,:host([animated].number.lesson) .content-container{-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:var(--ease-out-quad);animation-timing-function:var(--ease-out-quad);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}:host([animated].number.lesson) .description,:host([animated].number.lesson) .label{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}:host([animated].number.lesson) .instructions{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse));-webkit-animation-delay:200ms;animation-delay:200ms}:host([animated].number.lesson) .content-container{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width));-webkit-animation-delay:500ms;animation-delay:500ms}:host([animated].mobile.number.lesson) .description,:host([animated].mobile.number.lesson) .label{-webkit-animation-delay:200ms;animation-delay:200ms}:host([animated].mobile.number.lesson) .instructions{-webkit-animation-delay:400ms;animation-delay:400ms}:host([animated].mobile.number.lesson) .content-container{-webkit-animation-delay:700ms;animation-delay:700ms}:host([animated].selectimage.lesson) .description,:host([animated].selectimage.lesson) .label{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse));-webkit-animation-duration:300ms;animation-duration:300ms;-webkit-animation-timing-function:var(--ease-out-quad);animation-timing-function:var(--ease-out-quad);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes sliding-from-left{from{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes sliding-from-left{from{-webkit-transform:translateX(var(--container-width-reverse));transform:translateX(var(--container-width-reverse))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes sliding-from-right{from{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width))}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes sliding-from-right{from{-webkit-transform:translateX(var(--container-width));transform:translateX(var(--container-width))}to{-webkit-transform:translateX(0);transform:translateX(0)}}:host(.inline-row:not(.label-top-aligned)) .top-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}:host(.inline-row:not(.label-top-aligned)) .top-container .label{width:auto;min-width:5rem;margin-right:var(--spacing-08, 0.5rem)}:host(.inline-row:not(.label-top-aligned)) .top-container .label.readonly{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;padding-top:0}:host(.inline-row:not(.label-top-aligned)) .top-container .content-container{width:100%}:host(.inline-row:not(.label-top-aligned)) .top-container .content-container.readonly{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}:host(.inline-row.label-right-aligned) .top-container .label>span{width:100%;padding-right:var(--spacing-08, 0.5rem);text-align:right}:host(.fast-scoring) .top-container{padding-top:var(--spacing-16, 1rem)}:host([hidden]){display:none}:host(.hotzonecreator) .label,:host(.imagemapcreator) .label{display:none}:host(.confidence) .top-container{height:100%}:host(.confidence) .top-container .label{display:none}:host(.confidence) .top-container .content-container{height:100%;background-color:var(--dark-60, rgba(0, 0, 0, 0.6)) !important;border-radius:var(--border-radius-08, 0.5rem);-webkit-box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1));box-shadow:var(--shadow-02, 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.1))}:host(.web.lesson:not(.lesson-live-preview).confidence) .top-container{padding:0 !important}:host(.mission-validation) .top-container .label{font-size:var(--font-size-12, 0.75rem);text-transform:uppercase}";
|
|
16
16
|
|
|
17
17
|
const YooFormInputContainerComponent = class {
|
|
18
18
|
constructor(hostRef) {
|