comand-component-library 4.0.26 → 4.0.27

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.0.26",
3
+ "version": "4.0.27",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
@@ -179,8 +179,7 @@
179
179
  <script>
180
180
  // import mixins
181
181
  import I18n from "../mixins/I18n"
182
- import DefaultMessagePropertiesFakeSelect from "../mixins/CmdFakeSelect/DefaultMessageProperties"
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
- DefaultMessagePropertiesFakeSelect,
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
  }