@yoobic/yobi 8.2.0-32 → 8.2.0-33
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-form-creator-page-card-list.cjs.entry.js +0 -1
- package/dist/cjs/yoo-form-creator.cjs.entry.js +21 -7
- package/dist/cjs/yoo-lesson-question-result.cjs.entry.js +1 -1
- package/dist/cjs/yoo-profile-list.cjs.entry.js +2 -1
- package/dist/cjs/yoo-truncate.cjs.entry.js +2 -1
- package/dist/collection/components/1.atoms/truncate/truncate.js +25 -5
- package/dist/collection/components/2.molecules/profile-list/profile-list.js +2 -1
- package/dist/collection/components/form-creator/form-creator/form-creator.js +21 -7
- package/dist/collection/components/form-creator/form-creator-card-list/page/form-creator-page-card-list.js +0 -1
- package/dist/collection/feature-learn/learning/lesson-question-result/lesson-question-result.css +0 -1
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/design-system/yoo-form-creator-page-card-list.entry.js +0 -1
- package/dist/design-system/yoo-form-creator.entry.js +21 -7
- package/dist/design-system/yoo-lesson-question-result.entry.js +1 -1
- package/dist/design-system/yoo-profile-list.entry.js +2 -1
- package/dist/design-system/yoo-truncate.entry.js +2 -1
- package/dist/esm/design-system.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/yoo-form-creator-page-card-list.entry.js +0 -1
- package/dist/esm/yoo-form-creator.entry.js +21 -7
- package/dist/esm/yoo-lesson-question-result.entry.js +1 -1
- package/dist/esm/yoo-profile-list.entry.js +2 -1
- package/dist/esm/yoo-truncate.entry.js +2 -1
- package/dist/types/components/1.atoms/truncate/truncate.d.ts +6 -0
- package/dist/types/components/form-creator/form-creator/form-creator.d.ts +4 -1
- package/dist/types/components.d.ts +2 -0
- package/package.json +1 -1
|
@@ -120,7 +120,6 @@ const YooFormCreatorPageCardListComponent = class {
|
|
|
120
120
|
const indexSlideTo = sortEvent.indexTo - 1 >= 0 ? sortEvent.indexTo - 1 : 0;
|
|
121
121
|
this.pageOrderChanged.emit(sortEvent);
|
|
122
122
|
this.pageCardsParentEl.slideTo(indexSlideTo);
|
|
123
|
-
this.pageClicked.emit(sortEvent.indexTo);
|
|
124
123
|
};
|
|
125
124
|
}
|
|
126
125
|
renderPageCards() {
|
|
@@ -153,6 +153,7 @@ const YooFormCreatorComponent = class {
|
|
|
153
153
|
this.restrictionConditionSelectedTab = 0;
|
|
154
154
|
this.expandedConditions = [];
|
|
155
155
|
this.isPageReordering = false;
|
|
156
|
+
this.pagesReordered = false;
|
|
156
157
|
this.onInsertPageAfterClicked = (event) => {
|
|
157
158
|
if (event) {
|
|
158
159
|
this.onAddNewPage(event.detail + 1);
|
|
@@ -171,12 +172,14 @@ const YooFormCreatorComponent = class {
|
|
|
171
172
|
this.removeOverlays();
|
|
172
173
|
}
|
|
173
174
|
else {
|
|
174
|
-
this.
|
|
175
|
-
this.
|
|
176
|
-
this.hasPageChanged = event.detail;
|
|
177
|
-
this.resetExpandableBlockReferences();
|
|
175
|
+
this.selectPage(event.detail);
|
|
176
|
+
this.pagesReordered = false;
|
|
178
177
|
}
|
|
179
178
|
};
|
|
179
|
+
this.onPageOrderChanged = (event) => {
|
|
180
|
+
this.selectPage(event.detail.indexTo);
|
|
181
|
+
this.pagesReordered = true;
|
|
182
|
+
};
|
|
180
183
|
this.onDuplicatePageClicked = (event) => {
|
|
181
184
|
var _a, _b, _c, _d;
|
|
182
185
|
if (event) {
|
|
@@ -420,7 +423,12 @@ const YooFormCreatorComponent = class {
|
|
|
420
423
|
});
|
|
421
424
|
this.currentExpandedBlockLocation = { slideIndex, itemIndex };
|
|
422
425
|
this.expandedFieldName = event.detail.name || this.expandedFieldName;
|
|
423
|
-
this.
|
|
426
|
+
if (!this.pagesReordered) {
|
|
427
|
+
this.scrollToField(itemIndex);
|
|
428
|
+
}
|
|
429
|
+
else {
|
|
430
|
+
this.pagesReordered = false;
|
|
431
|
+
}
|
|
424
432
|
}
|
|
425
433
|
else if (!event.detail.expanded && this.currentExpandedBlockLocation && itemIndex === this.currentExpandedBlockLocation.itemIndex) {
|
|
426
434
|
this.currentExpandedBlockLocation = null;
|
|
@@ -1012,6 +1020,12 @@ const YooFormCreatorComponent = class {
|
|
|
1012
1020
|
}
|
|
1013
1021
|
this.shouldRenderLeftSelectionContent = true;
|
|
1014
1022
|
}
|
|
1023
|
+
selectPage(pageIndex) {
|
|
1024
|
+
this.selectedPageIndex = pageIndex;
|
|
1025
|
+
this.pageHeaderClicked.emit(pageIndex);
|
|
1026
|
+
this.hasPageChanged = pageIndex;
|
|
1027
|
+
this.resetExpandableBlockReferences();
|
|
1028
|
+
}
|
|
1015
1029
|
updateGlobalActions() {
|
|
1016
1030
|
this.selectedMoveActions = setBlockSelection(this.itemList, null, (slideIndex, _itemIndex, itemId) => this.moveSelectedFields(itemId, slideIndex), {
|
|
1017
1031
|
extraStartingItems: [
|
|
@@ -2162,7 +2176,7 @@ const YooFormCreatorComponent = class {
|
|
|
2162
2176
|
selected: this.isPagesAccordionOpen,
|
|
2163
2177
|
actionButtons
|
|
2164
2178
|
}
|
|
2165
|
-
], iconPairLeft: ARROW_PAIR, showBottomBorder: true, forceEntryUpdate: true, allowMultipleSelection: true, onAccordionSelected: (event) => this.onPagesAccordionSelected(event) }, h("div", { slot: "PAGES" }, h("yoo-form-creator-page-card-list", { scoringMode: isScoring(this.selectedLeftMenuOption) ? this.selectedScoring : null, missionSlides: this.currentSlides, selectedPageIndex: this.selectedPageIndex, onPageClicked: this.onPageClicked, onDuplicatePageClicked: this.onDuplicatePageClicked, onInsertPageAfterClicked: this.onInsertPageAfterClicked, onDeletePageClicked: this.onDeletePageClicked, onEditPageClicked: this.onEditPageClicked, onAddSiteTagRestrictionClicked: this.onAddSiteTagRestrictionClicked, onAddUserGroupRestrictionClicked: this.onAddUserGroupRestrictionClicked, onReorderEnded: () => {
|
|
2179
|
+
], iconPairLeft: ARROW_PAIR, showBottomBorder: true, forceEntryUpdate: true, allowMultipleSelection: true, onAccordionSelected: (event) => this.onPagesAccordionSelected(event) }, h("div", { slot: "PAGES" }, h("yoo-form-creator-page-card-list", { scoringMode: isScoring(this.selectedLeftMenuOption) ? this.selectedScoring : null, missionSlides: this.currentSlides, selectedPageIndex: this.selectedPageIndex, onPageClicked: this.onPageClicked, onDuplicatePageClicked: this.onDuplicatePageClicked, onInsertPageAfterClicked: this.onInsertPageAfterClicked, onDeletePageClicked: this.onDeletePageClicked, onEditPageClicked: this.onEditPageClicked, onAddSiteTagRestrictionClicked: this.onAddSiteTagRestrictionClicked, onAddUserGroupRestrictionClicked: this.onAddUserGroupRestrictionClicked, onPageOrderChanged: this.onPageOrderChanged, onReorderEnded: () => {
|
|
2166
2180
|
this.isPageReordering = false;
|
|
2167
2181
|
}, onReorderStarted: () => {
|
|
2168
2182
|
this.isPageReordering = true;
|
|
@@ -2344,7 +2358,7 @@ const YooFormCreatorComponent = class {
|
|
|
2344
2358
|
}
|
|
2345
2359
|
renderLivePreview() {
|
|
2346
2360
|
var _a;
|
|
2347
|
-
return (h("yoo-form-creator-live-preview", { ref: (el) => (this.livePreviewElement = el), mode: "panel", showShare: this.showShare, onShared: (ev) => { ev.stopPropagation(); this.shared.emit(); }, hidden: this.isLivePreviewHidden, showDevices: false, missionDescriptionTitle: this.missDescDisplayTitle, onVisibilityToggled: () => (this.isLivePreviewHidden = !this.isLivePreviewHidden), availableLanguages: ((_a = this.translations) === null || _a === void 0 ? void 0 : _a.length) ? [...this.selectedLanguages, this.baseLanguage] : [], selectedLanguage: this.baseLanguage, onLanguageChanged: (ev) => this.onDisplayLanguageChanged(ev) }, h("div", { class: "slot-container", slot: "livePreview" }, h("slot", { name: "livePreview" }))));
|
|
2361
|
+
return (h("yoo-form-creator-live-preview", { ref: (el) => (this.livePreviewElement = el), mode: "panel", showShare: this.showShare, onShared: (ev) => { ev.stopPropagation(); this.shared.emit(); }, hidden: this.isLivePreviewHidden, showDevices: false, missionDescriptionTitle: this.missDescDisplayTitle, onVisibilityToggled: () => (this.isLivePreviewHidden = !this.isLivePreviewHidden), availableLanguages: ((_a = this.translations) === null || _a === void 0 ? void 0 : _a.length) ? [...this.selectedLanguages, this.baseLanguage] : [], selectedLanguage: this.displayLanguage ? this.displayLanguage : this.baseLanguage, onLanguageChanged: (ev) => this.onDisplayLanguageChanged(ev) }, h("div", { class: "slot-container", slot: "livePreview" }, h("slot", { name: "livePreview" }))));
|
|
2348
2362
|
}
|
|
2349
2363
|
renderFormDynamic() {
|
|
2350
2364
|
var _a;
|
|
@@ -4,7 +4,7 @@ import { A as get, l as isNumber } from './lodash-b0ad17f3.js';
|
|
|
4
4
|
import './_commonjsHelpers-f4d11124.js';
|
|
5
5
|
import './index-da54e081.js';
|
|
6
6
|
|
|
7
|
-
const lessonQuestionResultCss = ":host{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;height:100%;background-color:var(--light, #ffffff)}:host yoo-navbar{background-color:var(--stable-light, #f1f1f1)}:host yoo-ion-scroll{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;width:100%}:host yoo-ion-scroll .result-title{margin:var(--spacing-08, 0.5rem) 0 var(--spacing-16, 1rem) 0;color:var(--app-color, #5a30f4);text-align:center}:host yoo-ion-scroll .result-text{margin:0 var(--spacing-64, 4rem);padding-bottom:var(--spacing-08, 0.5rem);color:var(--text-color, #807f83);line-height:1.5625rem;text-align:center}:host yoo-ion-scroll .result-explanation{margin:var(--spacing-08, 0.5rem) var(--spacing-64, 4rem);text-align:center}:host yoo-ion-scroll .result-explanation .explanation-value{color:var(--text-color, #807f83);line-height:1.5625rem}:host yoo-ion-scroll .result-explanation .explanation-title{padding-bottom:var(--spacing-08, 0.5rem);font-weight:bold}:host yoo-ion-scroll .separator{width:90%;border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host yoo-ion-scroll .result-document{margin:var(--spacing-16, 1rem)}:host yoo-ion-scroll .result-document .document-title{padding-bottom:var(--spacing-08, 0.5rem);font-weight:bold;font-size:var(--font-size-16, 1rem);text-align:center}:host yoo-ion-scroll .result-tag{padding:var(--spacing-08, 0.5rem);text-align:center}:host yoo-ion-scroll .result-tag span{color:var(--dark, #000000);font-size:var(--font-size-16, 1rem)}:host yoo-ion-scroll .result-tag span.action{color:var(--stable, #adadad);font-size:var(--font-size-14, 0.875rem);cursor:pointer}:host yoo-ion-scroll .result-tag .tag{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;margin:auto;font-size:var(--font-size-12, 0.75rem)}:host yoo-ion-scroll .result-tag .tag .tag-title{text-align:center}:host yoo-ion-scroll .result-tag .tags{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center}:host yoo-ion-scroll .result-tag .tags .badge-container{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;
|
|
7
|
+
const lessonQuestionResultCss = ":host{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;height:100%;background-color:var(--light, #ffffff)}:host yoo-navbar{background-color:var(--stable-light, #f1f1f1)}:host yoo-ion-scroll{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;width:100%}:host yoo-ion-scroll .result-title{margin:var(--spacing-08, 0.5rem) 0 var(--spacing-16, 1rem) 0;color:var(--app-color, #5a30f4);text-align:center}:host yoo-ion-scroll .result-text{margin:0 var(--spacing-64, 4rem);padding-bottom:var(--spacing-08, 0.5rem);color:var(--text-color, #807f83);line-height:1.5625rem;text-align:center}:host yoo-ion-scroll .result-explanation{margin:var(--spacing-08, 0.5rem) var(--spacing-64, 4rem);text-align:center}:host yoo-ion-scroll .result-explanation .explanation-value{color:var(--text-color, #807f83);line-height:1.5625rem}:host yoo-ion-scroll .result-explanation .explanation-title{padding-bottom:var(--spacing-08, 0.5rem);font-weight:bold}:host yoo-ion-scroll .separator{width:90%;border-bottom:var(--border-width-01, 0.0625rem) solid var(--stable-alt, #d0d0d0)}:host yoo-ion-scroll .result-document{margin:var(--spacing-16, 1rem)}:host yoo-ion-scroll .result-document .document-title{padding-bottom:var(--spacing-08, 0.5rem);font-weight:bold;font-size:var(--font-size-16, 1rem);text-align:center}:host yoo-ion-scroll .result-tag{padding:var(--spacing-08, 0.5rem);text-align:center}:host yoo-ion-scroll .result-tag span{color:var(--dark, #000000);font-size:var(--font-size-16, 1rem)}:host yoo-ion-scroll .result-tag span.action{color:var(--stable, #adadad);font-size:var(--font-size-14, 0.875rem);cursor:pointer}:host yoo-ion-scroll .result-tag .tag{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;margin:auto;font-size:var(--font-size-12, 0.75rem)}:host yoo-ion-scroll .result-tag .tag .tag-title{text-align:center}:host yoo-ion-scroll .result-tag .tags{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center}:host yoo-ion-scroll .result-tag .tags .badge-container{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;margin:var(--spacing-08, 0.5rem) 0;font-size:var(--font-size-12, 0.75rem)}:host yoo-ion-scroll .result-tag .tags .badge-container yoo-tag{padding:var(--spacing-04, 0.25rem);background:var(--light, #ffffff);border-radius:var(--spacing-40, 2.5rem)}:host yoo-ion-scroll .document-image{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:var(--spacing-16, 1rem);overflow:hidden;--border-radius:var(--border-radius-08, 0.5rem)}:host yoo-ion-scroll yoo-progress-recap,:host yoo-ion-scroll yoo-points-recap{display:block;width:calc(100% - 2rem);max-width:30rem;margin:0 auto;padding:var(--spacing-08, 0.5rem)}:host .wall{position:absolute;width:100%;height:16rem;background-image:-webkit-gradient(linear, left bottom, left top, from(var(--light, #ffffff)), to(var(--stable-light, #f1f1f1)));background-image:linear-gradient(to top, var(--light, #ffffff), var(--stable-light, #f1f1f1));mix-blend-mode:multiply}:host yoo-lottie{height:12.5rem}:host yoo-tag{display:block;margin:0 auto}:host main{width:100%;padding-top:calc(var(--safe-area-inset-top) + var(--spacing-32, 2rem))}:host .answers{width:100%;padding-bottom:var(--spacing-16, 1rem)}:host .answers .title{padding:var(--spacing-08, 0.5rem) var(--spacing-16, 1rem);font-size:var(--font-size-24, 1.5rem)}";
|
|
8
8
|
|
|
9
9
|
const YooLessonQuestionResultComponent = class {
|
|
10
10
|
constructor(hostRef) {
|
|
@@ -109,7 +109,8 @@ const YooProfileListComponent = class {
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
renderTruncate(content, icon) {
|
|
112
|
-
|
|
112
|
+
const charLength = isWeb(this.host) ? 83 : 38;
|
|
113
|
+
return (h("div", { class: "user-info-list" }, h("div", { class: "start-container" }, h("yoo-icon", { name: icon, color: "dark" }), h("yoo-truncate", { content: content, maxLength: charLength, showEllipsisIcon: true, ellipsisIconSize: "medium" }))));
|
|
113
114
|
}
|
|
114
115
|
renderCollapsible(header, content) {
|
|
115
116
|
return (h("yoo-collapsible", { hasArrowIcon: !!content.length, icon: "tag", iconColor: "dark", iconSize: "medium", slotHeader: true }, h("div", { slot: "title" }, header === null || header === void 0 ? void 0 : header.map(tag => {
|
|
@@ -39,6 +39,7 @@ const YooTruncateComponent = class {
|
|
|
39
39
|
* Used more icon instead of text as ellipsis button.
|
|
40
40
|
*/
|
|
41
41
|
this.showEllipsisIcon = false;
|
|
42
|
+
this.ellipsisIconSize = 'small';
|
|
42
43
|
/**
|
|
43
44
|
* Alters how the <br> tag is handled for markdown
|
|
44
45
|
*/
|
|
@@ -60,7 +61,7 @@ const YooTruncateComponent = class {
|
|
|
60
61
|
return `<span class="more-button"> ${this.collapsed ? `... ${translate('MORE2')}` : translate('VIEWLESS')}</span>`;
|
|
61
62
|
};
|
|
62
63
|
this.getMoreIconHtml = () => {
|
|
63
|
-
return `<span><span>${this.collapsed ? '...' : ''}</span><yoo-icon class="more-button" name=${this.collapsed ? 'arrow-down' : 'arrow-up'} size="
|
|
64
|
+
return `<span><span>${this.collapsed ? '...' : ''}</span><yoo-icon class="more-button" name=${this.collapsed ? 'arrow-down' : 'arrow-up'} size="${this.ellipsisIconSize}" /></span>`;
|
|
64
65
|
};
|
|
65
66
|
}
|
|
66
67
|
onShowEllipsisButtonChanged() {
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name: Truncate
|
|
3
|
+
* @author: Romain Panaget
|
|
4
|
+
*/
|
|
5
|
+
import { TSize } from '@shared/interfaces';
|
|
1
6
|
import { Event, EventEmitter } from '../../../stencil-public-runtime';
|
|
2
7
|
export declare class YooTruncateComponent {
|
|
3
8
|
/**
|
|
@@ -28,6 +33,7 @@ export declare class YooTruncateComponent {
|
|
|
28
33
|
* Used more icon instead of text as ellipsis button.
|
|
29
34
|
*/
|
|
30
35
|
showEllipsisIcon: boolean;
|
|
36
|
+
ellipsisIconSize: TSize;
|
|
31
37
|
/**
|
|
32
38
|
* Holds the markdown/html content to truncate, for advanced truncation.
|
|
33
39
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConditionType, FormCreatorBulkActions, FormCreatorOptions, FormFieldCategory, IButton, ICondition, ICustomFormField, IFormField, IFormFieldDescription, IMissionDescription, IPlan, IScoring, IScoringQuickSetup, IScrollDetail, ISlide, ITranslation, IWorkflowStep, TIconName, TWorkflowStepType } from '@shared/interfaces';
|
|
1
|
+
import { ConditionType, FormCreatorBulkActions, FormCreatorOptions, FormFieldCategory, IButton, ICondition, ICustomFormField, IFormField, IFormFieldDescription, IMissionDescription, IPlan, IScoring, IScoringQuickSetup, IScrollDetail, ISectionListSortEvent, ISlide, ITranslation, IWorkflowStep, TIconName, TWorkflowStepType } from '@shared/interfaces';
|
|
2
2
|
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
3
3
|
import { IScoreChangedDetail } from '../../../interfaces';
|
|
4
4
|
export declare class YooFormCreatorComponent {
|
|
@@ -393,6 +393,7 @@ export declare class YooFormCreatorComponent {
|
|
|
393
393
|
private isPageReordering;
|
|
394
394
|
private missDescDisplayTitle;
|
|
395
395
|
private displayLanguage;
|
|
396
|
+
private pagesReordered;
|
|
396
397
|
/**
|
|
397
398
|
* hides or shows an overlay over the form creator to force the user to select a NEW field
|
|
398
399
|
*/
|
|
@@ -415,6 +416,7 @@ export declare class YooFormCreatorComponent {
|
|
|
415
416
|
private get isLesson();
|
|
416
417
|
onInsertPageAfterClicked: (event: CustomEvent<number>) => void;
|
|
417
418
|
onPageClicked: (event: CustomEvent<number>) => void;
|
|
419
|
+
onPageOrderChanged: (event: CustomEvent<ISectionListSortEvent>) => void;
|
|
418
420
|
onDuplicatePageClicked: (event: CustomEvent<number>) => void;
|
|
419
421
|
onDeletePageClicked: (event: CustomEvent<number>) => void;
|
|
420
422
|
onEditPageClicked: (event: CustomEvent<number>) => void;
|
|
@@ -583,6 +585,7 @@ export declare class YooFormCreatorComponent {
|
|
|
583
585
|
componentDidLoad(): void;
|
|
584
586
|
componentWillUpdate(): void;
|
|
585
587
|
componentDidUpdate(): void;
|
|
588
|
+
selectPage(pageIndex: number): void;
|
|
586
589
|
updateGlobalActions(): void;
|
|
587
590
|
disconnectedCallback(): void;
|
|
588
591
|
expandChildBlocks(itemIndex: number): Promise<void>;
|
|
@@ -6723,6 +6723,7 @@ export namespace Components {
|
|
|
6723
6723
|
* Piece of string placed at the end of a truncated text. Can be an html string.
|
|
6724
6724
|
*/
|
|
6725
6725
|
"ellipsis": string;
|
|
6726
|
+
"ellipsisIconSize": TSize;
|
|
6726
6727
|
/**
|
|
6727
6728
|
* Force the showing of more button when content is in the slot
|
|
6728
6729
|
*/
|
|
@@ -17757,6 +17758,7 @@ declare namespace LocalJSX {
|
|
|
17757
17758
|
* Piece of string placed at the end of a truncated text. Can be an html string.
|
|
17758
17759
|
*/
|
|
17759
17760
|
"ellipsis"?: string;
|
|
17761
|
+
"ellipsisIconSize"?: TSize;
|
|
17760
17762
|
/**
|
|
17761
17763
|
* Force the showing of more button when content is in the slot
|
|
17762
17764
|
*/
|