@yoobic/yobi 8.5.2-1 → 8.5.3-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/design-system.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/yoo-grid.cjs.entry.js +2 -3
- package/dist/collection/components/form-creator/form-creator/form-creator.js +23 -1
- package/dist/collection/components/grid/grid/grid.css +1 -1
- package/dist/collection/components/grid/grid/grid.js +1 -2
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/design-system/yoo-grid.entry.js +2 -3
- package/dist/esm/design-system.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/yoo-grid.entry.js +2 -3
- package/dist/types/components/form/image-cropper-dialog/pintura/pintura.d.ts +1236 -0
- package/dist/types/components/form-creator/form-creator/form-creator.d.ts +4 -4
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
@@ -2805,6 +2805,29 @@ export class YooFormCreatorComponent {
|
|
2805
2805
|
"text": "Used to select a selected scoring by default when a new one is created. Allows to pass a variable from the outside\nto update the internal scoring value"
|
2806
2806
|
}
|
2807
2807
|
},
|
2808
|
+
"selectedLeftMenuOption": {
|
2809
|
+
"type": "string",
|
2810
|
+
"mutable": true,
|
2811
|
+
"complexType": {
|
2812
|
+
"original": "FormCreatorOptions",
|
2813
|
+
"resolved": "FormCreatorOptions.blocks | FormCreatorOptions.design | FormCreatorOptions.formula | FormCreatorOptions.logic | FormCreatorOptions.reportbuilder | FormCreatorOptions.scoring | FormCreatorOptions.translate | FormCreatorOptions.workflow",
|
2814
|
+
"references": {
|
2815
|
+
"FormCreatorOptions": {
|
2816
|
+
"location": "import",
|
2817
|
+
"path": "@shared/interfaces"
|
2818
|
+
}
|
2819
|
+
}
|
2820
|
+
},
|
2821
|
+
"required": false,
|
2822
|
+
"optional": false,
|
2823
|
+
"docs": {
|
2824
|
+
"tags": [],
|
2825
|
+
"text": "Holds the currently selected left menu option. There are 4 options: blocks, scoring, logic and translate"
|
2826
|
+
},
|
2827
|
+
"attribute": "selected-left-menu-option",
|
2828
|
+
"reflect": false,
|
2829
|
+
"defaultValue": "FormCreatorOptions.blocks"
|
2830
|
+
},
|
2808
2831
|
"translations": {
|
2809
2832
|
"type": "unknown",
|
2810
2833
|
"mutable": false,
|
@@ -2846,7 +2869,6 @@ export class YooFormCreatorComponent {
|
|
2846
2869
|
}
|
2847
2870
|
static get states() {
|
2848
2871
|
return {
|
2849
|
-
"selectedLeftMenuOption": {},
|
2850
2872
|
"selectedPageIndex": {},
|
2851
2873
|
"showConditions": {},
|
2852
2874
|
"showLeftMenuSelection": {},
|
@@ -429,7 +429,7 @@ svg:not(:root) {
|
|
429
429
|
--bottom-container-padding: 0;
|
430
430
|
}
|
431
431
|
:host yoo-navbar.hide-tags yoo-entity-search-tags {
|
432
|
-
margin: 0
|
432
|
+
margin: 0;
|
433
433
|
}
|
434
434
|
:host yoo-navbar.hide-tags.hide-filters {
|
435
435
|
--top-container-padding: 0.75rem var(--spacing-08, 0.5rem);
|
@@ -2209,9 +2209,8 @@ export class YooGridComponent {
|
|
2209
2209
|
})))), isWeb(this.host) && (h("div", { class: "nav-bar-entity-right", slot: "before-sort" }, h("slot", { name: "nav-bar-entity-right" }))), h("slot", { name: "search-buttons" })));
|
2210
2210
|
}
|
2211
2211
|
renderEntitySearchTags(renderSearchOrAutocomplete) {
|
2212
|
-
var _a;
|
2213
2212
|
const showAdvancedFilters = (!isWeb(this.host) && this.showSearch !== false) || (isWeb(this.host) && !!this.model) || this.forceTagFilters;
|
2214
|
-
return (
|
2213
|
+
return (h("yoo-entity-search-tags", { slot: this.hideTags || !this.tags || (this.tags && this.tags.length === 0) ? 'start' : renderSearchOrAutocomplete ? 'content' : '', expandedTags: this.gridIsExpanded, hideTags: this.hideTags || !this.tags || !this.tags.length, sortsAndFilters: this.sortsAndFilters, onFilterAdvanced: () => this.onShowFilterAdvanced(), tags: isWeb(this.host) && !this.gridIsExpanded ? [] : this.tags, values: this.selectedTags || [], hideAdvancedFilters: !showAdvancedFilters || this.isShowAdvancedFiltersDisplayedIntoSearch, onSelected: (ev) => this.onTagSelect(ev), disabled: this.isSelectAll }));
|
2215
2214
|
}
|
2216
2215
|
onTabSelected(ev) {
|
2217
2216
|
this.selectedTab = this.tabs[ev.detail.nextIndex];
|