aloha-vue 1.2.153 → 1.2.154
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
|
@@ -644,10 +644,12 @@ export default {
|
|
|
644
644
|
})
|
|
645
645
|
]),
|
|
646
646
|
]),
|
|
647
|
-
this.
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
647
|
+
(!this.dataSort.length || this.hasNotElementsWithSearch) ?
|
|
648
|
+
h(ATranslation, {
|
|
649
|
+
class: "a_form__not_elements",
|
|
650
|
+
text: "_A_CHECKBOX_HAS_NOT_ELEMENTS_WITH_SEARCH_",
|
|
651
|
+
}) :
|
|
652
|
+
"",
|
|
651
653
|
]),
|
|
652
654
|
]),
|
|
653
655
|
]),
|
package/src/ui/ARadio/ARadio.js
CHANGED
|
@@ -652,10 +652,12 @@ export default {
|
|
|
652
652
|
})
|
|
653
653
|
]),
|
|
654
654
|
]),
|
|
655
|
-
this.
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
655
|
+
(!this.dataSort.length || this.hasNotElementsWithSearch) ?
|
|
656
|
+
h(ATranslation, {
|
|
657
|
+
class: "a_form__not_elements",
|
|
658
|
+
text: "_A_RADIO_HAS_NOT_ELEMENTS_WITH_SEARCH_",
|
|
659
|
+
}) :
|
|
660
|
+
"",
|
|
659
661
|
]),
|
|
660
662
|
]),
|
|
661
663
|
]),
|
|
@@ -875,10 +875,12 @@ export default {
|
|
|
875
875
|
})
|
|
876
876
|
]),
|
|
877
877
|
]),
|
|
878
|
-
this.
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
878
|
+
(!this.dataSort.length || this.hasNotElementsWithSearch) ?
|
|
879
|
+
h(ATranslation, {
|
|
880
|
+
class: "a_form__not_elements",
|
|
881
|
+
text: "_A_SELECT_HAS_NOT_ELEMENTS_WITH_SEARCH_",
|
|
882
|
+
}) :
|
|
883
|
+
"",
|
|
882
884
|
]),
|
|
883
885
|
]),
|
|
884
886
|
]),
|