@yoobic/yobi 8.5.2 → 8.5.3
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/collection/components/form-creator/form-creator/form-creator.js +23 -1
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/esm/design-system.js +1 -1
- package/dist/esm/loader.js +1 -1
- 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
@@ -79,6 +79,10 @@ export declare class YooFormCreatorComponent {
|
|
79
79
|
* to update the internal scoring value
|
80
80
|
*/
|
81
81
|
selectedNewScoring: IScoring;
|
82
|
+
/**
|
83
|
+
* Holds the currently selected left menu option. There are 4 options: blocks, scoring, logic and translate
|
84
|
+
*/
|
85
|
+
selectedLeftMenuOption: FormCreatorOptions;
|
82
86
|
/**
|
83
87
|
* list of already translated keys
|
84
88
|
*/
|
@@ -317,10 +321,6 @@ export declare class YooFormCreatorComponent {
|
|
317
321
|
displayLanguageChanged: EventEmitter<string>;
|
318
322
|
resetOpenFormDefinitions: EventEmitter<void>;
|
319
323
|
openZenDesk: EventEmitter<void>;
|
320
|
-
/**
|
321
|
-
* Holds the currently selected left menu option. There are 4 options: blocks, scoring, logic and translate
|
322
|
-
*/
|
323
|
-
selectedLeftMenuOption: FormCreatorOptions;
|
324
324
|
/**
|
325
325
|
* Holds the index of the currently selected page (slide) of the form
|
326
326
|
*/
|
@@ -2415,6 +2415,10 @@ export namespace Components {
|
|
2415
2415
|
* the languages the form will be translated to
|
2416
2416
|
*/
|
2417
2417
|
"selectedLanguages": string[];
|
2418
|
+
/**
|
2419
|
+
* Holds the currently selected left menu option. There are 4 options: blocks, scoring, logic and translate
|
2420
|
+
*/
|
2421
|
+
"selectedLeftMenuOption": FormCreatorOptions;
|
2418
2422
|
/**
|
2419
2423
|
* Used to select a selected scoring by default when a new one is created. Allows to pass a variable from the outside to update the internal scoring value
|
2420
2424
|
*/
|
@@ -13509,6 +13513,10 @@ declare namespace LocalJSX {
|
|
13509
13513
|
* the languages the form will be translated to
|
13510
13514
|
*/
|
13511
13515
|
"selectedLanguages"?: string[];
|
13516
|
+
/**
|
13517
|
+
* Holds the currently selected left menu option. There are 4 options: blocks, scoring, logic and translate
|
13518
|
+
*/
|
13519
|
+
"selectedLeftMenuOption"?: FormCreatorOptions;
|
13512
13520
|
/**
|
13513
13521
|
* Used to select a selected scoring by default when a new one is created. Allows to pass a variable from the outside to update the internal scoring value
|
13514
13522
|
*/
|