comand-component-library 4.0.26 → 4.0.27
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
|
@@ -179,8 +179,7 @@
|
|
|
179
179
|
<script>
|
|
180
180
|
// import mixins
|
|
181
181
|
import I18n from "../mixins/I18n"
|
|
182
|
-
import
|
|
183
|
-
import DefaultMessagePropertiesFormElement from "../mixins/CmdFormElement/DefaultMessageProperties"
|
|
182
|
+
import DefaultMessageProperties from "../mixins/CmdFakeSelect/DefaultMessageProperties"
|
|
184
183
|
import FieldValidation from "../mixins/FieldValidation"
|
|
185
184
|
import Identifier from "../mixins/Identifier"
|
|
186
185
|
import Tooltip from "../mixins/Tooltip"
|
|
@@ -190,8 +189,7 @@ export default {
|
|
|
190
189
|
inheritAttrs: false,
|
|
191
190
|
mixins: [
|
|
192
191
|
I18n,
|
|
193
|
-
|
|
194
|
-
DefaultMessagePropertiesFormElement,
|
|
192
|
+
DefaultMessageProperties,
|
|
195
193
|
FieldValidation,
|
|
196
194
|
Identifier,
|
|
197
195
|
Tooltip
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import FormElementMessageProperties from "../CmdFormElement/DefaultMessageProperties.js"
|
|
1
2
|
export default {
|
|
2
3
|
data() {
|
|
3
4
|
return {
|
|
@@ -6,7 +7,8 @@ export default {
|
|
|
6
7
|
"cmdfakeselect.linktext.deselect_all_options": "Deselect all options",
|
|
7
8
|
"cmdfakeselect.linktext.select_all_options": "Select all options",
|
|
8
9
|
"cmdfakeselect.headline.an_option_is_selected": "An option is selected",
|
|
9
|
-
"cmdfakeselect.option.options_selected": "{0} options selected"
|
|
10
|
+
"cmdfakeselect.option.options_selected": "{0} options selected",
|
|
11
|
+
...FormElementMessageProperties.data().defaultMessageProperties
|
|
10
12
|
}
|
|
11
13
|
}
|
|
12
14
|
}
|