goodteditor-ui 1.0.99 → 1.0.100
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/package.json
CHANGED
|
@@ -601,7 +601,7 @@ export default {
|
|
|
601
601
|
},
|
|
602
602
|
computed: {
|
|
603
603
|
/**
|
|
604
|
-
* @return {
|
|
604
|
+
* @return {boolean}
|
|
605
605
|
*/
|
|
606
606
|
isSelectedRemovable() {
|
|
607
607
|
return this.readonly === false && this.disabled === false;
|
|
@@ -654,11 +654,11 @@ export default {
|
|
|
654
654
|
* @return {OptionSettings}
|
|
655
655
|
*/
|
|
656
656
|
optionSettings() {
|
|
657
|
-
const { labelField,
|
|
657
|
+
const { labelField, valueField, disabledField, valueObjects, valueOfOptionChecker, option } = this;
|
|
658
658
|
return {
|
|
659
659
|
...OptionSettingsDefault,
|
|
660
660
|
labelField,
|
|
661
|
-
|
|
661
|
+
valueField,
|
|
662
662
|
disabledField,
|
|
663
663
|
valueObjects,
|
|
664
664
|
valueOfOptionChecker,
|